Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (49)

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

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (5768)

  • Split and marge clip using ffmpeg

    24 mai 2017, par user2749679

    I am using ffmpeg to split and marge 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 marge video clip without saving intermediate files and without using filter_complex.

  • Split videos with ffmpeg in batch mode ?

    11 avril 2014, par user3524742

    I use this code to split video after 5s in batch mode but when I click .bat file, cmd disappears immediately.

    for %%i in ("*.mp4") do ffmpeg -i "%%i" -t 00:00:05 -codec copy "%~ni.mp4"
    pause

    How to fix it ? Thanks !

  • split the video into five chunks using ffmpeg and batch script

    21 janvier 2019, par RJFF

    I want to split videos into five chunks using ffmpeg

    the first chunk represents 20% of the whole video
    the second chunk represents 40% of the whole video
    the third chunk represents 60% of the whole video
    the fourth chunk represents 80% of the whole video

    the fifth chunk represents 100% of the whole video

    I write the algorithm but I do not know how to write the batch code :
    1. find the duration of the video
    2. store the duration in variable
    3. divided the duration by 5
    4. split the video

    I want a batch script that takes the duration of the video then store the value of duration in the variable

    this is how I can take the duration of the video

    ffmpeg -i C:\video-splitter-master\1.avi 2>&1 | grep "Duration"| cut -d ' ' -f 4 | sed s/,// | sed 's@\..*@@g' | awk '{ split($1, A, ":"); split(A[3], B, "."); print 3600*A[1] + 60*A[2] + B[1] }'

    but how I can store the duration value in the variable ?

    can you please help me ?