Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (111)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (10005)

  • Android video unplayable at iOS

    21 février 2017, par Atif Imran

    I’ve found that videos with codec H.264, MPEG-4 HE AAC V2 have no problem with my code here. But when I use a video of codec H.264, AAC (Sent from Android device) the videos are again black. Now my question is how do I convert a video to iOS playable codec.

  • Reformat an output in Bash

    5 février 2017, par Kenneth

    I’m using this ffmpeg argument to get the black frame in a file :

    ffmpeg -i ${arrayDesFichiers[$i]} -vf "blackdetect=d=3:pix_th=0.00" -an -f null - 2>&1 | grep black_duration >> log.txt

    Now I’m getting this in my log.txt :

    [blackdetect @ 0x7fd9add06bc0] black_start:0 black_end:3.2 black_duration:3.2

    And I would like to reformat it to something like this :

    black duration : 3.2 seconds

    I’m pretty sure it’s possible in Bash but how ?

  • how to make videothumbnail from the middle of the video ?

    28 décembre 2019, par Shahrzad Nazemi

    I am using ffmpeg as my module in Node js app for making video thumbnails.the thing is , it makes it from the beginning of the Video. and some of them begins with a black frame so the thumbnail will be a black picture.I want to know how should I make it from the middle of the video so that they wont be black anymore.
    here is what I did :

    module.exports.createVideoThumbnail = function (path, destination, fileName, cb)
    {
       try
       {
           var process = new ffmpeg(path);
           process.then(function (video) {
               video.fnExtractFrameToJPG(destination, {
                   frame_rate: 1,
                   number: 1,
                   start_time: 20,
                   duration_time: 1,
                   file_name: `${fileName}`
               }, function (error, files) {
                   if (!error)
                   {
                       console.log('Frames: ');
                       cb(1)
                   }
                   else
                   { console.log(error); cb(-1); }
               });

           }, function (err) {
               console.log('Error: ' + err);
               cb(-1)
           });
       }
       catch (e)
       {
           console.log(e.code);
           console.log(e.msg);
           cb(-1)
       }
    }