Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (80)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

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

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

Sur d’autres sites (13430)

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

    


  • Scrape the precise duration of videos from ffmpeg to .srt

    6 février 2016, par user5715027

    So, I have a folder with a lot of videos. What I need is to create subtitles with the names of those videos also minding their size and length to create subtitles in .srt format. And length of videos should be parsed in such format :

    00:00:00,000 => hh:mm:ss:milliseconds

    So for example I have three videos in the folder :

    1) firstvideo.wmv  size:5743KB length: 00:05:34,793
    2) secondvideo.mp4 size:3215KB length: 00:02:42,653
    3) thirdvideo.avi  size:3950KB length: 00:01:55,152

    I need them to be sorted by size in .srt file with the precise timing one after another (also to remove video format in subtitles). Output file should in .srt format and should look like this :

    1
    00:00:0,000 --> 00:02:42,653
    secondvideo

    2
    00:02:42,653 --> 00:04:37,805
    thirdvideo

    3
    00:04:37,805 --> 00:10:12,598
    firstvideo

    (Important => After every time an action is completed there should be an empty line like in the example)

    I was given an advice to scrape the duration from ffmpeg -i "mediafile.ext" 2>&1 | find "Duration:". That will give me centisecond precision.
    Thanks For Your Attention ! Please, Help ! :)