Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (46)

  • 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

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • 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 (4358)

  • Ffmpeg http stream stops after a few seconds

    27 juin 2019, par pillarman38

    I have an http stream of an mkv file that I am trying to transcode to mp4 via ffmpeg. Here is the command I enter to start the stream ffmpeg -i "input.mkv" -f mpeg1video -vf "scale=640:480" -r 20 "http://localhost:port". The stream starts fine but it hangs for a while then it gives me this :

    av_interleaved_write_frame(): Unknown errorime=00:00:05.24 bitrate= 788.3kbits/s speed=10.5x
    Error writing trailer of http://192.168.1.19:4012: Error number -10054 occurred
    frame=  128 fps=1.1 q=12.1 Lsize=     646kB time=00:00:05.84 bitrate= 905.0kbits/s speed=0.0487x
    video:343kB audio:274kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 4.639489%
    [http @ 000001cb1fdac780] URL read error:  -10054
    Conversion failed!
  • How to make an exact (byte for byte) clone of mkv file using ffmpeg ?

    9 juillet 2019, par fat_flying_pigs

    My end goal is to swap two audio channels in an mkv file while changing nothing else. Swapping the audio channels in ffmpeg is quite easy and not part of this question. It was my thought process that being able to make a 1:1 copy of the file would be a good first step.

    Using a very simple example : ffmpeg -i sample.mkv -c copy out.mkv will result in an output file smaller than the original.

    With a drastically more complicated example, such as : ffmpeg -i sample.mkv -y -map 0:0 -map 0:1 -map 0:2 -map 0:3 -map 0:4 -vcodec copy -acodec copy -scodec copy out.mkv, it seems that :

    1. chapters are missing/dropped
    2. metadata is missing
    3. global metadata is added (possibly related to a lack of -map_metadata
  • 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
          })