Recherche avancée

Médias (91)

Autres articles (40)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (4726)

  • lavf/dump.c : Print mastering display metadata

    1er mars 2016, par Neil Birkbeck
    lavf/dump.c : Print mastering display metadata
    

    Signed-off-by : Neil Birkbeck <neil.birkbeck@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/dump.c
  • ERROR : "Cannot Find FFMPEG" on Google Cloud Compute Engine Debian Wheezy 7.8 Managed Instance even though it's installed

    17 mai 2021, par DynamoBooster

    I wrote a Node.JS application that uses the fluent-ffmpeg module to watermark videos uploaded on the platform. I pushed the code to a my Google Cloud Compute Engine project, and every time I get Error : Cannot Find FFMPEG. I ssh'd into the instance once it was created and ran these commands to install FFMPEG before actually testing out the code. I am not sure what is causing the error because after this I am positive that FFMPEG is installed.

    &#xA;&#xA;

    sudo apt-get update&#xA;sudo apt-get install -y ffmpeg&#xA;export FFMPEG_PATH="/usr/bin/ffmpeg"&#xA;export FFPROBE_PATH="/usr/bin/ffprobe"&#xA;

    &#xA;&#xA;

    Below is my FFMPEG code

    &#xA;&#xA;

    function generate_thumbnail(name, path){&#xA;  logging.info("Generating Thumbnail");&#xA;  ffmpeg(path)&#xA;   .setFfmpegPath(&#x27;/usr/bin/ffmpeg&#x27;) &#xA;   .setFfprobePath(&#x27;/usr/bin/ffprobe&#x27;)&#xA;   .on(&#x27;end&#x27;, function() {&#xA;        upload_thumbnail(name);&#xA;        logging.info("Thumbnail Generated and uploaded");&#xA;        return;&#xA;    })&#xA;  .on(&#x27;error&#x27;, function(err, stdout, stderr) {&#xA;        logging.info(&#x27;ERROR: &#x27; &#x2B; err.message);&#xA;        logging.info(&#x27;STDERR:&#x27; &#x2B; stderr);&#xA;  })&#xA;  .on(&#x27;start&#x27;, function(commandLine) {&#xA;       logging.info(commandLine);&#xA;  })&#xA;  .screenshots({&#xA;    count: 1,&#xA;    filename: name &#x2B; &#x27;_thumbnail.png&#x27;,&#xA;    folder: &#x27;public/images/thumbnails/&#x27;&#xA;  });&#xA;}&#xA;

    &#xA;

  • ERROR : "Cannot Find FFMPEG" on Google Cloud Compute Engine Debian Wheezy 7.8 Managed Instance even though it's installed

    4 octobre 2015, par DynamoBooster

    I wrote a Node.JS application that uses the fluent-ffmpeg module to watermark videos uploaded on the platform. I pushed the code to a my Google Cloud Compute Engine project, and every time I get Error : Cannot Find FFMPEG. I ssh’d into the instance once it was created and ran these commands to install FFMPEG before actually testing out the code. I am not sure what is causing the error because after this I am positive that FFMPEG is installed.

    sudo apt-get update
    sudo apt-get install -y ffmpeg
    export FFMPEG_PATH="/usr/bin/ffmpeg"
    export FFPROBE_PATH="/usr/bin/ffprobe"

    Below is my FFMPEG code

    function generate_thumbnail(name, path){
     logging.info("Generating Thumbnail");
     ffmpeg(path)
      .setFfmpegPath('/usr/bin/ffmpeg')
      .setFfprobePath('/usr/bin/ffprobe')
      .on('end', function() {
           upload_thumbnail(name);
           logging.info("Thumbnail Generated and uploaded");
           return;
       })
     .on('error', function(err, stdout, stderr) {
           logging.info('ERROR: ' + err.message);
           logging.info('STDERR:' + stderr);
     })
     .on('start', function(commandLine) {
          logging.info(commandLine);
     })
     .screenshots({
       count: 1,
       filename: name + '_thumbnail.png',
       folder: 'public/images/thumbnails/'
     });
    }