
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (23)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...) -
Déploiements possibles
31 janvier 2010, parDeux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
Version mono serveur
La version mono serveur consiste à n’utiliser qu’une (...)
Sur d’autres sites (2545)
-
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.


-
Ffmpeg - padding/margins/offset in amix filter. Overlay conversation to music
10 juin 2022, par user19313832Use
filter_complex
andamix
to overlay conversation with music.

There is a video file with music, and an audio file with a conversation.
When they start talking, the volume of the music fades. When the conversation ends, the volume of the music increases again. It works.


But there is a problem that the volume of the music decreases only after they started talking. It is required that the volume of the music decrease even before they start talking, with an indent that can be specified. That is, when they have not said anything yet, the volume of the music decreases, for example, in a second when they start talking. Is there a solution ?


-
Extract music metadata (music title, album title, artist name...) using react-player
6 juin 2022, par PierogiI'm building a simple web app that plays music streams.

The constitution of the web app is

audio.m4a -> ffmpeg -> nginx + rtmp module -> frontend browser


In the frontend browser, use react-player.

The audio data is published as HLS audio data.

So, I want to extract the metadata(music title, album title, artist name ...) from the data and display it in the browser. However, I could not find the way to that.

Anyone who knows this ?