PDA

View Full Version : Help with this You Tube live stream


joejones15
04-24-2015, 11:50 AM
What is best way to capture this stream? Also what are different bit-rates available?

https://www.youtube.com/watch?v=zcrCLkkmatM

biezom
04-24-2015, 11:54 AM
What is best way to capture this stream? Also what are different bit-rates available?

https://www.youtube.com/watch?v=zcrCLkkmatM

youtube-dl -F "https://www.youtube.com/watch?v=zcrCLkkmatM"
[youtube] zcrCLkkmatM: Downloading webpage
[youtube] zcrCLkkmatM: Extracting video information
[youtube] zcrCLkkmatM: Downloading formats manifest
[youtube] zcrCLkkmatM: Downloading DASH manifest
[info] Available formats for zcrCLkkmatM:
format code extension resolution note
140 m4a audio only DASH audio 144k , m4a_dash container, aac @128k (48000Hz)
160 mp4 256x144 DASH video 124k , 15fps, video only
133 mp4 426x240 DASH video 258k , 30fps, video only
134 mp4 640x360 DASH video 616k , 30fps, video only
135 mp4 854x480 DASH video 1116k , 30fps, video only
151 mp4 72p HLS
132 mp4 240p HLS
92 mp4 240p HLS
93 mp4 360p HLS
94 mp4 480p HLS (best)

so youtube-dl -f 94 "https://www.youtube.com/watch?v=zcrCLkkmatM"
or
youtube-dl -f 135+140 "https://www.youtube.com/watch?v=zcrCLkkmatM"


livestreamer "https://www.youtube.com/watch?v=zcrCLkkmatM"
[cli][info] Found matching plugin youtube for URL https://www.youtube.com/watch?v=zcrCLkkmatM
Available streams: 240p, 360p, 480p (best), 72p (worst)

so livestreamer "https://www.youtube.com/watch?v=zcrCLkkmatM" 480p -o live.ts

joejones15
04-24-2015, 12:04 PM
thanks biezom!