
Recherche avancée
Autres articles (53)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (5061)
-
Single click solution to publish webcam live feed to wowza
22 mai 2015, par user2002522I have been trying to find out how to publish live webcam feed to a remote wowza server. I am trying to make a web application where in a user will be able to broadcast its live feed with a single click of a button.
How can this be done ?
-
Livestream doesn't start unless I open the YouTube Live Dashboard [closed]
20 mars 2024, par Gavin TrujilloI have a camera feed that streams 24/7 on YouTube. Everything works fine, except the stream often goes down due to internet reliability issues. I can detect that the stream is down with the v3/search endpoint, then an automated command is sent from my server to restart it, but the stream doesn't start like it should.


I've discovered that the live stream will only start if I open the YouTube Live Dashboard first.
Before opening the dashboard, my streaming software will upload data using the stream key, but there's no live stream. Upon opening the YouTube Live Dashboard, it shows "Good Connection" but with no video feed. My automation script is continuously restarting the stream, so it comes up very shortly after opening the dashboard every time.


Streaming software : I use ffmpeg to translate an RTSP stream directly to YouTube.


ffmpeg -rtsp_transport tcp -re -i "rtsp://$cameraLink" -f lavfi -i anullsrc=channel_layout=stereo:sample_rate=44100 -force_key_frames "expr:gte(t,n_forced*2)" -nostdin -f flv -map 0:v:0 -map 1:a:0 -c:v libx264 -preset ultrafast -crf 43 -s 1280x724 -r 30 -c:a aac "rtmp://a.rtmp.youtube.com/live2/$streamKey"



Since entering into the YouTube Live Dashboard seems to start some sort of "active state", I've tried various Oauth2 and key API methods to start the live stream. I haven't gotten anything to work so far.


-
How to record a dash live stream in an encrypted mp4 format
8 février 2021, par VikralI want to record/download a live video. It's in a .mpd format. The video is protected with DRM, but I don't want to decrypt the video, instead of how to get an encrypted mp4 ? I have tried FFMPEG, youtube-dl, and streamlink,


FFMPEG


ffmpeg -i https://example.com/streaming/hds/live/master.mpd -codec copy encrypted_media.mp4


Error :
Error when loading first fragment, playlist 0.


Tried youtube-dl


youtube-dl https://example.com/streaming/hds/live/master.mpd


Error :
No Video Formats Found


And I also tried streamlink

streamlink https://example.com/streaming/hds/live/master.mpd best


Error :
Video is protected by DRM.


But Nothing worked. How can I record a dash live stream in encrypted mp4 format ?