
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (94)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (8935)
-
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.


-
(FFMPEG) Merge MP3 music with metadata and lossless WAV music without metadata into FLAC music with metadata ?
24 décembre 2022, par user335844Is it possible to merge MP3 music with metadata and lossless WAV music without metadata into FLAC music with metadata ? Thanks.


-
Why is adding background music to video using `ffmpeg -i input.mp4 -i music.mp3 output.mp4` not working ?
16 novembre 2022, par mayank1513I explored google and StackOverflow for how to add background music to the video and many of them suggested to use


ffmpeg -i input.mp4 -i audio.mp3 -shortest output.mp4



I have been trying to achieve this but it just does not work. When I try to add map like


ffmpeg -i "input.mp4" -i bg.mp3 -map 0:v:0 -map 1:a:0 oo.mp4



The video sound is replaced by the bg.mp3


And if I try
-map 0 -map 1:a:0
or not provide map, the audio is not added at all.

How do I add the background music ? I don't also get any error.