Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (93)

Sur d’autres sites (16719)

  • ffmpeg : disable threading on mingw, it doesnt work due to dependance on internal...

    11 juin 2012, par Michael Niedermayer

    ffmpeg : disable threading on mingw, it doesnt work due to dependance on internal...

  • FFProbe doesn't work

    24 février 2018, par Royal.O

    Argument /storage/emulated/0/Watermark/test.flv provided as input filename, but ffprobe was already specified.
    compile 'nl.bravobit:android-ffmpeg:1.1.1

              String [] command = {"ffprobe", videoPath };
              FFprobe ffprobe = FFprobe.getInstance(this);

               try {
               ffprobe.execute(command, new ExecuteBinaryResponseHandler() {

                   @Override
                   public void onSuccess(String message) {
                       addTextViewToLayout("SUCCESS with output : "+ message);
                       Logger.print("onSuccess : "+message);

                   }
                   @Override
                   public void onProgress(String message) {
                       addTextViewToLayout("Started command : ffmpeg "+command);
                       addTextViewToLayout("progress : "+message);
                       Logger.print("Started command : ffmpeg "+command.toString());
                       Logger.print("progress : "+message);
                   }

                   @Override
                   public void onFailure(String message) {
                       Logger.print("FAILED with output : "+message);
                   }

                   @Override
                   public void onStart() {
                       Logger.print("onStart");
                   }

                   @Override
                   public void onFinish() {
                       Logger.print("onFinish");
                   }

               });
           } catch (FFprobeCommandAlreadyRunningException e) {
               e.printStackTrace();
           }


       }

    ffprobe works good in Windows, Mac, Ubuntu but doesn’t work in Android.

    If anybody experienced please share me your experience.

  • lavd/lavfi : work with non-mappable files for graph_file option

    23 juillet 2014, par Andrey Utkin
    lavd/lavfi : work with non-mappable files for graph_file option
    

    Example of non-mappable file is /dev/stdin. Previously passing it as
    graph_file value returned error.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavdevice/lavfi.c