Recherche avancée

Médias (91)

Autres articles (1)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (2834)

  • Packaging tool for creating DASH and HLS playlist for audio aac

    9 septembre 2021, par GooMee

    I have been using shacka packager for a while, sadly it does not support aac format. Does anyone know packaging tools that support audio formats ?

    


    Or maybe there is a way to create hls or dash in ffmpeg but keeping fragments in one file.

    


  • Crash while using ffmpeg4android using Galaxy s6 edge device

    21 juillet 2016, par Amira Elsayed Ismail

    I am using ffmpeg4android_lib to compress video in my android application, it is working in almost all testing devices but it does not work in Galaxy s6 edge and Galaxy s7 edge.

    my code as following :

    String inputFile = FileManager.getInstance().getRealPathFromVideoUri(context, video);
    Log.i("INPUT FILE PATH", inputFile);

    LoadJNI vk = new LoadJNI();
    try {
           String workFolder = context.getApplicationContext().getFilesDir().getAbsolutePath();
           String outputFile = FileManager.getInstance().getFileFullName(ForSaleConstants.VIDEO_FOLDER,
           String.format(ForSaleConstants.VIDEO_NAME_FILE_FORMAT,      ForSaleConstants.VIDEO_NAME_FILE_NAME_PREFIX, System.currentTimeMillis()));

           String complexCommand[] = {
               "ffmpeg", "-y"
               , "-i", inputFile
               , "-strict", "experimental"
               , "-s", "320x240"
               , "-r", "25"
               , "-aspect", "4:3"
               , "-ab", "48000"
               , "-ac", "2"
               , "-vcodec", "mpeg4"
               , "-movflags", "+faststart"
               , "-ar", "22050"
               , "-b", "2097k"
               , outputFile};
               vk.run(complexCommand, workFolder, context.getApplicationContext());
               Log.i("OUTPUT FILE PATH", outputFile);
               return outputFile;
       } catch (Throwable e) {
           ForSaleServerManager.getInstance().logAndroidError("Couldn't compress video file");
           return null;
       }

    The crash as following :

    nativeLibraryDirectories=[/data/app/com.forsale.forsale-1/lib/arm64, /data/app/com.forsale.forsale-1/base.apk!/lib/arm64-v8a, /vendor/lib64, /system/lib64]]] couldn't find "libloader-jni.so"
    at java.lang.Runtime.loadLibrary(Runtime.java:367)
    at java.lang.System.loadLibrary(System.java:1076)
    at com.netcompss.loader.LoadJNI.<clinit>(LoadJNI.java:13)
    </clinit>
  • How to convert raw video formats to mp4/mov with CLI based tool something like ffmpeg ?

    29 octobre 2022, par A_Mishra

    Want to convert raw video formats like braw, redcode and canon raw format into mp4/mov videos with command line tool such as ffmpeg. There are dedicated softwares for conversion like DaVinci Resolve for braw format, but I am looking for something to use as service and use it within my code thus looking for CLI based solution.

    &#xA;