Recherche avancée

Médias (91)

Autres articles (103)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

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

  • Is there a way to concatenate mp4 video files in ffmpeg without video resolution switching ? [closed]

    15 mai 2024, par Micery999

    So i tried this command from windows

    


    (echo file 'first file.mp4' & echo file 'second file.mp4' )>list.txt
ffmpeg -safe 0 -f concat -i list.txt -c copy output.mp4


    


    while making a batch file

    


    Then i concatenate two video's and as soon as the one video ended. It changes resolution, then the video player started to glitch out pixel's like in vlc.

    


    Even if i typed

    


    ffmpeg -safe 0 -f concat -i list.txt -vf scale=640:360 -c copy output.mp4


    


    Nothing happened.

    


  • Python get list of streams from video (audio/video)

    2 août 2019, par user972014

    I have a video file and I want to get the list of streams from it. I can see the needed result by for example executing a simple `ffprobe video.mp4 :

    ....
    Stream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661) ......
    Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), ......
    ....

    But I need to use python and code that will work both on Windows and Ubuntu, without executing an external process.

    My real goal is to check whether there is ANY audio stream within the video (a simple yes/no would suffice), but I think getting extra information can be helpful for my problem, so I’m asking about the entire streams

    EDIT : Clarifying that I need to avoid executing some external process, but looking for some python code/library to do it within the process.

  • How can I extract images from an MPTS video(which has 4 videos in it) from each and every video using a single command ?

    21 octobre 2019, par geo-freak

    I have an MPTS video file, which has 4 videos in it. I want to extract images from each video and store them in a directory separately. I am using ffmpeg, I have seen references from previous solved questions.

    I used below command to extract frames.

    ffmpeg -threads 8 -i input.ts -s 400x222 -qscale:v 4 -start_number 0 -vf fps=1 /storage/frames/input_1//%d.jpg /storage/frames/input_2//%d.jpg /storage/frames/input_3//%d.jpg /storage/frames/input_4//%d.jpg

    But frames extracted only for first video in MPTS stream. How can I achieve using this using a single ffmpeg command ?