Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (11)

  • MediaSPIP Init et Diogène : types de publications de MediaSPIP

    11 novembre 2010, par

    À l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
    Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
    Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

Sur d’autres sites (515)

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