VideoHelp Forum

+ Reply to Thread
Page 153 of 153
FirstFirst ... 53 103 143 151 152 153
Results 4,561 to 4,569 of 4569
Thread
  1. Member
    Join Date
    Feb 2006
    Location
    United States
    Search Comp PM
    Originally Posted by 7PWpNxx5 View Post
    just use yt-dlp & the firefox browser addon called "the stream detector" use it to grab the MPD
    and download the video.
    Quote Quote  
  2. Nice work and fast as always october262. Thank you a million times
    Quote Quote  
  3. Can someone help me with this one ?
    https://tvvision.no/playepisode.php?ep=402051

    Thanks in advance
    Quote Quote  
  4. there is a "new" way to get these now, though i have been using it for a while now. if you use VLC, you can just load the m3u8 link into it, and save the video locally.
    to get that m3u8 link, you only need to right-click the page with the video, and click Inspect. then go to the Network tab, and look at the entries in a subtab named XHR. when you first load the page, it should be mostly empty. if not, just clear it. but as soon as you click play, pause it again right away, and the FIRST entry at the top should be the m3u8 file link. it is auto-generated with a hash authorization code which expires, so i cannot just give it to you, but if you just copy that link, then open VLC, and click Media > Convert/Save > Network , then Paste the URL into the field, and click the Convert/Save button at the bottom, it will start playing WITHOUT displaying anything. THIS IS NORMAL! it will play very quickly while it saves the file locally. don't interrupt it or do anything else on your PC. when it is done, you should be able to play the file in VLC to test it
    P.S., make sure that when you choose what format to save it in, you choose MP4, and have it copy the video and audio without re-encoding it. This will result in the best quality and fastest download.
    darkflux
    Quote Quote  
  5. Quote

    darkflux "there is a "new" way to get these now...."
    AND LZAA.
    \Quote

    Thanks a million times for all the hard work. I had som problem with my PC, but this fixed it AND i LEARNED A LOT

    AND

    HAPPY AND PEACEFULL Christmas
    Last edited by 7PWpNxx5; 3rd Dec 2022 at 14:39.
    Quote Quote  
  6. Hi guys, any ideas on how to download either the video or entire playlist from here? submeta/courses/introduction
    Uses cloudflare - can get the dash-video link, but the file downloaded is encrypted (?) - https://150vod-adaptive.akamaized.net/exp=167....~acl=%2Fdbbb38be-cdfe-45b8-9~hmac=850...dash-video.mp4
    Update: Found that it is hosted on Vimeo; one way is to get the link above and download the .mpd which works - any other solutions you guys use?
    Last edited by Restricted; 15th Jan 2023 at 02:45.
    Quote Quote  
  7. streamlink "https://customer-3j2pofw9vdbl9sfy.cloudflarestream.com/533e172b85b64d865a9c9f33d4a4f4d0/manifest/video.mpd?parentOrigin=https%3A%2F%2Fsubmeta.io" best -o video.ts
    Quote Quote  
  8. Downloading the long way



    filter on init
    Code:
    https://64vod-adaptive.akamaized.net/exp=1673550148~acl=%2Fcb840b23-57b2-4070-95e2-c5157697ac7f%2F%2A~hmac=eb2bfe531e27ceaec561742deee5726ab817322b143b9e87ab80d9b9f2ec8de8/cb840b23-57b2-4070-95e2-c5157697ac7f/sep/video/bdd0bcde,baf59356,d03af824,ae35702b,94eb4088/audio/ad3393de,e34ccf8d/master.json?query_string_ranges=1&base64_init=1

    look call :
    video options : bdd0bcde,baf59356,d03af824,ae35702b,94eb4088
    audio options : ad3393de,e34ccf8d


    look at video url call in dev tools
    Code:
    https://64vod-adaptive.akamaized.net/exp=1673550148~acl=%2Fcb840b23-57b2-4070-95e2-c5157697ac7f%2F%2A~hmac=eb2bfe531e27ceaec561742deee5726ab817322b143b9e87ab80d9b9f2ec8de8/cb840b23-57b2-4070-95e2-c5157697ac7f/parcel/video/baf59356.mp4?r=dXM%3D&range=1634-163801

    look at audio url call in dev tools
    Code:
    https://64vod-adaptive.akamaized.net/exp=1673550148~acl=%2Fcb840b23-57b2-4070-95e2-c5157697ac7f%2F%2A~hmac=eb2bfe531e27ceaec561742deee5726ab817322b143b9e87ab80d9b9f2ec8de8/cb840b23-57b2-4070-95e2-c5157697ac7f/parcel/audio/e34ccf8d.mp4?r=dXM%3D&range=1635-75296


    now consider the range parameters .... they start at 0 and the ending parameter has to be determined


    Search the response on the master.json call and seek the final range response for baf59356 and e34ccf8d


    baf59356.mp4?r=dXM%3D\u0026range=10021320-10133343
    e34ccf8d.mp4?r=dXM%3D\u0026range=4641845-4700234


    download the audio
    Code:
    https://64vod-adaptive.akamaized.net/exp=1673550148~acl=%2Fcb840b23-57b2-4070-95e2-c5157697ac7f%2F%2A~hmac=eb2bfe531e27ceaec561742deee5726ab817322b143b9e87ab80d9b9f2ec8de8/cb840b23-57b2-4070-95e2-c5157697ac7f/parcel/audio/e34ccf8d.mp4?r=dXM%3D&range=0-4700234

    download the video
    Code:
    https://64vod-adaptive.akamaized.net/exp=1673550148~acl=%2Fcb840b23-57b2-4070-95e2-c5157697ac7f%2F%2A~hmac=eb2bfe531e27ceaec561742deee5726ab817322b143b9e87ab80d9b9f2ec8de8/cb840b23-57b2-4070-95e2-c5157697ac7f/parcel/video/baf59356.mp4?r=dXM%3D&range=0-10133343
    Mux the two


    Code:
    ffmpeg -i "video.mp4" -i "audio.mp4" -c copy "final.mp4"
    Quote Quote  



Similar Threads