Recherche avancée

Médias (0)

Mot : - Tags -/organisation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (62)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette 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.

Sur d’autres sites (5064)

  • Streaming WebRTC via ffmpeg to Facebook Live (RTMP) [on hold]

    5 février 2017, par Frederik Greve

    sorry for my bad english ;)

    I’ve got the following problem :
    I want to stream a Webcam (+audio) to Facebook Live. To capture the media I use getUserMedia. Now I will send the data to Facebook Live via RTMP.

    I tink there are two ways to do it, but I don’t know how.

    1. Create an Stream with WebRTC and encode it with ffmpeg to RTMP.
    2. Save every single frame with HTML5 Canvas and then stream it with ffmpeg. (In this case I don’t know to add sound from microphone.)

    I’m just using html5, Javacript and PHP.

  • How to record a dash live stream in an encrypted mp4 format

    8 février 2021, par Vikral

    I 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 ?

    


  • Livestream doesn't start unless I open the YouTube Live Dashboard [closed]

    20 mars 2024, par Gavin Trujillo

    I 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.