Recherche avancée

Médias (1)

Mot : - Tags -/musée

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)

  • How to split video to 3 parts by ffmpeg ?

    14 avril 2014, par user3524742

    I want to split video to 3 parts in batch mode. So, I have this code :

    @echo off
    for %%i in ("*.mp4") do ffmpeg -i "%%i" -vcodec copy -acodec copy -ss 00:00:00 -t 00:00:05 D:\Ebook\%%~nxi_1.mp4
    for %%i in ("*.mp4") do ffmpeg -i "%%i" -vcodec copy -acodec copy -ss 00:00:05 -t 00:00:10 D:\Ebook\%%~nxi_2.mp4
    for %%i in ("*.mp4") do ffmpeg -i "%%i" -vcodec copy -acodec copy -ss 00:00:10 D:\Ebook\%%~nxi_3.mp4
    pause

    It works but having some problem :
    1. It save file : .mp4_1.mp4. How to remove ".mp4" ?
    2. When filename of video contain space character. It shows error : "Invalid argument". How to fix it ?

    Thank you very much !

  • Split video with ffmpeg with specific conditions

    15 juin 2023, par Mahdi

    I have some videos and I want to split them into 15 min each with FFmpeg with the following conditions :

    


      

    1. Final videos should be less than 15 min
    2. 


    3. Script should cut the video somewhere that speaker is not talking. For example, script should cut video on the following point :
    4. 


    


    enter image description here

    


    And it should not cut videos like the following :
enter image description here

    


    This article could working for the first condition, but the second option is missed.

    


    python ffmpeg-split.py -f big_video_file.mp4 -s 10


    


  • Is there an elegant way to split a file by chapter using ffmpeg ?

    18 janvier, par Kattern

    In this page, Albert Armea share a code to split videos by chapter using ffmpeg. The code is straight forward, but not quite good-looking.

    


    ffmpeg -i "$SOURCE.$EXT" 2>&1 |
grep Chapter |
sed -E "s/ *Chapter #([0-9]+\.[0-9]+): start ([0-9]+\.[0-9]+), end ([0-9]+\.[0-9]+)/-i \"$SOURCE.$EXT\" -vcodec copy -acodec copy -ss \2 -to \3 \"$SOURCE-\1.$EXT\"/" |
xargs -n 11 ffmpeg


    


    Is there an elegant way to do this job ?