Recherche avancée

Médias (91)

Autres articles (87)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • 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 : (...)

Sur d’autres sites (12266)

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

  • Cropping a mp4 into multiple fractions [duplicate]

    19 mai 2021, par DomDom

    Is it possible to crop a (huge) movie into fractions along the X- and Y-axis of the resolution ?

    


    Basically split it into smaller movies into rows and columns with each one having the full length ?

    


    I have no experience with ffmpeg and I tried figuring out this question in the docs but since I'm a noob, I don't understand half of it.

    


    By now I could only find information about cropping along the time of the movie, not resizing it multiple times with the full length.

    


    If not then maybe it is possible to just split an image into rows and columns ?