
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (30)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (4587)
-
ffmpeg : How to concat audio files and add background music in a single command ?
7 décembre 2016, par harishkumar329Need to concat audio files and add background music in a single command.
Right now I use the following commands to do so,
To concat :
ffmpeg -i 1.mp4 -i 2.mp4 -i 3.mp4 -i 4.mp4 -i 5.mp4 -i 6.mp4 -i 7.mp4 -i 8.mp4 -i 9.mp4 -i 10.mp4 -filter_complex '[0:0][1:0]concat=n=10:v=0:a=1[out]' -map '[out]' -strict -2 -y 10_final.mp4
To add background music :
ffmpeg -i 10_final.mp4 -i music.mp4 -filter_complex "[0:a]volume=1dB[a0];[1:a]volume=0.5[a1];[a0][a1]amerge=inputs=2[a]" -map "[a]" -ac 1 -ab 32000 -ar 22050 -strict -2 -y 10_with_music.mp4
But his process is a quite time-consuming process as every time the file read/write happening to the output.
Is there a way I can merge these two above commands to a single so that the command should be optimized.
-
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 Bandalcreating 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


-
how spotify and other music players implement cross fading between music
11 janvier 2023, par Arihant JainI was working on a media streaming project and thought of implementing a cross fade between the next and current playing song.


HLS is used for streaming music and .m3u8 file is presigned by cloudfront.


Any help will be appreciated.