Recherche avancée

Médias (91)

Autres articles (11)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (3337)

  • UPD Stream Receiver Container not receiving Sender's stream with ffmpeg in Docker

    9 octobre 2022, par James

    I have 2 containers bridged on the same network in Docker : One is acting as an UPD video streamer (sender) and the other one is acting as a the stream Receiver. The Stream is a m3u8.

    


    I manage to start the Sender to stream the m3u8 with ffmpeg, but when I run the ffmpeg command in the Receiver's terminal, it just starts the ffmpeg and it gets stuck. It won't receive the .ts file.

    


    Receiver's terminal Screenshot

    


    Any help would be appreciated.

    


  • converting png to movies with R via ffmpeg

    10 mai 2021, par user237554

    I want to convert a series of *.png files to a movie with R and have installed ffmpeg in the root directory. I think the installation has been successful because if I type

    


         ffmpeg -version


    


    in terminal I get all of the version information etc., etc.

    


    I have my *.png files saved in the wd and in R I say

    


        imgs <- list.files(pattern="*.png")
        saveVideo({
        for(img in imgs){
          im <- magick::image_read(img)
          plot(as.raster(im))
        }
      })


    


    I get an error message that "the command ""ffmpeg"" is not available in your system. Please install FFmpeg". Is there something I need to do to get R and ffmpeg to talk to each other ? Again, from terminal, ffmpeg is in the directory and it looks like it installed.

    


    thanks

    


  • Get thumbnail image from video not working with PHP and ffmpeg (Ubuntu)

    20 décembre 2018, par a_pajic

    I have generated a $cmd string :

    ffmpeg -i /home/alen/www/mysite/video/Guitarist-139.mp4 -an -ss 0 -s
    1280x720 /home/alen/www/mysite/img/Guitarist-139.jpg

    then I have typing a command in PHP :

    shell_exec($cmd);

    but not working,

    then I have pasted this string in terminal but in terminal work perfectly.

    What is wrong.