Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (22)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • 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 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 (5330)

  • FATAL EXCEPTION in Flutter with Ffmpeg

    10 avril 2022, par Keyur Tailor

    Getting this error while executing command using flutter_ffmpeg package

    


    Command i am using to concate two video files

    


    Running FFmpeg with arguments : [-r, 25, -f, -s, 1920x1080, -i, /data/user/0/com.example.dualites/cache/file_picker/VID-20220410-WA0002.mp4, /data/user/0/com.example.dualites/cache/file_picker/VID-20220409-WA0007.mp4, -vcodec, libx264, -crf, 25, -pix_fmt, yuv420p, /data/user/0/com.example.dualites/app_flutter/output.mp4]

    


    Error :

    


    I/mobile-ffmpeg(25131) : Loading mobile-ffmpeg.
E/AndroidRuntime(25131) : FATAL EXCEPTION : AsyncTask #1
E/AndroidRuntime(25131) : Process : com.example.dualites, PID : 25131
E/AndroidRuntime(25131) : java.lang.RuntimeException : An error occurred while executing doInBackground()
E/AndroidRuntime(25131) : at android.os.AsyncTask$4.done(AsyncTask.java:415)
E/AndroidRuntime(25131) : at java.util.concurrent.FutureTask.finishCompletion(FutureTask.java:383)
E/AndroidRuntime(25131) : at java.util.concurrent.FutureTask.setException(FutureTask.java:252)
E/AndroidRuntime(25131) : at java.util.concurrent.FutureTask.run(FutureTask.java:271)
E/AndroidRuntime(25131) : at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
E/AndroidRuntime(25131) : at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
E/AndroidRuntime(25131) : at java.lang.Thread.run(Thread.java:923)
E/AndroidRuntime(25131) : Caused by : java.lang.UnsatisfiedLinkError : dlopen failed : cannot locate symbol "av_default_item_name" referenced by "/data/app/ fbhkKzNZMT8l82CisXfxrA==/com.example.dualites-UrjU03DG36KYD_QyGsH3mg==/base.apk !/lib/arm64-v8a/libmobileffmpeg.so"...
E/AndroidRuntime(25131) : at java.lang.Runtime.loadLibrary0(Runtime.java:1087)
E/AndroidRuntime(25131) : at java.lang.Runtime.loadLibrary0(Runtime.java:1008)
E/AndroidRuntime(25131) : at java.lang.System.loadLibrary(System.java:1664)
E/AndroidRuntime(25131) : at com.arthenica.mobileffmpeg.Config.(Config.java:133)
E/AndroidRuntime(25131) : at com.arthenica.mobileffmpeg.Config.ffmpegExecute(Config.java:623)
E/AndroidRuntime(25131) : at com.arthenica.mobileffmpeg.FFmpeg.execute(FFmpeg.java:68)
E/AndroidRuntime(25131) : at com.arthenica.flutter.ffmpeg.FlutterFFmpegExecuteFFmpegAsyncArgumentsTask.doInBackground(FlutterFFmpegExecuteFFmpegAsyncArgumentsTask.java:56)
E/AndroidRuntime(25131) : at com.arthenica.flutter.ffmpeg.FlutterFFmpegExecuteFFmpegAsyncArgumentsTask.doInBackground(FlutterFFmpegExecuteFFmpegAsyncArgumentsTask.java:38)

    


  • How to merge two videos in android

    4 juillet 2016, par Lukas

    I’m new to android, but not new to mobile development.

    My goal is to record two videos, and the mix it into one video using audio from both tracks. E.g two recorded videos are both 10 seconds. I want to take the first 5 seconds from the first video, and the last 5 seconds from the second video, combine them together with combined audio from both videos, and have it in an mp4 file.

    On iOS there is an AVFoundation framework, which lets you combine multiple videos and audio into one video file (h.264 codec in mp4 container). I want to achieve similar results on android, but fail miserably at finding frameworks or 3rd party libs for doing that. If anyone could help me by showing some links or any directions where to look for information it would be really helpful. Thanks in advance !

  • merge two videos android

    4 juillet 2016, par Lukas

    I’m new to android, but not new to developing for mobile.

    My goal is to record two videos, and the mix it into one video using audio from both tracks. E.g two recorded videos are both 10 seconds. I want to take the first 5 seconds from the first video, and the last 5 seconds from the second video, combine them together with combined audio from both videos, and have it in an mp4 file.

    On iOS there is an AVFoundation framework, which lets you combine multiple videos and audio into one video file (h.264 codec in mp4 container). I want to achieve similar results on android, but fail miserably at finding frameworks or 3rd party libs for doing that. If anyone could help me by showing some links or any directions where to look for information it would be really helpful. Thanks in advance !