Recherche avancée

Médias (91)

Autres articles (63)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (5846)

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