VideoHelp Forum


Try StreamFab Downloader and download from Netflix, Amazon, Youtube! Or Try DVDFab and copy Blu-rays! or rip iTunes movies!


Try StreamFab Downloader and download streaming video from Youtube, Netflix, Amazon! Download free trial.


+ Reply to Thread
Results 1 to 27 of 27
Thread
  1. Is there a way to download from xtremestream? Stream detector does not detect the video url.
    Quote Quote  
  2. Originally Posted by Angel_Cyclops View Post
    For future ref, how?
    You need to intercept traffic, for example with HTTP Toolkit.
    By analyzing the traffic, you will stumble upon an m3u8.

    Image
    [Attachment 67129 - Click to enlarge]


    You get the referer, you get the link, and feed those to ytdlp

    Code:
    ytdlp.exe --add-header "referer: https://magixz.xtremestream.co/player/index.php?data=c2c9d7d218d4e41755900f40ac783704" "https://magixz.xtremestream.co/player/load_m3u8_xtremestream.php?data=c2c9d7d218d4e41755900f40ac783704&q=480"
    ...aaand boom!

    Image
    [Attachment 67130 - Click to enlarge]
    Quote Quote  
  3. Originally Posted by [ss]vegeta View Post
    Originally Posted by Angel_Cyclops View Post
    For future ref, how?
    You need to intercept traffic, for example with HTTP Toolkit.
    By analyzing the traffic, you will stumble upon an m3u8.

    Image
    [Attachment 67129 - Click to enlarge]


    You get the referer, you get the link, and feed those to ytdlp

    Code:
    ytdlp.exe --add-header "referer: https://magixz.xtremestream.co/player/index.php?data=c2c9d7d218d4e41755900f40ac783704" "https://magixz.xtremestream.co/player/load_m3u8_xtremestream.php?data=c2c9d7d218d4e41755900f40ac783704&q=480"
    ...aaand boom!

    Image
    [Attachment 67130 - Click to enlarge]
    Thanks a lot. Any idea why speed is so low when my dl speed is around 10-12 mbps
    Image Attached Thumbnails Click image for larger version

Name:	ytdlp.jpg
Views:	1960
Size:	210.1 KB
ID:	67135  

    Quote Quote  
  4. Originally Posted by Angel_Cyclops View Post
    Pinoy?
    Just use this mpd instead directly from vivamax:
    https://d1qfpvemzhsbpm.cloudfront.net/video/T97608_FF_LM_SHOOT SHOOT/dash/hd.mpd

    I'll pm you the key. If you don't know how to decrypt manually, just search here for the tutorials


    YDLP Command:

    ydlp --allow-u "https://d1qfpvemzhsbpm.cloudfront.net/video/T97608_FF_LM_SHOOT%20SHOOT/dash/hd.mpd"
    Image
    [Attachment 67136 - Click to enlarge]
    Quote Quote  
  5. Originally Posted by zackmark29 View Post
    Originally Posted by Angel_Cyclops View Post
    Pinoy?
    Just use this mpd instead directly from vivamax:
    https://d1qfpvemzhsbpm.cloudfront.net/video/T97608_FF_LM_SHOOT SHOOT/dash/hd.mpd

    I'll pm you the key. If you don't know how to decrypt manually, just search here for the tutorials


    YDLP Command:

    ydlp --allow-u "https://d1qfpvemzhsbpm.cloudfront.net/video/T97608_FF_LM_SHOOT%20SHOOT/dash/hd.mpd"
    Image
    [Attachment 67136 - Click to enlarge]
    Thanks but Im not from the region and cant get a subscription for vivamax. So I dont think the mpd will work. And there are other xtremestream links(pinoy and non-pinoy) that I need as well.

    Speaking of which, is there anyway to subscribe to vivamax from outside the Philippines?
    Last edited by Angel_Cyclops; 7th Oct 2022 at 18:54.
    Quote Quote  
  6. Originally Posted by Angel_Cyclops View Post
    Originally Posted by zackmark29 View Post
    Originally Posted by Angel_Cyclops View Post
    Pinoy?
    Just use this mpd instead directly from vivamax:
    https://d1qfpvemzhsbpm.cloudfront.net/video/T97608_FF_LM_SHOOT SHOOT/dash/hd.mpd

    I'll pm you the key. If you don't know how to decrypt manually, just search here for the tutorials


    YDLP Command:

    ydlp --allow-u "https://d1qfpvemzhsbpm.cloudfront.net/video/T97608_FF_LM_SHOOT%20SHOOT/dash/hd.mpd"
    Image
    [Attachment 67136 - Click to enlarge]
    Thanks but Im not from the region so I cant get a subscription for vivamax. So I dont think the mpd will work. And pinoy is one, there are other xtremestram links(non-pinoy) that I need as well.

    Speaking of which, is there anyway to subscribe to vivamax from outside the Philippines?
    MPD will work as shown in the screenshot above without any other required arguments.
    I guess you can subscribe even outside the Philippines.

    If you wanna try to download other video, just use fiddler to get the m3u8 url.
    Because that site disabling/blocking Chrome Dev Tool from opening.
    Last edited by zackmark29; 7th Oct 2022 at 19:10.
    Quote Quote  
  7. Add this option: "N8"


    Code:
    yt-dlp -N8 --add-header "referer: https://magixz.xtremestream.co/player/index.php?data=c2c9d7d218d4e41755900f40ac783704" "https://magixz.xtremestream.co/player/load_m3u8_xtremestream.php?data=c2c9d7d218d4e41755900f40ac783704&q=1080"
    Quote Quote  
  8. Can anyone help me to get key for this

    https://www.durgasoftonline.com/s/preview/courses/Core-Java

    It's in k/timestamp and it's encrypted already convert this into hex also it's not 32 character kindly help for this!!!
    Quote Quote  
  9. Originally Posted by cedric8528 View Post
    Add this option: "N8"


    Code:
    yt-dlp -N8 --add-header "referer: https://magixz.xtremestream.co/player/index.php?data=c2c9d7d218d4e41755900f40ac783704" "https://magixz.xtremestream.co/player/load_m3u8_xtremestream.php?data=c2c9d7d218d4e41755900f40ac783704&q=1080"
    Thanks. Whats this command "N8"?
    Quote Quote  
  10. Originally Posted by Angel_Cyclops View Post
    Thanks. Whats this command "N8"?
    Multi-threaded fragment downloads: Download multiple fragments of m3u8/mpd videos in parallel. Use --concurrent-fragments (-N) option to set the number of threads used

    and there should be a space I think between N and the number
    Quote Quote  
  11. Originally Posted by [ss]vegeta View Post
    Originally Posted by Angel_Cyclops View Post
    Thanks. Whats this command "N8"?
    Multi-threaded fragment downloads: Download multiple fragments of m3u8/mpd videos in parallel. Use --concurrent-fragments (-N) option to set the number of threads used

    and there should be a space I think between N and the number
    Worked without space. Can the number be increased from 8 or thats the limit?
    Quote Quote  
  12. 32 is the max of threaded fragment downloads
    but not always a large number is proportionate to a high speed. depends on your connection and server traffic

    an alternative is aria2c with this code: --external-downloader aria2c
    Quote Quote  
  13. ..
    Last edited by Angel_Cyclops; 7th Nov 2022 at 22:01. Reason: resolved
    Quote Quote  
  14. Member
    Join Date
    Nov 2022
    Location
    Orlando, Florida USA
    Search Comp PM
    I love what you guys did here, it helped me a LOT. However. I acquired the video and audio separately using the above methods however ydlp confirmed DRM protected. How do I decrypt this so its viewable and able to hear the audio? The video is distorted, and audio has nothing of sound.

    Look forward to your replies/assistance.
    Quote Quote  
  15. Originally Posted by Snoopy6986 View Post
    I love what you guys did here, it helped me a LOT. However. I acquired the video and audio separately using the above methods however ydlp confirmed DRM protected. How do I decrypt this so its viewable and able to hear the audio? The video is distorted, and audio has nothing of sound.

    Look forward to your replies/assistance.
    From the same site? I download the latest from there without a glitch using the same method. Post the link here or create a new thread.
    Quote Quote  
  16. Member
    Join Date
    Nov 2022
    Location
    Orlando, Florida USA
    Search Comp PM
    Originally Posted by Angel_Cyclops View Post
    Originally Posted by Snoopy6986 View Post
    I love what you guys did here, it helped me a LOT. However. I acquired the video and audio separately using the above methods however ydlp confirmed DRM protected. How do I decrypt this so its viewable and able to hear the audio? The video is distorted, and audio has nothing of sound.

    Look forward to your replies/assistance.
    From the same site? I download the latest from there without a glitch using the same method. Post the link here or create a new thread.
    Link to it: https://asianpinay.com/secrets-of-a-nympho-2022-s01e05-post-hate-share-vivamax-season-...ull-episode-5/

    The actual drood link here
    Quote Quote  
  17. Originally Posted by Snoopy6986 View Post
    Originally Posted by Angel_Cyclops View Post
    Originally Posted by Snoopy6986 View Post
    I love what you guys did here, it helped me a LOT. However. I acquired the video and audio separately using the above methods however ydlp confirmed DRM protected. How do I decrypt this so its viewable and able to hear the audio? The video is distorted, and audio has nothing of sound.

    Look forward to your replies/assistance.
    From the same site? I download the latest from there without a glitch using the same method. Post the link here or create a new thread.
    Link to it: https://asianpinay.com/secrets-of-a-nympho-2022-s01e05-post-hate-share-vivamax-season-...ull-episode-5/

    The actual drood link here
    Works fine:
    Code:
    yt-dlp -N 9 --add-header "referer: https://george.xtremestream.co/player/index.php?data=dc377cb284d45f3425140456dd4cceef" "https://george.xtremestream.co/player/load_m3u8_xtremestream.php?data=dc377cb284d45f3425140456dd4cceef&q=1080" -o "output.mp4"
    Quote Quote  
  18. can't seem to make work on my end. anybody can help?

    command
    yt-dlp --add-header "referer:https://gargar.xtremestream.xyz/player/index.php?data=b75baac06e4f6bc7b70b18638c0c6e6" "https://gargar.xtremestream.xyz/player/load_m3u8_xtremestream.php?data=b75baac06e4f6bc7b7 0b18638c0c6e6"

    error message
    [generic] Extracting URL: https://gargar.xtremestream.xyz/player/load_m3u8_xtremestream.php?data=b75baac06e4f6bc...70b18638c0c6e6
    [generic] load_m3u8_xtremestream: Downloading webpage
    ERROR: [generic] Unable to download webpage: HTTP Error 500: Internal Server Error (caused by <HTTPError 500: Internal Server Error>); please report this issue on https://github.com/yt-dlp/yt-dlp/issues?q= , filling out the appropriate issue template. Confirm you are on the latest version using yt-dlp -U
    Quote Quote  
  19. I keep getting certificate errors with ytdlp trying to download from the same site as OP (asiapinay). I've tried the workaround commands but no luck. This is the m3u8: Referer: https://giogio.xtremestream.xyz/player/index.php?data=7b670d553471ad0fd7491c75bad587ff

    this is the error i get running ytdlp:
    [generic] Extracting URL: https://giogio.xtremestream.xyz/player/index.php?data=7b670d553471ad0fd7491c75bad587ff
    [generic] index: Downloading webpage
    ERROR: [generic] Unable to download webpage: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1131) (caused by CertificateVerifyError('[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1131)')); please report this issue on https://github.com/yt-dlp/yt-dlp/issues?q= , filling out the appropriate issue template. Confirm you are on the latest version using yt-dlp -U

    and this is the workaround error:
    c:\>yt-dlp --no-check-certificates https://giogio.xtremestream.xyz/player/index.php?data=7b670d553471ad0fd7491c75bad587ff
    [generic] Extracting URL: https://giogio.xtremestream.xyz/player/index.php?data=7b670d553471ad0fd7491c75bad587ff
    [generic] index: Downloading webpage
    ERROR: [generic] Unable to download webpage: HTTP Error 404: Not Found (caused by <HTTPError 404: Not Found>)
    Quote Quote  
  20. yt-dlp "https://gargar.xtremestream.xyz/player/load_m3u8_xtremestream.php?data=757ef3cdc6e8929166 4b0033ac007cfa"
    [generic] Extracting URL: https://gargar.xtremestream.xyz/player/load_m3u8_xtremestream.php?data=757ef3cdc6e89291664b0033ac007cfa
    [generic] load_m3u8_xtremestream: Downloading webpage
    WARNING: [generic] Falling back on generic information extractor
    [generic] load_m3u8_xtremestream: Downloading m3u8 information
    [generic] load_m3u8_xtremestream: Checking m3u8 live status
    [info] load_m3u8_xtremestream: Downloading 1 format(s): 8000
    [hlsnative] Downloading m3u8 manifest
    [hlsnative] Total fragments: 1026
    [download] Destination: load_m3u8_xtremestream [load_m3u8_xtremestream].mp4
    [download] 0.5% of ~ 299.31MiB at 330.22KiB/s ETA 11:29 (frag 2/1026)
    ...
    Quote Quote  
  21. Could you check this one?
    Code:
    yt-dlp --add-header "referer: https://infi.xtremestream.co/player/index.php?data=c02f9de3c2f3040751818aacc7f60b74" "https://infi.xtremestream.co/player/load_m3u8_xtremestream.php?data=c02f9de3c2f3040751818aacc7f60b74&q=720" -o "output.mp4"
    Am trying to download but it is not working
    Quote Quote  
  22. yt-dlp "https://infi.xtremestream.co/player/load_m3u8_xtremestream.php?data=c02f9de3c2f3040751 818aacc7f60b74&q=720"
    [generic] Extracting URL: https://infi.xtremestream.co/player/load_m3u8_xtremestream.php?data=c02f9de3c2f3040751...c7f60b74&q=720
    [generic] load_m3u8_xtremestream: Downloading webpage
    WARNING: [generic] Falling back on generic information extractor
    [generic] load_m3u8_xtremestream: Downloading m3u8 information
    [generic] load_m3u8_xtremestream: Checking m3u8 live status
    [info] load_m3u8_xtremestream: Downloading 1 format(s): 0
    [hlsnative] Downloading m3u8 manifest
    [hlsnative] Total fragments: 1493
    [download] Destination: load_m3u8_xtremestream [load_m3u8_xtremestream].mp4
    [download] 0.5% of ~ 401.71MiB at 284.92KiB/s ETA 24:48 (frag 6/1493)
    ...
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!