
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (42)
-
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. -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)
Sur d’autres sites (8832)
-
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 ?