Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (69)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (9182)

  • FFMPEG multiple file pattern not working in single command

    19 mars 2019, par Bhavik Rathod

    I want to add multiple file sequences in single ffmpeg command, below is my code, video is getting created but only first image sequence is getting used, second is getting ignored

    ffmpeg -y -i input.mp4 -start_number 0000001 -i 1/%07d.png -i 2/%07d.png -filter_complex "[0][1]overlay=x=10:y=10:enable='between(t,0,3)'[v1];[v1][2]overlay=x=10:y=10:enable='between(t,3.8561422222222,6.9761777777778)'[v2]" -map "[v2]" -map 0:a out.mp4

    Now the problem is FFMPEG wants continous images, which i don’t have i have images starting from 0000001.png in each folder, how can i accomplish this without changing much in my images

  • How can I merge all the videos in a folder to make a single video file using FFMPEG

    21 janvier, par X_1

    I have a folder with 20+ video files and I need to merge them to make one long video file. How can I achieve this using FFMPEG in Python ?

    



    I know the following command

    



    ffmpeg -vcodec copy -isync -i \ "concat:file1.mp4|file2.mp4|...|fileN.mp4" \


    



    outputfile.mp4

    



    But I'd rather not type all the names of the 20+ files.

    


  • Automate single quote escape in batch file

    23 avril 2019, par unident77

    I’m using a pretty simple ffmpeg batch script, but it can’t convert videos with single quotes in their titles. If the title is Boogiepop Phantom - 1x11 - Under The Gravity's Rainbow for example, I’ll get the error [Parsed_subtitles_0 @ 000000670ea89ec0] Unable to open Boogiepop Phantom - 1x11 - Under The Gravitys Rainbow.mkv Note the removed single quote.

    I know ^ is the escape character, but the single quote is in a different spot every time. Do I need regex or is there a simpler way ?

    for %%a in ("*.mkv") do ^
    ffmpeg -i "%%a" ^
    -vf subtitles="%%a" ^
    "NEW\%%~na.mkv"
    pause