
Recherche avancée
Autres articles (91)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 -
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 (16689)
-
x86/vf_threshold : make threshold8 functions work on x86_32
4 décembre 2017, par James Almer -
x86/vf_limiter : make limiter functions work on x86_32
8 juillet 2017, par James Almer -
Streaming WebM with ffmpeg over UDP doesn't work with audio
28 avril 2014, par omgodieI’m trying to stream a webcam video and audio as WebM via udp over the ffmpeg command line tool. (ffmpeg is build correctly and all libraries are included)
The stream is initiated with :
ffmpeg -f dshow -i video="Logitech HD Pro Webcam C910":audio="Mikrofon (USB-Audogerät)" -f webm udp://localhost:11100
and i try to playback the file on the same computer with :
ffplay udp://localhost:11100
Streaming Video AND audio doesn’t work. I get the following error message in ffplay :
udp://localhost:11100: End of file 0KB vq= 0KB sq= 0B f=0/0
nan : 0.000 fd= 0 aq= 0KB vq= 0KB sq= 0B f=0/0If i just stream the video
ffmpeg -f dshow -i video="Logitech HD Pro Webcam C910" -f webm udp://localhost:11100
I receive the video with ffplay.
What do i have to do to stream/receive audio correctly ?
I’m trying this way with the command line to reproduce a way with using libav in a C project if this is of interest...