Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (102)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (12436)

  • Blending Videos in FFmpeg : Excluding Transparent Areas from the Blend [closed]

    12 novembre 2024, par li lu

    I have two videos : one background video and one foreground video (with doves flying, containing an alpha channel). I want to blend these two videos so that only the dove parts participate in the blending, while the transparent parts do not. When I use the ffmpeg blend filter, the overall color of the output video changes, as if the entire video is being blended.

    


  • ffmpeg-python crossfade transition for unknown number of videos

    1er mai 2022, par Sarah Peterson

    How to pass a list of file names (videos) to ffmpeg and have it concat and crossfade between each in the simplest way ?

    


    Thanks

    


  • how to put a red frame before each video programmatically, when concatenating videos using ffmpeg

    7 février 2023, par Maifee Ul Asad

    To merge files with ffmpeg I'm creating a text file like this :

    


    file 'a.mkv'
file 'b.mkv'
file 'c.mkv'


    


    Then I'm running this command to concat these videos :

    


    ffmpeg -f concat -i file.txt -c copy merged.mkv


    


    But the thing is, I want to put red frame for three seconds in the middle of each video.

    


    Now I can get these videos' frame dimensions and create a video and modify the text file like this :

    


    file 'red.mkv'
file 'a.mkv'
file 'red.mkv'
file 'b.mkv'
file 'red.mkv'
file 'c.mkv'


    


    But this is not a programmatical approach, so is there any way I can concat videos and put red frames for three seconds (before every video) ?

    


    I want to generate that red frame video, on run time.