Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (32)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

Sur d’autres sites (6354)

  • doc/ffmpeg : make the ASCII flow charts narrower to fit onto TTY

    7 février 2014, par Timothy Gu
    doc/ffmpeg : make the ASCII flow charts narrower to fit onto TTY
    

    These charts in man page are currently destroyed.

    Signed-off-by : Timothy Gu <timothygu99@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] doc/ffmpeg.texi
  • Revision 5950a69213 : Merge "Reformat non-RD coding flow"

    22 mars 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c



    Merge "Reformat non-RD coding flow"

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

    &#xA;

      &#xA;
    • First 5 seconds at 100% volume
    • &#xA;

    • Fade from 100% to 10% volume between 5 and 7 seconds
    • &#xA;

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

    • Trim the file at 30 seconds
    • &#xA;

    &#xA;

    Here is the command I have used so far :

    &#xA;

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

    &#xA;

    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

    &#xA;

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

    &#xA;