Skip to content

Instantly share code, notes, and snippets.

@danfinlay
Last active March 23, 2024 03:32
Star You must be signed in to star a gist
Save danfinlay/7357098 to your computer and use it in GitHub Desktop.
How to download a streaming video with Google Chrome

How to download streaming video

Streaming just means a download that they don't want you to keep. But Chrome's developer tools make it easy to access what's really going on under the hood.

Open Developer Tools

From the page where you want to download some things, go into your chrome menu to open the developer tools. You can either:

1.  (On a mac): Command-option-J
2.  (On a PC): Control-alt-J
3.  (In your menu on a mac): Open View > Developer > Developer Tools
4.  (On any Chrome machine): The far right menu button, to the right of the URL bar, you can press that, go down to "Tools", then open the "Developer Tools".

Monitor Network Traffic

By clicking the "Network" tab, you'll get a list of all files requested since you opened that tab. Our goal is to isolate the web request that returns the video of your choice. At this point, you can navigate to the video you want, and I'd probably press the "clear" button in the developer tools right before finally pressing the "Play" button on the video, so it can be one of the only transfers you see.

Identify the video transfer

It should be easy to recognize the video transfer: It has a mime type of video, it's a transfer that should take a lot longer than the rest, etc.

Once you've found it, click on the request name, which represents the HTTP request that was sent to the server for the video file.

Identify the Request URL

The first thing in the first tab of the request viewer should be the Request URL in the Headers tab. You can just copy this URL into another video, and now if you right click the video, it should include a Save option, unlike when the whole thing was wrapped in Flash or whatever.

Enjoy!

@non7top
Copy link

non7top commented May 29, 2019

Doesn't seem to be working for youtube in chrome, media section in network tab es empty. A bit frustrating how they transfer video and audio to chrome and chrome doesn't display that.

@Cybertronion-alpha
Copy link

It works,but link only works if u download it at that time.Suppose if i use that link one day after, it says ITS GONE .is there any way to get a permanent link.

@webpowers
Copy link

webpowers commented Aug 4, 2019

protip for "Identify the Request URL"

Right-click the request and select "Copy As cURL" . Then open a Terminal, paste and add > file.mp4 . That will make it download with the same cookies and save it to a file called that.

Pardon being a noob, but the cmd is saying the "installed libcurl version doesn't support this". What am I missing? I would love to get this to work. I read through the thread hoping to figure it out but no luck...thanks. I guess I'm not quite there yet for "protips" :-)

@dineshvjoshi
Copy link

dineshvjoshi commented Aug 25, 2019

how to down load HTTP live stream HLS video/m3u8 streaming video/f4v embedded video step by step
1.down load chrome web extension from search on crome web store hls down loader.
2.open streaming video . the hls down loader will grab the root filelink on server. copy it.

or
other option is developer tools>network>clear
then press play tab . Just after video starts the developer tool window will show link to initial root file on server which ends with playlist on it
.just like https://*****************.com/vod/definst/1_708.f4v/playlist.m3u8.

.3.install m3u8loader by yourok 1.2.146 on android phone from play store .or search web for it.
4. insert above link which ends with playlist.m3u8 in android soft ware at url link. click add .if web site of streaming media has user name and password ,them log in to it on android chrome browser.
5.press down load .It will down load file with out breaks as mp4 file . It will not have .ts extensions as multiple broken files
it has resume function if link is broken
6. if you have to down load multiple file from same web site change number before .f4v and after 1_ in the link. you can get that number by moving cursor on to file that you want to download.

please let me know any problem

@theshivamkumar
Copy link

Hey!
Does anyone know how to download from netflix in this way? Because as far as I have tried, I am not able to do so.
Kindly help!

@suga0613-1
Copy link

hi I did follow your instruction but how do you identify in this case .
its 10min video
http://prntscr.com/q59mz1

@truongpx309
Copy link

truongpx309 commented Dec 18, 2019

Hi folks,

Could someone download video from this link https://www.vtvgiaitri.vn/video/ve-nha-di-con-tap-6-335-3546 and guide me how to do that?

@doliashvili
Copy link

now for youtube isn't working !

@MADDY-RGB
Copy link

How do i download multiple videos from a random webpage.
please help?
it's for education related videos

@dineshvjoshi
Copy link

dineshvjoshi commented Oct 25, 2020 via email

@PetrusVermaak
Copy link

Can someone please tell me how to download channel4.com videos? No one seems to be able to do it.
Very serious about it, willing to pay $50 if anyone can show me how to download & decrypt the content. (No I do NOT want to screen record, it takes too long)
They use widevine drm, I installed a github chrome plugin (widevine-l3-decryptor) that gives me the decryption key, but I am unable to download the stream dash video.
In chrome you need to install FreeVPN and set location to United Kingdom, then you need to register for free account on channel4, with a fake UK address, after that you will be able to watch the videos for free.

@jeppoo1
Copy link

jeppoo1 commented Dec 9, 2020

I found this answer helpful (that answer by dina also has Python code in it):
https://stackoverflow.com/a/45050718/11786575

You could also look at this page for more answers:
https://stackoverflow.com/questions/22188332/download-ts-files-from-video-stream

@PetrusVermaak
Copy link

@jeppoo1 Thank you for the reply. Their solution is 3 years old. I tried but unfortunately does not work with channel4.com due to their DRM.

@sandystanfan
Copy link

Hi..have u found the method of dnlding nd decryption..I am searching fr this too

@PetrusVermaak
Copy link

PetrusVermaak commented Feb 21, 2021

@sandystanfan unfortunately not... still looking but no solution yet. I know it is possible because someone downloaded 10 episodes to prove that it can be done, but they did not want to show me how they did it.

@sandystanfan
Copy link

Ok. Glad you replied,,
Incase u find it the upcoming days..
Kindly mail me at goldendaysdays@yandex.com

@PetrusVermaak
Copy link

will do!

@vsisl
Copy link

vsisl commented Feb 28, 2021

protip for "Identify the Request URL"

Right-click the request and select "Copy As cURL" . Then open a Terminal, paste and add > file.mp4 . That will make it download with the same cookies and save it to a file called that.

This worked flawlessly for me when trying to download a stream that required an authentication. Thank you! @paulirish

@isafat
Copy link

isafat commented Apr 26, 2021

The markdown style didn't get preserved, here it is now:

How to download streaming video

Streaming just means a download that they don't want you to keep. But Chrome's developer tools make it easy to access what's really going on under the hood.

Open Developer Tools

From the page where you want to download some things, go into your chrome menu to open the developer tools. You can either:

  1. (On a mac): Command-option-J
  2. (On a PC): Control-alt-J
  3. (In your menu on a mac): Open View > Developer > Developer Tools
  4. (On any Chrome machine): The far right menu button, to the right of the URL bar, you can press that, go down to "Tools", then open the "Developer Tools".

Monitor Network Traffic

By clicking the "Network" tab, you'll get a list of all files requested since you opened that tab. Our goal is to isolate the web request that returns the video of your choice. At this point, you can navigate to the video you want, and I'd probably press the "clear" button in the developer tools right before finally pressing the "Play" button on the video, so it can be one of the only transfers you see.

Identify the video transfer

It should be easy to recognize the video transfer: It has a mime type of video, it's a transfer that should take a lot longer than the rest, etc.

Once you've found it, click on the request name, which represents the HTTP request that was sent to the server for the video file.

Identify the Request URL

The first thing in the first tab of the request viewer should be the Request URL in the Headers tab. You can just copy this URL into another window/tab, and now if you right click the video, it should include a Save option, unlike when the whole thing was wrapped in Flash or whatever.

Enjoy!

Hi
I downloaded the following page videos. but the downloaded files do not played. how can I download the video existing in this page
https://www.brookstradingcourse.com/

@minsiam
Copy link

minsiam commented May 29, 2021

i just find ts files like media_1.ts or media_2.ts which are half parts of the video, but i want to download the full video!
how can i do it?

@xq8ed
Copy link

xq8ed commented Jun 12, 2021

@japhigu Thanks for the tip! I then found that using FFMpeg (for free) on the Mac Terminal command line worked perfectly to consolidate the tiny .ts files into one big mp4 video file. Example: ffmpeg -i http://embed.wistia.com/deliveries/blahBlahYadaYada.m3u8 -c copy -bsf:a aac_adtstoasc output.mp4 See: http://stackoverflow.com/questions/32528595/ffmpeg-mp4-from-http-live-streaming-m3u8-file

This worked! Thank you very much.

@MarkJThomas
Copy link

MarkJThomas commented Jul 25, 2021

Hiya, when I try to download I can't find ts files or m3u8 files in the Network tab, I just get a list of mp4 and audio files, can anyone suggest a way to download it please?
When I download and play one of the mp4 files it is green and fuzzy with no sound
Thanks in advance
Screenshot 2021-07-25 at 17 44 43

@jeppoo1
Copy link

jeppoo1 commented Aug 2, 2021

@MarkJThomas sometimes you have to reload the video page on your browser several times for the m3u8 and others to appear.

@steffiland
Copy link

Great, thx! No need to install a shitty snipping vid-dl-addon into chrome :)

@ari-xb
Copy link

ari-xb commented May 4, 2022

as @jeppoo1 mentioned, you need the very start(section) network request of the video/streaming.
a quick method that worked for me (Chrome & OSX) was to use the URL.m3u8 and simply rename it from .m3u8 to .mp4, hit enter, vid loads, right click 'save video as' or in video menu click download, done.

I also found the first video 'section' network request named "seg-1-v1-a1.ts" (look for something similar), clicked on it.
Right at the top "Request URL: https://embed-fastly.wistia.com/deliveries/sjdnajn3dk4i4usesfsjks.m3u8/seg-1-v1-a1.ts"
I put the above URL up to the ".m3u8" in the browser and it downloaded the .m3u8 (playlist) file, if you want it, or like I said at this point, rename it to .mp4

@Thedeur
Copy link

Thedeur commented May 16, 2022

Is there a way to download Sharepoint videos? Teams recordings specifically, which get saved to Sharepoint for only 3 weeks. I've found my way to this thread from Google, the current methods don't work.

@bintarakusuma
Copy link

Hi... have u found the method of dnlding nd decryption... I am searching fr this too rental mobil jogja...

@PetrusVermaak
Copy link

Have not found a working solution yet.

@mitzvahguy
Copy link

how to down load HTTP live stream HLS video/m3u8 streaming video/f4v embedded video step by step 1.down load chrome web extension from search on crome web store hls down loader. 2.open streaming video . the hls down loader will grab the root filelink on server. copy it.

or other option is developer tools>network>clear then press play tab . Just after video starts the developer tool window will show link to initial root file on server which ends with playlist on it .just like https://*****************.com/vod/definst/1_708.f4v/playlist.m3u8.

.3.install m3u8loader by yourok 1.2.146 on android phone from play store .or search web for it. 4. insert above link which ends with playlist.m3u8 in android soft ware at url link. click add .if web site of streaming media has user name and password ,them log in to it on android chrome browser. 5.press down load .It will down load file with out breaks as mp4 file . It will not have .ts extensions as multiple broken files it has resume function if link is broken 6. if you have to down load multiple file from same web site change number before .f4v and after 1_ in the link. you can get that number by moving cursor on to file that you want to download.

please let me know any problem

Thank you @dineshvjoshi -- your explanation of how to capture .m3u8 streaming video file type from BoxCast using HLS Downloader worked perfectly for me yesterday (March 2nd, 2023). I was able to capture the footage of a funeral service of a friend; thank you.

@grimes1
Copy link

grimes1 commented May 14, 2023

Downloading videos from certain websites can be stressful. It's almost the same situation with downloading Spotify playlists without premium.

@zafarnayab
Copy link

zafarnayab commented May 20, 2023

@danfinlay What if request are sent in segments, As in my case video request are sent in multiple segments.

Screenshot 2023-05-20 at 11 13 47 PM

@zaphod77
Copy link

zaphod77 commented Nov 13, 2023

99% of the time, if it's sent in segments, it's because there's an m3u8 file with a list of segments. the trick is to grab that file, which will tell you which segment is which. :) there are extensions to do that.

There is stuff this does NOT work on.

Specifically, there are cases where there IS no direct URL, and the only access to the video file is through a script that verifies both referrer and a one time token created when the player is opened. The player autoloads the url so by the time it's in network resources, the token is already used, and trying to copy the link doesn't work. even if you try to view source, by the time you see the token, it's too late, because the token is only valid to start the stream for a few seconds, even if it wasn't activated immediately.

How do you beat this one, and force the browser to download instead of play?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment