Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (111)

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

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (5430)

  • How to adjust the background music volume according to the main audio volume ?

    31 juillet 2017, par harishkumar329

    I am using the following ffmpeg "amerge" command to mix two audio files,

    ffmpeg -i voice.mp3 -i music.mp3 -filter_complex "[0:a]volume=1dB[a0];[1:a]volume=0.5[a1];[a0][a1]amerge=inputs=2[a]" -map "[a]" -strict -2 -y output.mp3

    voice.mp3 file also includes the silences in the middle of the audio, the positions of silence is completely dynamic.

    Currently, the voice volume is set as 1db and the music volume is set as 0.5. Because of this when there is no voice, the audio volume sounds low, if I increase the background music volume, it will spoil the voice clarity.

    Is there a way where the volume for the voice and music gets adjusted dynamically while mixing using "ffmpeg" or any such tool ?

    I know that it is possible by writing the code to separate silence and voice and mix individually with the music and then merge everything together, in that method getting the music flow without any jerks is difficult, also it requires a lot of coding and testing.

  • why changed volume after merge ? in ffmpeg. How to turn off change volume [duplicate]

    13 décembre 2017, par Нодирбек Раззоков

    This question already has an answer here :

    why changed volume after the merge ? in FFmpeg.

    How to turn off change volume. I need an original volume of music after the merge.

    please check my command

    ffmpeg -i song.mp3 -i mix.mp3 -filter_complex \"[1]adelay=10000|10000[b];[0][b]amix=2,volume='1-max(0.25*(t-13),0)'\" -ac 2 -i cover.jpg -c copy -id3v2_version 3 -codec:a libmp3lame -q:a 4 -b:a 128k -y output.mp3
  • I have to configure background music and voice with ffmpeg such that whenever voice will play background music volume will be less than voice ?

    18 janvier 2023, par Namrata Bandal

    creating dynamic volume changes in an audio file where the voice is playing, and the voice should be played at 100% volume throughout the duration of 4-16 seconds while the background music's volume changes between 4-8 seconds from 100% to 20% linearly, 8-12 seconds hold the volume at 20% and 12-16 seconds change the volume from 20% to 100% linearly after 16 seconds hold the volume at 100% and 4-16 seconds voice should be hold volume at 100% in ffmpeg command