Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (101)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

Sur d’autres sites (9473)

  • How to add background music to a video file on a specific video second ? In node-fluent-ffmpeg

    31 mai 2021, par edpse

    I have a 12sec long audio.mp3 file
and video.mp4 is 60sec long.

    



    I need to insert audio.mp3 on the 40th second of the video.

    



    How to do it with node-fluent-ffmpeg ?

    


  • Adding background music that fades out with ffmpeg

    15 septembre 2019, par malbolge

    I have a piece of video that is 30fps and simply want to add overlay faint background music starting at 10 seconds. Then I want it to fade out during the last 15 seconds. I can’t find any good examples of this other than weird hacks.

    ffmpeg -i main.mp4 -i outro.mp3 -t 10 \
     -filter_complex "[a0][1:a]acrossfade=d=15[a];weight1:0.5" \
     -map '[v]' -map '[a]' out.mp4

    I get bad arguments in the filter_complex. Somethings off right there. in terms of the duration. Any help is greatly appreciated !!

  • add background music to video using ffmpeg ?

    3 décembre 2019, par sibbasa

    I have a video file (mp4) with sound, how can I add background music to it ? Using ffmpeg.

    Example please :)
    I tried like this :

    ffmpeg -i son.wav -i video_origine.mp4 video_finale.mp4

    But this method muffles the main sound.