Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (50)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (8718)

  • FFMPEG - Merge two videos with timecode sync

    25 mai 2022, par Olivier Rivard

    We are recording 2 videos from 2 cameras. There is a Timecode metadata attached two the 2 videos. But the starting and stopping of the 2 recodings could have a small difference in time. Less than a second, mostly couple of frames.

    


    One of the video has also the audio recording.
We used ffprobe to extract timecode to analyze the difference.

    


    The difference in timecode won't always be the same.

    


    Ex :
video1.mov timecode : 20:41:11:21
video2.mov timecode : 20:41:11:52

    


    This is the current command that we use to combine the 2 videos side by side to have a look similar to a Zoom call. The only issue is that our videos are out of sync.

    


    ./ffmpeg -i video1.mov -i video2.mov -filter_complex "[0:v]pad=iw*2:ih[int]; [int][1:v]overlay=W/2:0[vid]; [0:a][1:a]amix=inputs=2:duration=longest[aud]" -r 30 -map [vid]" -map "[aud]" output.mp4


    


    We want to make sure that the 2 videos are sync by the timecode.

    


    Example of a combine video :
enter image description here

    


  • Combining videos with ffmpeg using crossfades and plain cuts

    9 mars 2016, par Zach

    I am writing a script to combine/slice arbitrary video files from S3 into one output video. So far, I am doing this by first trimming the videos to their proper length using ffmpeg -i input-X.mp4 -ss start -t duration slice-X.mp4 and recombining the resultant slices with the ffmpeg concat filter.

    I want to be able to crossfade and cut between videos. concat does not support transitions. What is the best way to combine videos with crossfades and cuts on the Linux command line ? Is ffmpeg the best tool for the job ?

    My question is similar to "How do you create a crossfade transition between multiple videos in FFMPEG ?" but I do not necessarily need to use ffmpeg. Also, I want to be able to fade in between some slices and cut between others.

  • Presenting more than 2 videos using FFmpeg

    15 juin 2016, par Radagskar

    I found this answer for combining 2 videos using Ffmpeg

    ffmpeg.exe -i LeftInput.mp4 -vf "[in] scale=iw/2:ih/2, pad=2*iw:ih [left];
       movie=RightInput.mp4, scale=iw/3:ih/3, fade=out:300:30:alpha=1 [right];
       [left][right] overlay=main_w/2:0 [out]" -b:v 768k Output.mp4

    Is there a way to combine more than 2 ?

    I tried adding [bottom] and [upper] but I’m failing to understand how the overlay works and where do I put more videos.