Recherche avancée

Médias (91)

Autres articles (62)

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

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

  • 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


    


  • Is there a function to add a title to multiple videos ? FFMPEG

    8 avril 2020, par Samay Lakhani

    I'm getting started with FFMPEG to add a title video to a few dozen videos I have. What would be the proper command to do this ?