Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (28)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

Sur d’autres sites (4315)

  • Split and Concat video clip using ffmpeg

    24 mai 2017, par user2749679

    I am using ffmpeg to split and Concat a vidoe clip by doing following :

    F:\Temp_Project\ffmpeg\ffmpeg -ss 00:00:00 -t 00:00:20 -i F:\Temp_Project\ffmpeg\input.avi -ss 00:00:20 -t 00:00:48 -i F:\Temp_Project\ffmpeg\input.avi -filter_complex "[0][1]concat=n=2:v=1" -y F:\Temp_Project\ffmpeg\output.avi

    Now i want to do this without using filter complex as this filter take much time to produce a result.

    I found one way to perform the above task using two step operation :
    Split and save parts to hard disk
    concat saved parts.

    Sample code :

    F:\Temp_Project\ffmpeg\ffmpeg -i "F:\Temp_Project\ffmpeg\input.avi" -vcodec copy -acodec copy -ss 00:00:00 -t 00:00:20 -y F:\Temp_Project\ffmpeg\1.avi -vcodec copy -acodec copy -ss 00:00:20 -t 00:00:48 -y F:\Temp_Project\ffmpeg\2.avi

    F:\Temp_Project\ffmpeg\ffmpeg -i "concat:F:\Temp_Project\ffmpeg\1.avi|F:\Temp_Project\ffmpeg\2.avi" -c copy -y F:\Temp_Project\ffmpeg\output.avi

    How can i marge above two commands in a single lines that is split and concat video clip without saving intermediate files and without using filter_complex.

  • Ffmpeg how to split then concate another video in one command

    4 juillet 2018, par Cuong Nguyen

    I want to split video a into a1 and a2 videos.
    Then I want to concat a1, b, a2 into c video.
    Transition time between a1 and b ; b and a2, I want add 1 second fade in fade out effect.
    How to do that in one command by FFmpeg ?
    Thank you !

  • Split Video Files Batch Mac

    11 août 2022, par dolomite41

    Noob Here. I have about 300 files that I want to split into segments. About 5 seconds each. I figured how to do it for one file, but is there anyway I can do it to the whole folder directory ? Been searching online and can't seem to find exactly what I need.

    


    here is what I did for the single file

    


    ffmpeg -i test2.mp4 -c copy -map 0 -segment_time 00:0:05 -f segment output%03d.mp4

    


    would like to do it for all the files at once

    


      

    1. Is there a batch command that can do it for all files
    2. 


    3. If not, is there a way I can put more than one command line into Terminal and run them all at once ?
    4. 


    


    OS - Mac - Monterey - FFMPEG and Brew installed

    


    Real noobie, any help would be appreciated