Hello,
Who can recommend me the best way to download live streaming video from youtube in highest quality?
Thank you for the help
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 28 of 28
-
-
I would say its youtube-dl just run a simple command
youtube-dl youtube.com/watch?v=xxx
but what I dont know is how to download the live stream from the beginning, maybe someone below me knows -
Thank you for your answer! the software asked me to add ffmpeg to download the video because it doesn't detected it. how to do that?
Last edited by aaajan; 7th May 2020 at 09:37.
-
just follow this instructions from youtube-dl faq and read carefully
-
Thank you again for your answer!
It will be great If it is possible to download from the biginning -
I recommend you use streamlink:
Code:streamlink "https://www.youtube.com/watch?v=tdjyvRfJeJM" best -o output.ts
-
-
-
Press Ctrl+C to stop downloading. But with youtube-dl that sometimes leaves a file that doesn't play. That's why i recommended Streamlink instead. It creates a transport stream file that will always play (unless it's very short, like 1 or 2 seconds). You can always remux to mp4 or mkv later.
-
Thank you for your advice and that is true with youtube-dl the downloaded video leaves some parts not playing. But the question how to download youtube with streamlink? I didn't find the command for it.
-
@jagabo
Thank you for recommending streamlink! Kistmet! I needed to record a Youtube stream earlier this morning and it worked great! -
When I use streamlink for YouTube (recording right now), it automatically stops at the end of the stream, at least on the channel I'm using it on.
I learned a couple of things while setting it up.
You can create a batch file and add the Timeout command (timeout <time to wait) for unattended recording. You have to add the both the streamlink and timeout commands multiple times so it repeats until the stream is live. Be careful not to set the timeout too short as you may be called out for hammering the site. Also note that it takes a few seconds for the streamlink command to execute and test if the URL is active.
Example: test.bat
@echo off
streamlink "<url>" best -o "h:/video.ts"
timeout 30
streamlink "<url>" best -o "h:/video.ts"
timeout 30
streamlink "<url>" best -o "h:/video.ts"
timeout 30
streamlink "<url>" best -o "h:/video.ts"
timeout 30
Be sure to repeat the lines enough times to ensure you catch the start of the stream.
I've also figured out how to use Windows Task Scheduler to execute the batch automatically. Beware that the different versions of Windows may have different setup requirements especially if you're the Admin or only User. After lots of trial and error, I found that the simplest method works for me on Win 10 X64. I have it set as One Time Only because the URL changes every day.
[Attachment 53308 - Click to enlarge]
[Attachment 53307 - Click to enlarge] -
Ohhh...I tried it a live Facebook stream yesterday and it didn't work. Wasn't sure if the stream would be retained after the stream, so used OBS to record it live.
-
-
Tried some converters not so long ago and found convenient youtube converter. May be it will be helpful for you.
-
Best option, agree.
If you miss the start of a 'Live' stream you can make it jump back to the start - or as far as possible. I have had Y/T sports streams jump back 2 hrs+ but similarly, others only 10mins or so:
Code:streamlink --hls-live-restart "https://www.youtube.com/watch?v=tdjyvRfJeJM" best -o output.ts
Code:youtube-dl --no-part "https://www.youtube.com/watch?v=tdjyvRfJeJM"
Code:youtube-dl --hls-use-mpegts "https://www.youtube.com/watch?v=tdjyvRfJeJM" -o output.ts
Last edited by codehound; 1st Jun 2020 at 17:06.
-
Last edited by jagabo; 3rd Jun 2020 at 12:41.
-
Try ee.ylss utility
You can find it on https://github.com
I haven't tested much, but at the moment it can download needed time interval of any Youtube livestream
[Attachment 54216 - Click to enlarge] -
Other version ready, with command line support and with choice of resolution - page on GitHub
It also can download the specified past portion of YouTube livestream, even if it was streamed many hours ago -
Doing a test run on a current streaming video on YT with this command line:
streamlink "https://www.youtube.com/watch?v=MiVG0cdqg78" best -o output.ts
and Streamlink returned this:
C:\Users\bb19>streamlink "https://www.youtube.com/watch?v=MiVG0cdqg78" best -o output.ts
[cli][info] Found matching plugin youtube for URL https://www.youtube.com/watch?v=MiVG0cdqg78
error: Unable to open URL: https://youtube.com/get_video_info (HTTPSConnectionPool(host='youtube.com', port=443): Max retries exceeded with url: /get_video_info?video_id=MiVG0cdqg78&el=detailpage (Caused by ProxyError('Cannot connect to proxy.', ConnectionResetError(10054, 'An existing connection was forcibly closed by the remote host', None, 10054, None))))
Any thoughts? -
It works for me:
Code:C:\>"g:\program files\streamlink\streamlink" "https://www.youtube.com/watch?v=MiVG0cdqg78" best -o output.ts [Streamlink for Windows v1.4.1 - Git W/5f8f0] [cli][info] Found matching plugin youtube for URL https://www.youtube.com/watch?v=MiVG0cdqg78 [cli][info] Available streams: 144p (worst), 240p, 360p, 480p, 720p, 1080p (best) [cli][info] Opening stream: 1080p (hls) [download][output.ts] Written 47.2 MB (1m52s @ 576.6 KB/s)
-
Goooogle's my friend. I disabled the Windows 10 Proxy thingee and I got it working. Thanks to all!
Similar Threads
-
Need help to downlod live video from xhamsterlive.com
By aaajan in forum Off topicReplies: 6Last Post: 28th Feb 2020, 22:49 -
Streaming live video over Cat 5 from pc to pc (windows 7)
By Sillyname in forum Video Streaming DownloadingReplies: 4Last Post: 25th Nov 2018, 08:47 -
How to record live streaming video on PC
By RussianBear in forum Newbie / General discussionsReplies: 2Last Post: 7th Dec 2017, 08:55 -
AVerMedia Live Gamer HD system crash only on specific YouTube video
By Yerp in forum Capturing and VCRReplies: 1Last Post: 22nd Sep 2017, 15:52 -
Live Streaming from VideoCamera(HIMI-1080p)to Youtube using Windows Desktop
By Bal-Canada in forum Video Streaming DownloadingReplies: 6Last Post: 18th Mar 2016, 08:44