Recherche avancée

Médias (91)

Autres articles (79)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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

Sur d’autres sites (17205)

  • 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)
       }
    }
  • 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 ?

  • 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.