Recherche avancée

Médias (91)

Autres articles (67)

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

  • How do i add xfade transition to a batch of videos in ffmpeg ?

    28 novembre 2023, par QR7

    I'm currently trying to concatenate multiple videos in a folder using FFmpeg. I've successfully applied a xfade transition between two videos using the following command :
However, I'm facing two challenges :

    


    Applying xfade to multiple videos : I want to extend this process to apply the xfade transition between all videos in the folder and save it as a single video. I'm wondering if there's a way to automate this process using Python, perhaps by iterating over the files in the folder.

    


    Audio issue after transition : While the visual transition works seamlessly, I've noticed that the audio is muted as soon as the transition finishes in the output video. Is there a modification I can make to the FFmpeg command to ensure that the audio remains synchronized with the video throughout the output ?

    


    This is the command i am currently using :

    


    ffmpeg -i input1.mp4 -i input2.mp4 -filter_complex "xfade=transition=fade:duration=0.25:offset=4.5" -c:v libx264 -c:a aac -strict experimental output.mp4


    


  • Concat three videos with one audio

    27 septembre 2018, par Михаил Безуглый

    Thank you for coming here. I have three video clips (the first is 3 seconds, the second is 20 seconds, the third is 2 seconds), I connect them using the following command :

    ffmpeg -i opening.mp4 -i middle.mp4 -i ending.mp4 -filter_complex "[0:v] [1:v] [2:v] concat=n=3:v=1 [v]" -map "[v]" output.mp4

    Since all three videos do not have audio tracks, I do not need to include [a]. And then the day came when I needed it. I have an audio track, duration of 35 seconds(which is much larger than the output.mp4 video) and I need this audio to be connected to the whole video. 1) Do I need to crop the audio to the length that is obtained by merging all three videos ? 2) Is it possible to do this with one command, or i need first have to concatetate all together with my command, and then merge video and audio track ?

  • Transcode videos with queue

    14 août 2013, par Ron

    I want to transcode videos that are uploaded to a directory in a server with a queue.
    How can I order the server to encode a video using FFmpeg with Python ? And how a queue system can be added above that ?