
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (43)
-
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 -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation" -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (6514)
-
ffmpeg put logo on rtsp and send to youtube live
7 juillet 2017, par ahmed_maxI want to put it watermark logo on rtsp stream (from Hikvision IP camera) and send it live to YouTube.
I use ffmpeg on Winddows and this code
ffmpeg -f lavfi -i anullsrc -rtsp_transport tcp -i rtsp://username:pass@255.255.255.255/Streaming/Channels/101 -tune zerolatency -vcodec libx264 -t 12:00:00 -pix_fmt + -c:v copy -c:a aac -strict experimental -f flv rtmp://a.rtmp.youtube.com/live2/stream-key
How i can put watermark over live camera and send to YouTube live ?
I tried adding it
-i watermark.png -filter_complex "overlay=10:10"
but dont work.
-
http live video streaming and embed ffplay ?
17 novembre 2017, par ansariI have one query related to http live streaming concept.
In my cases :
case-1 : when I am playing the live streaming in ffplay, gives at most 2 seconds dealy.
case-2 : while playing the live streaming in vlc player , gives at most 5 seconds delay.
case-3 : In videojs player , shows at most 13 seconds delay.
Is there any solution to get case-1 in both 2 and 3 cases ? And also May i know that can we embed ffplay into html page ?
-
Live Stream on the fly generated video in asp.net core
3 juillet 2023, par juffmaI have a problem where i'm not able to stream a video over the Network due to it being generated live. Currently it's working using MJPEG but thats slow (especially if not in the local network) and has much overhead. I receive the frames of the video as images and currently convert them to JPEG and then build an MJPEG stream.


Would it be possible to generate another stream directly ? So for example "bake" the images into another type that isn't this heavy ?
If not, i currently think of the option to use FFMPEG to capture the MJPEG strteam and pipe it's output back into the App. Now, with this approach, what format would be best suited and how would i live stream it ? (eg. build a controller that correctly serves the FFMPEG pipe output (which, if it helps, i'm getting at a 4096 bytes large buffer)).


Saving the Video to Disk and then just multipart streaming the file is not an option as it would not be live anymore.