Recherche avancée

Médias (91)

Autres articles (8)

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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

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

Sur d’autres sites (508)

  • IOException:Can't run program /app/.javacpp/cache/ffmpeg-5.0-1.5.7-linux-x86_64.jar/org/bytedeco/ffmpeg/linux-x86_64/ffmpeg, No such file/directory

    20 juin 2022, par Prabhakar Ojha

    I have updated the docker image to alpine/openjdk17 from centos7/openjdk8. Since then the application has been throwing up different errors which somehow I was able to resolve but I got stuck with one error described here and desperately looking for any help. Ironically everything is working perfectly fine in the local IDE, it just fails in the actual Openshift environment.

    


    So basically, I have changed the openjdk17 image URL in the docker file, taken a Jenkins build, and deployed it to the Openshift. The pod is getting created successfully but at the time of application start up getting the below error.

    


    Caused by: java.io.IOException: Cannot run program "/app/.javacpp/cache/ffmpeg-5.0-1.5.7-linux-x86_64.jar/org/bytedeco/ffmpeg/linux-x86_64/ffmpeg": error=2, No such file or directory&#xA;    at java.base/java.lang.ProcessBuilder.start(ProcessBuilder.java:1143)&#xA;    at java.base/java.lang.ProcessBuilder.start(ProcessBuilder.java:1073)&#xA;    at net.bramp.ffmpeg.RunProcessFunction.run(RunProcessFunction.java:39)&#xA;    at net.bramp.ffmpeg.FFcommon.version(FFcommon.java:66)&#xA;    at net.bramp.ffmpeg.FFmpeg.version(FFmpeg.java:31)&#xA;    at net.bramp.ffmpeg.FFmpeg.<init>(FFmpeg.java:90)&#xA;    at net.bramp.ffmpeg.FFmpeg.<init>(FFmpeg.java:85)&#xA;Caused by: java.io.IOException: error=2, No such file or directory&#xA;    at java.base/java.lang.ProcessImpl.forkAndExec(Native Method)&#xA;    at java.base/java.lang.ProcessImpl.<init>(ProcessImpl.java:314)&#xA;    at java.base/java.lang.ProcessImpl.start(ProcessImpl.java:244)&#xA;    at java.base/java.lang.ProcessBuilder.start(ProcessBuilder.java:1110)&#xA;    ... 82 common frames omitted&#xA;</init></init></init>

    &#xA;

    I have the functionality to deal with audio/video files and from the logs, I could see that it is failing while loading and creating ffmpeg class.

    &#xA;

    Below is the list of ffmpeg related dependencies I am passing through the pom.xml file.

    &#xA;

    pom.xml&#xA;&#xA;<dependency>&#xA;        <groupid>net.bramp.ffmpeg</groupid>&#xA;        <artifactid>ffmpeg</artifactid>&#xA;        <version>0.6.2</version>&#xA;</dependency>&#xA;&#xA;<dependency>&#xA;    <groupid>org.bytedeco</groupid>&#xA;    <artifactid>ffmpeg</artifactid>&#xA;    <version>5.0-1.5.7</version>&#xA;</dependency>&#xA;&#xA;<dependency>&#xA;    <groupid>org.bytedeco</groupid>&#xA;    <artifactid>javacpp</artifactid>&#xA;    <version>1.5.7</version>&#xA;</dependency>&#xA;&#xA;<dependency>&#xA;    <groupid>org.bytedeco</groupid>&#xA;    <artifactid>ffmpeg</artifactid>&#xA;    <version>5.0-1.5.7</version>&#xA;    <classifier>linux-x86</classifier>&#xA;</dependency>&#xA;&#xA;<dependency>&#xA;    <groupid>org.bytedeco</groupid>&#xA;    <artifactid>ffmpeg</artifactid>&#xA;    <version>5.0-1.5.7</version>&#xA;    <classifier>windows-x86_64</classifier>&#xA;</dependency>&#xA;&#xA;<dependency>&#xA;    <groupid>org.bytedeco</groupid>&#xA;    <artifactid>ffmpeg-platform</artifactid>&#xA;    <version>5.0-1.5.7</version>&#xA;</dependency>&#xA;

    &#xA;

    Any help will be greatly appreciated.

    &#xA;

  • doc/ffmpeg,ffmpeg-formats : avoid to mention ffmpeg options from formats.texi

    19 mars 2013, par Stefano Sabatini

    doc/ffmpeg,ffmpeg-formats : avoid to mention ffmpeg options from formats.texi

  • Which release of ffmpeg is used in the book "Understanding FFmpeg with source code : FFMPEG Fundamentals" ?

    28 septembre 2021, par user3344036

    Just bought the book "Understanding FFmpeg with source code : FFMPEG Fundamentals" from Amazon. I have downloaded ffmpeg release 4.4, but the code has been different from that in the book. Just wondering which release the author was using, can anyone help ?

    &#xA;