Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (41)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (4312)

  • How to Gradually Fade Audio Volume in ffmpeg from X% to Y% and Back to X% ?

    23 juillet 2024, par DomingoSL

    I'm trying to process an audio file (bg-music.mp3) using ffmpeg to achieve specific volume changes at certain time intervals and trim the file at 30 seconds. The requirements are :

    


      

    • First 5 seconds at 100% volume
    • 


    • Fade from 100% to 10% volume between 5 and 7 seconds
    • 


    • From 25 to 27 seconds, fade audio to 100% volume and keep it until the end of the file
    • 


    • Trim the file at 30 seconds
    • 


    


    Here is the command I have used so far :

    


    ffmpeg -i bg-music.mp3 -filter_complex "[0]volume=1:enable='between(t,0,5)',volume='if(between(t,5,7),1-(0.45*(t-5)),0.1)':enable='between(t,5,25)',volume='if(between(t,25,27),0.1+(0.45*(t-25)),1)':enable='gt(t,27)'" -t 30 output.mp3


    


    While this command processes the file, the volume changes are not gradual between the specified intervals (5 to 7 seconds and 25 to 27 seconds). Instead, the volume changes abruptly rather than smoothly transitioning. Here's the result

    


    How can I correctly apply a gradual volume fade using ffmpeg to meet these requirements ?

    


  • fftools/ffmpeg_filter : simplify control flow in read_frames

    9 juin, par Marton Balint
    fftools/ffmpeg_filter : simplify control flow in read_frames
    

    No functional change.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] fftools/ffmpeg_filter.c
  • lavfi/vf_fps : check flow before sending more frames

    19 février 2022, par Nicolas George
    lavfi/vf_fps : check flow before sending more frames
    

    Analyzed by Paul B Mahol <onemda@gmail.com>.

    Fixes OOM in #9081.

    • [DH] libavfilter/vf_fps.c