
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (96)
-
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...) -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)
Sur d’autres sites (7959)
-
Update jpg during live broadcast with ffmpeg
13 mars 2021, par FoxFrI encounter a problem with a stream ffmpeg, i search from several hours how my jpg wasn't update during my live, indeed i wish to cast a jpg updated each 5 seconds beteween other video inputs


- 

- i create a new jpg each 5 seconds
- i wish to cast this new image each 5 seconds






I can't find an option to refresh each 1 sec or more, u know ?


-loop 1 -i /home/pi/videopi/map/map.jpg



i try to add
-update 1
, without success

-
Overlay a png to a live srt stream with 3 seconds delay using timestamp ( setpts ) in ffmpeg ?
27 avril 2021, par Fabi8bitwhat I'm trying to achieve is to synchronize a png overlay (a scoreboard) to an incoming live srt stream (coming in with 1 sec delay ca.). The updated png is overlayed in real time. I would like to be able to set a delay to synchronize the overlay to the incoming live streaming and send it somewhere else (In my example to another udp port) Here is my code :


ffmpeg -y -i srt://10.10.0.15:5001?mode=listener -f image2 -stream_loop -1 -i C:\Users\Utente\Desktop\prova_overlay.png -filter_complex "[0:v]setpts=PTS[v0];[1:v]setpts=PTS+3/TB[v1];[v0][v1]overlay" -tune zerolatency -f mpegts -b:v 8000k srt://10.10.0.15:5002?pkt_size=1316



-
How to live stream from Windows 10 app to Youtube ?
12 août 2015, par BolandI’m playing around with the YouTube Live Stream API. That’s working fine so far, but the next step is to stream the web cam data to YouTube via RTMP.
In the (excellent) documentation at Google Dev, it outlines the Life of a Broadcast. However, all steps are documented in detail, except the step I’m interested in :
Step 3.2 : Start your video
Start transmitting video on your video stream.
I was able to use Open Broadcasting Software to stream to a manually created YouTube Live Event, but I have no idea how to do it from my Windows 10 App. I’ve looked at the MediaElement class, and was able to capture the web cam preview in my app. But I can only find methods to save as a file.
Also found information about FFMPEG, which should probably be able to do the job, but I cannot find a library / DLL to use FFMPEG in my App.
I just need some guidance where to look next, because now I’m just clueless what to do.
/edit : I came across MPlatform SDK, which sounds exactly what I want, but it costs $5000.... Not for a hobby :(