
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (58)
-
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" (...) -
Publier sur MédiaSpip
13 juin 2013Puis-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
Sur d’autres sites (11833)
-
avcodec/ratecontrol : replace asserts by av_asserts
31 janvier 2015, par Michael Niedermayer -
lavc/nellymoserdec : replace pow by exp2
10 décembre 2015, par Ganesh Ajjanagadde -
How do you replace audio at a given timestamp with ffmpeg ?
29 août 2022, par Ed GeorgeI am trying to use the ffmpeg library to take two FLAC files and replace the audio in File A with the audio in File B at a given timestamp.



For example if File B was to be played at 00:02 and was a second long, playing the output it would be
(00:00-0:01) File A Audio -> (00:02-0:03) File B Audio -> (00:04-...) File A Audio



To do this, I have tried the following



ffmpeg -y -i original.flac -i replacement.flac -acodec copy -ss 2 -to 3 -write_xing 0 result.flac




But this only produces the original audio between the specified timestamps.



Is there any way to achieve this within ffmpeg ?