Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (26)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

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

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

Sur d’autres sites (6951)

  • ffmpeg missing image frames in generated video from images

    4 août 2013, par sihrc

    Similar question here, but not yet answered.

    Problem :

    I'm combining images (.png) of same resolution/size (they all came from the same matplotlib.pyplot), but the resulting video is missing several frames.

    Command :

    ffmpeg -f image2 -r 1 -i .\\images\\image%02d.png -c:v libx264 -r 30 .\\images\\output.mp4

    Resulting Video

    • Length of 0:09
    • Missing more than half the images

    Images

    • .\images
      • image00.png
      • image01.png
      • image02.png
      • image03.png
      • image04.png
      • image05.png
      • image06.png
      • image07.png
      • . . .

    Notes :

    I followed examples from here. I'm new to using ffmpeg, so I may not be completely sure of what each of the command line options I've used means, though I have a pretty good idea.

    Thanks, any help/advice/suggestions will be greatly appreciated. I am also perfectly willing to provide further information that may help resolve this issue.

  • ffmpeg missing image frames in generated video from images

    12 janvier 2018, par sihrc

    Similar question here, but not yet answered.

    Problem :

    I’m combining images (.png) of same resolution/size (they all came from the same matplotlib.pyplot), but the resulting video is missing several frames.

    Command :

    ffmpeg -f image2 -r 1 -i .\\images\\image%02d.png -c:v libx264 -r 30 .\\images\\output.mp4

    Resulting Video

    • Length of 0:09
    • Missing more than half the images

    Images

    • .\images
      • image00.png
      • image01.png
      • image02.png
      • image03.png
      • image04.png
      • image05.png
      • image06.png
      • image07.png
      • . . .

    Notes :

    I followed examples from here. I’m new to using ffmpeg, so I may not be completely sure of what each of the command line options I’ve used means, though I have a pretty good idea.

    Thanks, any help/advice/suggestions will be greatly appreciated. I am also perfectly willing to provide further information that may help resolve this issue.

  • fs.readFile is failed to read thumbnail generated file using ffmpeg in nodejs

    5 avril 2019, par Schüler

    I am using ffmpeg to extract the screenshot from the video it is working as expected but that file is unable to read/buffer using fs.read, later I will have to upload the image to the s3 bucket, So who can I make the file readable ?

    var thumPath =  path.join(global.__base, 'Temp/');
       ffmpeg(req.file.path).screenshots({
               count: 1,
               filename: req.file.filename + 'thumbnail-at-%s-seconds.png',
               folder: thumPath,
               size: '320x240'
           });

          fs.readFile(thumPath + req.file.filename + 'thumbnail-at-%s-seconds.png', function(err, thumb) {
             console.log(thumb)
    //s3 bucket feature will come
          })