Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (108)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (12179)

  • avformat/dashdec : Check whitelist

    15 janvier, par Michael Niedermayer
    avformat/dashdec : Check whitelist
    

    Fixes : CVE-2023-6602, V. DASH Playlist SSRF

    Found-by : Harvey Phillips of Amazon Element55 (element55)
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/dashdec.c
  • node-fluent-ffmpeg Multiple images to video

    16 août 2015, par tsurantino

    I am trying to stitch multiple .PNG images to a single .MP4 video using Node. I am using ffmpeg and specifically, the node-fluent-ffmpeg library.

    I can only get one frame to show up at a time, when I instead intend to show 100+.

    var video = ffmpeg();

     for (var i = 1; i &lt;= 168; i++) {
       //console.log('Adding: ' + path.join(__dirname, 'public', 'tmp', 'frame-' + i.toString() + '.png'));
       video.input(path.join(__dirname, 'public', 'tmp', 'frame-' + i.toString() + '.png')).loop(1);
     }

     video.save(path.join(__dirname, 'public', 'videos', 'test.mp4'))
     .on('end', function() {
       console.log('file has been converted succesfully');
       res.redirect('/');
     })
     .on('error', function(err) {
       console.log('an error happened: ' + err.message);
     })
  • From multiple video files to single output

    25 juillet 2019, par Cordo van Saviour

    Let’s say that I have a list of hundreds of possible video files. Using ffmpeg it’s pretty easy to take multiple files and stitch them together to single video output, but that’s where the things become tricky.

    I’m looking for a way to have them stream live and dynamically add videos to queue as stream goes on. Think of something like SSAI but for the whole video.

    Stream live is there so we don’t have a delay while waiting for ffmpeg to finish the whole video but rather start as soon as possible, and also so we could choose next files in queue during the live stream.

    Simplified, it would look something like this :

    [v] [v] [v] [v] - stored video files, eg. on S3

         [v] - chosen file

         | |
         | | - during the live stream
         | |
         \ /
          V    
      _________             ___________              ___________
      \       /             |         |              ||       ||
       \     /    =====>    |         |    =====>    ||  |:>  ||
        \___/               |_________|              ||_______||
     Video queue              FFMPEG?                Live stream
                         Transcoding module?
                               Magic?

    I’m writing this in Node.js if that makes any difference.

    Is this even possible ? If you need any more information please ask away, and every suggestion is greatly appreciated !