Recherche avancée

Médias (91)

Autres articles (105)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (7619)

  • C# Using ffmpeg with binary data

    27 juillet 2015, par user3763117

    I have the need to make several posters from a movie, however I bounched in several problems.

    I have been searching yesterday whole day how this works and what might be the best solution to do this in my C# project, currently as this far.

    AForge.Video.FFMPEG.VideoFileWriter writer = new VideoFileWriter();
    writer.Open("en.code-bude_test_video.avi", width, height, 25, VideoCodec.MPEG4, 1000000);

    Following the documentation this should work with a local avi file, however I have my movie in binary and have no understanding how to use this stream to let the ffmpeg writer read this

    data is contained like this :

    Byte[] bytes = Convert.IsDBNull(s[col]) ? null : (Byte[])s[col];

    Anybody idea how to do this ?

  • converting images to mp4

    16 janvier 2024, par theotheraussie

    I am trying to convert a set of images into a movie using ffmpeg. I have a list of files (only 20) in a seperate folder named for image####.png, I tried this command to convert them all to a movie :

    


    ffmpeg -y -framerate 1 -i .\folder\*.png -vf -c:v libx264 -r 30 -pix_fmt yuv420p video.mp4

    


    and i get this error
Could find no file with path '.\folder\*.png' and index in the range 0-4

    


    I found some suggestings to use -start_number and renaming the files to '0000.png' in sequence. I have tried both, but i am still getting the same error message. Even running the command from within the folder, still gets the same error.

    


    Can anyone help resolve this ?

    


  • Applying multiple filters at once with FFMPEG

    9 mars 2017, par Parziphal

    I have the need to apply fadein and overlay filters to a video. Is it possible to apply 2 filters at once ?

    I got :

    ffmpeg -i input.mpg -vf "movie=watermark.png [logo]; [in][logo] overlay=W-w-10:H-h-10 [out]" output.mpg

    I’m trying to add fade=in:0:20, but if I add a new -vf parameter, it will overwrite the preceding one, and if I add :

    -vf "fade=in:0:20; movie=......"

    it won’t work.

    Is this possible or do I have to run FFmpeg twice ?