
Recherche avancée
Autres articles (37)
-
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 -
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, (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (6551)
-
network : Use av_strerror for getting error messages
19 juin 2012, par Martin Storsjönetwork : Use av_strerror for getting error messages
-
network : Check for struct pollfd
25 juin 2012, par Martin Storsjönetwork : Check for struct pollfd
-
Capture and play MJPEG - Network Video stream over UDP with OpenCV and ffmpeg
3 mars 2016, par MoNasI’m trying to receive and display a udp live mjpeg - network video stream from a network cam.
I can play the video stream by starting VLC with the Argument--demux=mjpeg
and then typingudp://@:1234
in the network stream field. Or with gstreamer by the console line :gst-launch -v udpsrc port=1234 ! jpegdec ! autovideosink
. My Cam has the IP Address192.168.1.2
and it sends the stream to the address192.168.1.1:1234
.I’ve tried to capture the stream with OpenCV with :
cv::VideoCapture cap;
cap.open("udp://@192.168.1.1:1234");I tried also :
cap.open("udp://@:1234")
cap.open("udp://@localhost:1234")
cap.open("udp://192.168.1.1:1234")
cap.open("udp://192.168.1.1:1234/")But the function hangs until I press
ctrl+C
. I have the same problem when I use ffmpeg with :ffmpeg -i udp://@192.168.1.1:1234 -vcodec mjpeg
What did I do wrong ? When i installed ffmpeg i couldn’t install the dependency
libsdl1.2-dev
. Is that the problem ?If so, there is any way to read the udp-frames from the socket and then decode the JPEG pictures and display it with OpenCV ?
I have the OS Ubuntu linaro oneiric 11.10 with the kernel 3.0.35 from Freescale