Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (32)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

Sur d’autres sites (4768)

  • Revert "Revert "Merge commit ’d1d7678040cd60148f97b372cb4291bcc45b2e22’""

    4 août 2016, par Timothy Gu
    Revert "Revert "Merge commit ’d1d7678040cd60148f97b372cb4291bcc45b2e22’""
    

    This reverts commit e4af9be0f45c8f2ca148fb971f1e0c6782530e8c and redoes
    796027f22154c799e0063e2457b31e0cfd1dddae.

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/h264_slice.c
    • [DH] libavcodec/h264dec.c
    • [DH] libavcodec/h264dec.h
  • ffmpeg throwing "errorMessage" : "spawn ffmpeg ENOENT"

    25 avril 2016, par user2792129

    My ffmpeg function thats running as a shell command isnt working. I think its because ’ffmpeg’ isnt really referring to anything. I have the ffmpeg node module in my bundle, but i dont know the execFile command is referring to it here.

    Im following aws-lambda-ffmpeg as an example of how to call this particular function. They are referring to ’ffmpeg’ as a 64-bit linux build they created from John Vansickle’s static FFMPEG builds in their gulp function.

    I want to know how to replace ’ffmpeg’ with something that will just recognize it like a node_module without having to do the whole gulp static build process. To my understanding the only reason they are doing that is to get the latest build which i really dont need.

    If I am wrong and a static build using gulp is needed for another reason please let me know.

    function ffmpegProcess(description, cb) {
    console.log('Starting FFmpeg');

    child_process.execFile(
       'ffmpeg',
       [
           '-y',
           '-loglevel', 'warning',
           '-i', 'download',
           '-c:a', 'copy',
           '-vf', scaleFilter,
           '-movflags', '+faststart',
           '-metadata', 'description=' + description,
           'out.' + config.format.video.extension,
           '-vf', 'thumbnail',
           '-vf', scaleFilter,
           '-vframes', '1',
           'out.' + config.format.image.extension
       ],
       {
           cwd: tempDir
       },
       function(err, stdout, stderr) {
           console.log('FFmpeg done.');
           return cb(err, 'FFmpeg finished:' + JSON.stringify({ stdout: stdout, stderr: stderr}));
       }
    );
    }
  • ffmpeg throwing "errorMessage" : "spawn ffmpeg ENOENT"

    4 juin 2024, par ian

    My ffmpeg function thats running as a shell command isnt working. I think its because 'ffmpeg' isnt really referring to anything. I have the ffmpeg node module in my bundle, but i dont know the execFile command is referring to it here.

    &#xA;&#xA;

    Im following aws-lambda-ffmpeg as an example of how to call this particular function. They are referring to 'ffmpeg' as a 64-bit linux build they created from John Vansickle's static FFMPEG builds in their gulp function.

    &#xA;&#xA;

    I want to know how to replace 'ffmpeg' with something that will just recognize it like a node_module without having to do the whole gulp static build process. To my understanding the only reason they are doing that is to get the latest build which i really dont need.

    &#xA;&#xA;

    If I am wrong and a static build using gulp is needed for another reason please let me know.

    &#xA;&#xA;

    function ffmpegProcess(description, cb) {&#xA;console.log(&#x27;Starting FFmpeg&#x27;);&#xA;&#xA;child_process.execFile(&#xA;    &#x27;ffmpeg&#x27;,&#xA;    [&#xA;        &#x27;-y&#x27;,&#xA;        &#x27;-loglevel&#x27;, &#x27;warning&#x27;,&#xA;        &#x27;-i&#x27;, &#x27;download&#x27;,&#xA;        &#x27;-c:a&#x27;, &#x27;copy&#x27;,&#xA;        &#x27;-vf&#x27;, scaleFilter,&#xA;        &#x27;-movflags&#x27;, &#x27;&#x2B;faststart&#x27;,&#xA;        &#x27;-metadata&#x27;, &#x27;description=&#x27; &#x2B; description,&#xA;        &#x27;out.&#x27; &#x2B; config.format.video.extension,&#xA;        &#x27;-vf&#x27;, &#x27;thumbnail&#x27;,&#xA;        &#x27;-vf&#x27;, scaleFilter,&#xA;        &#x27;-vframes&#x27;, &#x27;1&#x27;,&#xA;        &#x27;out.&#x27; &#x2B; config.format.image.extension&#xA;    ],&#xA;    {&#xA;        cwd: tempDir&#xA;    },&#xA;    function(err, stdout, stderr) {&#xA;        console.log(&#x27;FFmpeg done.&#x27;);&#xA;        return cb(err, &#x27;FFmpeg finished:&#x27; &#x2B; JSON.stringify({ stdout: stdout, stderr: stderr}));&#xA;    }&#xA;);&#xA;}&#xA;

    &#xA;