Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save beesuns/b8e9ebcea10f3a1f14dd914ae2ce8ffb to your computer and use it in GitHub Desktop.

Select an option

Save beesuns/b8e9ebcea10f3a1f14dd914ae2ce8ffb to your computer and use it in GitHub Desktop.

Revisions

  1. @danfinlay danfinlay revised this gist Jul 24, 2019. 1 changed file with 6 additions and 6 deletions.
    12 changes: 6 additions & 6 deletions How to download streaming video.md
    Original file line number Diff line number Diff line change
    @@ -1,8 +1,8 @@
    #How to download streaming video
    # 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
    ## 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:

    @@ -11,18 +11,18 @@ From the page where you want to download some things, go into your chrome menu t
    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
    ## 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
    ## 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
    ## 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!
    ## Enjoy!
  2. @danfinlay danfinlay renamed this gist Jul 24, 2019. 1 changed file with 0 additions and 0 deletions.
  3. @FlySwatter FlySwatter created this gist Nov 7, 2013.
    28 changes: 28 additions & 0 deletions How to download streaming video
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,28 @@
    #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!