Recherche avancée

Médias (0)

Mot : - Tags -/page unique

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (69)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (8555)

  • how to cut the last 2 minutes of the videos in bulk using ffmpeg

    8 mai 2020, par jose antonio da silva junior

    how to cut the last 2 minutes of the videos in bulk using ffmpeg I'm using this but I must do this in bulk but the time of the videos is not the same

    



    for %%a in ("*.mp4") do ffmpeg -i "%%a" -i overlay-black.png -filter_complex overlay=0:600 -ss 00:00:05 -codec:a copy "convertidos\%% na.mp4" 
pause

    


  • How to stack videos horizontally with their audios combined in ffmpeg in nodejs ?

    5 novembre 2018, par Abhilash

    I have a video calling app which I have implemented using Kurento Media Server. With the Recorder Endpoints from kurento I am able to record the videos of caller and callee separately. After the call I want to combine the videos into a single video. I want to stack the videos horizontally and combine their audios. I have done this using ffmpeg from terminal using complex filters but I want to achieve the same thing using ffmpeg nodejs library. Please help me. Thanks in advance.

  • Issue regarding concatenate videos ffmpeg

    8 février 2021, par Mayank Thapliyal

    I want to concatenate 3 videos using ffmpeg. So I did a research on the net and got the required code. But later on I realized that it will not work as the attributes of the video are different and hence I will have to re-encode the videos

    


    So I got this on the internet :-

    


    ffmpeg -i 1.mp4-i 2.mp4 -i 3.mp4 -filter_complex "[0:v] [0:a] [1:v] [1:a] [2:v] [2:a] concat=n=3:v=1:a=1 [v] [a]" -map "[v]" -map "[a]" output.mp4

    


    But when I ran it,it was SUPER slow. And ffmpeg recommended to add vsync 2 in the code. I added it in the following manner :-

    


    ffmpeg -i 1.mp4-i 2.mp4 -i 3.mp4 -vsync 2 -filter_complex "[0:v] [0:a] [1:v] [1:a] [2:v] [2:a] concat=n=3:v=1:a=1 [v] [a]" -map "[v]" -map "[a]" output.mp4

    


    Now the video was processed on time and the result was also fine. But I don't know the meaning of the code. Will someone be kind enough to explain what exactly is happening ? (in this way I would be sure that the code will always work for me for all videos)