Recherche avancée

Médias (0)

Mot : - Tags -/organisation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (53)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

Sur d’autres sites (10685)

  • Need encoding from images to video on Android

    12 septembre 2016, par a2ronus

    We need an Android app that can encode a folder of images to a video. I have been looking for solutions a while now, but cannot find anything good. The Android API does not support it. We are trying ffmpeg, but cannot get it to work. We need a working solution, using ffmpeg is not mandatory. A full Android Java solution is also a possibility, since this would work on all Android devices, possibly at the cost of some performance.

    The app also needs to be able to add an audio track to the movie if the user chooses to do this.

    Any help would be appreciated.

    Kind regards,

    Aäron

  • Android NDK : Aborting stop ?

    19 mai 2022, par Sandeep Tiwari

    I am working on ffmpeg for android. I have successfully compile ffmpeg-2.0.1 
 after that I make Android.mk file in my NDK's sources/ffmpeg-2.0.1/android/arm as

    



          LOCAL_PATH:= $(call my-dir)

      include $(CLEAR_VARS)

      LOCAL_MODULE:= libavcodec

      LOCAL_SRC_FILES:= lib/libavcodec-55.so

       LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/include

      include $(PREBUILT_SHARED_LIBRARY)


    



    After that make android project and in android project Android.mk file is as

    



      LOCAL_PATH := $(call my-dir)

    include $(CLEAR_VARS)

   LOCAL_MODULE    := tutorial01
   LOCAL_SRC_FILES := tutorial01.c
   LOCAL_LDLIBS := -llog -ljnigraphics -lz 
   LOCAL_SHARED_LIBRARIES := libavformat libavcodec libswscale libavutil

   include $(BUILD_SHARED_LIBRARY)
    $(call import-module,ffmpeg-2.0.1/android/arm)


    



    but showing a problem

    



     *** Android NDK: Aborting    .  Stop.
   android-ffmpeg-tutorial01line 45, external location: 
   /home/tech/Documents/roman10/ndk/android-ndk-r9c/build/core/prebuilt-library.mk
   C/C++ Problem


    



    My NDK is android-ndk-r9c,system is ubuntu-13.04,please anyone guide me.

    



    thanks in advance.

    


  • Android NDK : Aborting stop ?

    30 juillet 2014, par Sandeep Tiwari

    I am working on ffmpeg for android. I have successfully compile ffmpeg-2.0.1
    after that I make Android.mk file in my NDK’s sources/ffmpeg-2.0.1/android/arm as

         LOCAL_PATH:= $(call my-dir)

         include $(CLEAR_VARS)

         LOCAL_MODULE:= libavcodec

         LOCAL_SRC_FILES:= lib/libavcodec-55.so

          LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/include

         include $(PREBUILT_SHARED_LIBRARY)

    After that make android project and in android project Android.mk file is as

     LOCAL_PATH := $(call my-dir)

       include $(CLEAR_VARS)

      LOCAL_MODULE    := tutorial01
      LOCAL_SRC_FILES := tutorial01.c
      LOCAL_LDLIBS := -llog -ljnigraphics -lz
      LOCAL_SHARED_LIBRARIES := libavformat libavcodec libswscale libavutil

      include $(BUILD_SHARED_LIBRARY)
       $(call import-module,ffmpeg-2.0.1/android/arm)

    but showing a problem

    *** Android NDK: Aborting    .  Stop.
      android-ffmpeg-tutorial01line 45, external location:
      /home/tech/Documents/roman10/ndk/android-ndk-r9c/build/core/prebuilt-library.mk
      C/C++ Problem

    My NDK is android-ndk-r9c,system is ubuntu-13.04,please anyone guide me.

    thanks in advance.