
Recherche avancée
Médias (1)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (22)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (5520)
-
How to load a subtitle stream into a video stream for ffmpeg [closed]
14 mai 2020, par pepperConvert speech to text with NLP,but how do I load text into a rtmp live stream as subtitles.


-
converting Rtsp stream to .wav and parallel y to bytes while stream is running
17 février 2016, par sureshThanks in advance ,I am converting rtsp live stream to .wav file using ffmpeg.Its converting good but i want to convert .wav file to byte stream parallely at the time of converting rtsp to .wav file
-
Mute the video stream and overlay the stream with a picture using ffmpeg
20 novembre 2020, par cold_fire99I reveive a stream from OBS and want to mute it and overlay it with a partly transparent picture (png).


Here is the command that I use (insite rtmp module of nginx), but this does not deliver an correct output stream :


exec ffmpeg -f lavfi -i anullsrc=channel_layout=stereo:sample_rate=48000 -i rtmp ://localhost/live/$(name) -i /var/www/stream/facebook-overlay.png -filter_complex "[1:v][2:v] overlay=0:0" -pix_fmt yuv420p -c:a aac -map 0:a -ar 48000 -shortest -f flv rtmp ://127.0.0.1:1936/rtmp/$(name)


Any ideas how this works to overlay with these 3 input streams ?


br