Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (99)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (9207)

  • avformat/udp : cancel pending IO on win32 manually

    26 janvier 2020, par Marton Balint
    avformat/udp : cancel pending IO on win32 manually
    

    recvfrom() is not a cancellation point in pthreads-win32, see
    https://sourceware.org/pthreads-win32/manual/pthread_cancel.html

    In order to be able to cancel the reader thread on Win32 properly we first
    shutdown the socket then call CancelIoEx to abort pending IO. Subsequent
    recvfrom() calls will fail with WSAESHUTDOWN causing the thread to exit.

    Fixes ticket #5717.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/udp.c
  • How do you use Node.js to stream S3 audio with ffmpeg without downloading the file first ?

    15 novembre 2015, par LaserJesus

    I’m able to successfully stream an audio file stored on a Node.js server using fluent-ffmpeg. When I alter the code to pass an open file reader to an s3 file instead, it no longer works. What do I need to change to make this work ?

    .get(function(req,res) {
       aws.s3(s3Bucket).getFile(s3Path, function (err, result) {
           if (err) {
               return next(err);
           }
           var proc = new ffmpeg(result)
               .withAudioCodec('libmp3lame')
               .format('mp3')
               .on('error', function (err, stdout, stderr) {
                   console.log('an error happened: ' + err.message);
                   console.log('ffmpeg stdout: ' + stdout);
                   console.log('ffmpeg stderr: ' + stderr);
               })
               .on('end', function () {
                   console.log('Processing finished !');
               })
               .on('progress', function (progress) {
                   console.log('Processing: ' + progress.percent + '% done');
               })
               .pipe(res, {end: true});
       });
    });
  • FFMPEG YUV444 to YUV420 [duplicate]

    9 août 2020, par Juan Felipe

    Soo I need to use a video reader which onl accepts yuv420.&#xA;I have videos which are yuv444 and have very weird resolutions (they come from an algorith and they are videos manually created stacking frames)

    &#xA;

    Soo I tried the following

    &#xA;

    ffmpeg -i CJMOPvsinJE.mp4 -pix_fmt yuv420p yuv420.mp4&#xA;

    &#xA;

    But it seems that resolution have to be even.

    &#xA;

    [libx264 @ 0x556e02626660] width not divisible by 2 (241x1080)&#xA;Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height&#xA;

    &#xA;

    Sooo I solved it by cropping.

    &#xA;

    ffmpeg -i CJMOPvsinJE.mp4 -filter:v "crop=240:1080:1:0" -pix_fmt yuv420p yuv420.mp4&#xA;

    &#xA;

    Buuut The fact is that I need to perform this operation for a bunch of videos.

    &#xA;

    Is there a way to tell ffmpeg to crop to the nearest even resolution ? Namely, if resolution is odd just to remove 1 row/column.

    &#xA;