I'm a confirmed newbie, please be gentle. Is it possible to capture the live video stream from Studio Brussel? I've tried some methods but I'm not having any success.
https://stubru.be/live
I'm very keen to learn the mechanics rather than just getting the quick fix, as it were. Not necessarily a step by step guide as to how its done, but just a hint of the software used etc.
Thank you for your help, folks.
Support our site by donate $5 directly to us Thanks!!!
Try StreamFab Downloader and download streaming video from Netflix, Amazon!
Try StreamFab Downloader and download streaming video from Netflix, Amazon!
+ Reply to Thread
Results 1 to 7 of 7
-
-
Get the m3u8 link from a web browser's Developer Tools (F12).
Code:https://live-w.lwc.vrtcdn.be/groupb/live/0f394a26-c87d-475e-8590-e9c6e79b28d9/live.isml/.m3u8
Code:youtube-dl -F https://live-w.lwc.vrtcdn.be/groupb/live/0f394a26-c87d-475e-8590-e9c6e79b28d9/live.isml/.m3u8
Code:format code extension resolution note audio-aacl-96-English mp4 audio only [en] 251 mp4 416x234 251k , avc1.42C01E, 25.0fps, video only 484 mp4 480x270 484k , avc1.42C01E, 25.0fps, video only 871 mp4 640x360 871k , avc1.42C01E, 25.0fps, video only 1263 mp4 768x432 1263k , avc1.42C01F, 25.0fps, video only 2217 mp4 960x540 2217k , avc1.4D401F, 25.0fps, video only (best)
Code:youtube-dl -f audio-aacl-96-English -o output.aac https://live-w.lwc.vrtcdn.be/groupb/live/0f394a26-c87d-475e-8590-e9c6e79b28d9/live.isml/.m3u8
But there's a problem if you want both audio and video. When video and audio are in separate streams youtube-dl downloads all the video, then all the audio, and finally muxes them together into a single file. But a live stream never ends -- so it can't download all the video. And even if the video stream ends the program can't go back and get the audio that corresponds to the time the video was downloaded. You would have to start two instances of youtube-dl, one for the audio and one for the video. Then mux the resulting streams together when you're done. -
Wow! Thank you so much for taking the time to break it down for me too. I'm slowly learning, but I am learning. Much appreciated jagabo.
-
You would have to start two instances of youtube-dl, one for the audio and one for the video.
-
Hi ,
For both audio+video try :
youtube-dl -f audio-aacl-96-English+1263 ...
Cheers .JE SUIS CHARLIE !!! -
That doesn't work for live streams because youtube-dl will try to download all the video in one pass, then all the audio in a second. Since a live stream never ends, youtube-dl will record video forever. And even if the video does end youtube-dl can't go back in time to get the audio.
You can specify an audio delay/advance in the mux.
ffmpeg can download both video and audio streams simultaneously:
Code:ffmpeg.exe -i "https://live-w.lwc.vrtcdn.be/groupb/live/0f394a26-c87d-475e-8590-e9c6e79b28d9/live.isml/.m3u8" -c copy output.mkv
Similar Threads
-
Facebook Live Stream Capturing
By ghostrewel in forum Video Streaming DownloadingReplies: 1Last Post: 30th Nov 2017, 14:32 -
Issues capturing live RTMP Stream
By christheradioguy in forum Video Streaming DownloadingReplies: 2Last Post: 15th Jan 2017, 10:12 -
how to stream ESPN3 live video feed to my TV?
By sportflyer in forum Video Streaming DownloadingReplies: 3Last Post: 10th Apr 2016, 14:19 -
To stream a live video in a network with multicast address
By siby in forum Video Streaming DownloadingReplies: 2Last Post: 10th May 2014, 23:28 -
Trouble receiving live video stream
By woldsweather in forum Video Streaming DownloadingReplies: 0Last Post: 7th Jan 2014, 07:52