Recherche avancée

Médias (91)

Autres articles (67)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (6046)

  • 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.

  • FFMpeg is not working to generate thumbnail but it converts mp4 to mp3

    30 novembre 2019, par user3090994

    I have installed ffmpeg and path is correct, because when i go to convert mp4 video to mp3, it works. here is its code.

    shell_exec('/home/pakunit/ffmpeg/ffmpeg -i newfile.mp4 output4.mp3');

    even this code is also works for cut a video from mp4 to mp4 using this code

    shell_exec("/home/pakunit/ffmpeg/ffmpeg -i newfile.mp4 -ss 00:00:00 -t 00:00:10 -async 1 -c copy cut.mp4");

    and when I use mostly other commands, no command works, Like i want to create video thumbnail and i am using this code.

    shell_exec("/home/pakunit/ffmpeg/ffmpeg -i newfile.mp4 -an -ss 5 -s 120x90 thumbnail.jpg")

    but its not working. also i tried many codes and command for creating thumbnail, but not working any of them. even i used the exact same command that is on ffmpeg.org original website

    shell_exec("/home/pakunit/ffmpeg/ffmpeg -i newfile.mp4 -vf thumbnail,scale=300:200 -frames:v 1 out.png");

    Is any extension missed in hosting ? or any special extension or module we need to enable from hosting ? there is also ffmpeg enabled in PHP extension, but not showing in phpinfo() ; Please help. thanks