VideoHelp Forum





Try StreamFab Downloader and download streaming video from Netflix, Amazon!



+ Reply to Thread
Results 1 to 28 of 28
  1. hi

    This issue frequently occurs with videos that begin with advertisements

    I face this issue
    Code:
    Non-monotonic DTS; This may result in incorrect timestamps in the output file
    Tried with widevineproxy2 and failed, but with videos that doesn't start with ads works fine

    Here is the link
    https://starzplay.com/en/watch/movies/king-kong/740203048112

    This site is partially paid, the content I need is FREE for everyone (no need of an account)

    Appreciate any help guys
    Quote Quote  
  2. I use this application to download, but it's up to you to configure the format to use in the command.
    https://github.com/Ingan121/Vineless/releases

    Image
    [Attachment 91047 - Click to enlarge]
    Quote Quote  
  3. Originally Posted by sesamap159 View Post
    I use this application to download, but it's up to you to configure the format to use in the command.
    https://github.com/Ingan121/Vineless/releases

    Image
    [Attachment 91047 - Click to enlarge]
    I used vineless as well but same result
    try downloading video with ads like the one I posted
    https://starzplay.com/en/watch/movies/king-kong/740203048112
    Quote Quote  
  4. Check if you have the latest ffmpeg update, N_m3u8DL-RE ...ETC and try again, you should no longer have this message regarding audio & video conversion.
    Quote Quote  
  5. Here's the Python code to get the latest ffmpeg update:
    Code:
    import requests
    import zipfile
    import os
    import shutil
    import sys
    
    url = "https://github.com/BtbN/FFmpeg-Builds/releases/latest/download/ffmpeg-master-latest-win64-gpl.zip"
    
    tools_path = os.path.dirname(os.path.abspath(__file__))
    zip_path = os.path.join(tools_path, "ffmpeg.zip")
    
    # --- Download with progress ---
    print("Downloading FFmpeg...")
    
    response = requests.get(url, stream=True)
    response.raise_for_status()
    
    total_size = int(response.headers.get('content-length', 0))
    chunk_size = 8192
    downloaded = 0
    
    with open(zip_path, "wb") as f:
        for chunk in response.iter_content(chunk_size=chunk_size):
            if chunk:
                f.write(chunk)
                downloaded += len(chunk)
                if total_size > 0:
                    percent = downloaded * 100 // total_size
                    # Overwrite line in console
                    sys.stdout.write(f"\rProgress: {percent}%")
                    sys.stdout.flush()
    
    print("\nDownload completed.")
    
    # --- Extract ffmpeg.exe ---
    print("Extracting ffmpeg.exe...")
    with zipfile.ZipFile(zip_path) as z:
        ffmpeg_zip_path = None
        for name in z.namelist():
            if name.endswith("bin/ffmpeg.exe"):
                z.extract(name, tools_path)
                ffmpeg_zip_path = name
                break
    
    if not ffmpeg_zip_path:
        raise RuntimeError("ffmpeg.exe not found in the ZIP")
    
    src = os.path.join(tools_path, ffmpeg_zip_path)
    dst = os.path.join(tools_path, "ffmpeg.exe")
    os.replace(src, dst)
    
    print("Extraction completed.")
    
    # --- Cleanup ---
    top_folder = ffmpeg_zip_path.split("/")[0]
    shutil.rmtree(os.path.join(tools_path, top_folder), ignore_errors=True)
    os.remove(zip_path)
    
    print("Cleanup completed.")
    print(f"FFmpeg is ready: {dst}")
    Quote Quote  
  6. Originally Posted by sesamap159 View Post
    Here's the Python code to get the latest ffmpeg update:
    Code:
    import requests
    import zipfile
    import os
    import shutil
    import sys
    
    url = "https://github.com/BtbN/FFmpeg-Builds/releases/latest/download/ffmpeg-master-latest-win64-gpl.zip"
    
    tools_path = os.path.dirname(os.path.abspath(__file__))
    zip_path = os.path.join(tools_path, "ffmpeg.zip")
    
    # --- Download with progress ---
    print("Downloading FFmpeg...")
    
    response = requests.get(url, stream=True)
    response.raise_for_status()
    
    total_size = int(response.headers.get('content-length', 0))
    chunk_size = 8192
    downloaded = 0
    
    with open(zip_path, "wb") as f:
        for chunk in response.iter_content(chunk_size=chunk_size):
            if chunk:
                f.write(chunk)
                downloaded += len(chunk)
                if total_size > 0:
                    percent = downloaded * 100 // total_size
                    # Overwrite line in console
                    sys.stdout.write(f"\rProgress: {percent}%")
                    sys.stdout.flush()
    
    print("\nDownload completed.")
    
    # --- Extract ffmpeg.exe ---
    print("Extracting ffmpeg.exe...")
    with zipfile.ZipFile(zip_path) as z:
        ffmpeg_zip_path = None
        for name in z.namelist():
            if name.endswith("bin/ffmpeg.exe"):
                z.extract(name, tools_path)
                ffmpeg_zip_path = name
                break
    
    if not ffmpeg_zip_path:
        raise RuntimeError("ffmpeg.exe not found in the ZIP")
    
    src = os.path.join(tools_path, ffmpeg_zip_path)
    dst = os.path.join(tools_path, "ffmpeg.exe")
    os.replace(src, dst)
    
    print("Extraction completed.")
    
    # --- Cleanup ---
    top_folder = ffmpeg_zip_path.split("/")[0]
    shutil.rmtree(os.path.join(tools_path, top_folder), ignore_errors=True)
    os.remove(zip_path)
    
    print("Cleanup completed.")
    print(f"FFmpeg is ready: {dst}")

    it didnt work
    thanks a lot for your time though
    if there is any other solution please share
    Quote Quote  
  7. Code:
     Title: King.Kong.1976
    MPD URL: https://mena-jit-avod-cdn-lb.starzplayarabia.com/JIT/SPA/ingest-canal-avod/AVODKINGKONGY1976M/42c7c920e57ec0ab108c27bdbd59f0f3/AVODKINGKONGY1976M.ism/AVODKINGKONGY1976M.mpd
    Keys:
      9cb5df6e052af8e96b079810a396539f:63dea126b3e8f55d4ccf3ad9e8d0f630
    use this
    Quote Quote  
  8. Originally Posted by z1269925944 View Post
    Code:
     Title: King.Kong.1976
    MPD URL: https://mena-jit-avod-cdn-lb.starzplayarabia.com/JIT/SPA/ingest-canal-avod/AVODKINGKONGY1976M/42c7c920e57ec0ab108c27bdbd59f0f3/AVODKINGKONGY1976M.ism/AVODKINGKONGY1976M.mpd
    Keys:
      9cb5df6e052af8e96b079810a396539f:63dea126b3e8f55d4ccf3ad9e8d0f630
    use this
    amazingly it worked
    thank you so much z1269925944
    and thank you sesamap159 for your time
    Last edited by CopyPasteDev; 30th Jan 2026 at 21:30.
    Quote Quote  
  9. Originally Posted by z1269925944 View Post
    Code:
     Title: King.Kong.1976
    MPD URL: https://mena-jit-avod-cdn-lb.starzplayarabia.com/JIT/SPA/ingest-canal-avod/AVODKINGKONGY1976M/42c7c920e57ec0ab108c27bdbd59f0f3/AVODKINGKONGY1976M.ism/AVODKINGKONGY1976M.mpd
    Keys:
      9cb5df6e052af8e96b079810a396539f:63dea126b3e8f55d4ccf3ad9e8d0f630
    use this
    How did you get it?
    Quote Quote  
  10. Originally Posted by kim1406 View Post
    Originally Posted by z1269925944 View Post
    Code:
     Title: King.Kong.1976
    MPD URL: https://mena-jit-avod-cdn-lb.starzplayarabia.com/JIT/SPA/ingest-canal-avod/AVODKINGKONGY1976M/42c7c920e57ec0ab108c27bdbd59f0f3/AVODKINGKONGY1976M.ism/AVODKINGKONGY1976M.mpd
    Keys:
      9cb5df6e052af8e96b079810a396539f:63dea126b3e8f55d4ccf3ad9e8d0f630
    use this
    How did you get it?
    Use a script
    Quote Quote  
  11. Originally Posted by kim1406 View Post
    Originally Posted by z1269925944 View Post
    Code:
     Title: King.Kong.1976
    MPD URL: https://mena-jit-avod-cdn-lb.starzplayarabia.com/JIT/SPA/ingest-canal-avod/AVODKINGKONGY1976M/42c7c920e57ec0ab108c27bdbd59f0f3/AVODKINGKONGY1976M.ism/AVODKINGKONGY1976M.mpd
    Keys:
      9cb5df6e052af8e96b079810a396539f:63dea126b3e8f55d4ccf3ad9e8d0f630
    use this
    How did you get it?
    After z1269925944’s help, I looked into the network traffic for that MPD and found it inside the streamingurls link, which was hidden in the response,
    once you have that link, you can extract its JSON and find the MPD URL using a script like z1269925944, or any other method you prefer
    BTW this approach is especially useful for videos with ads and for non-ad videos the correct MPD link is usually visible directly in the network traffic,
    I learned a lot from both z1269925944 (how to dig deeper in the Network tab) and sesamap159 (how to update certain binaries easily with scripts)
    Thanks to everyone and I hope this helps someone else as well
    Quote Quote  
  12. Hello again.. faced another problem with the same site
    https://starzplay.com/en/admn/series/in-the-arena-serena-williams/725158952142
    can someone please check the link and see if its possible to be downloaded
    vineless & widevineproxy2 couldn't pick a key
    I tried the manual way by extracting everything needed for keys still no keys generated by getwidevinekeys

    details for s01e01
    Code:
    mpd url: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/1b66a2a0e2fd4d56aac9e74abeaf80c5/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    pssh: AAAAQnBzc2gAAAAA7e+LqXnWSs6jyCfc1R0h7QAAACIiGkFETU5CQVlUQUhMSVkyMDI0UzAxRTAwMUFSSOPclZsG
    license url: https://licensing.bitmovin.com/licensing
    Headers: {
      "accept": "*/*",
      "dnt": "1",
      "origin": "https://starzplay.com",
      "referer": "https://starzplay.com/",
      "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36"
    }
    Quote Quote  
  13. its not ready yet
    Image
    [Attachment 91067 - Click to enlarge]


    Code:
    8 Episodes Found.
    Enter episode number or Enter 0 for all: 0
    
    
    Episode 7
    [MPD]: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/0c29932b5cb9455d828c935cbda27713/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    [KEY]: 114d1904f4d10b335bcbe85d0a62f721:0ebb3c3078b56bddcecf6e4265a3873d
    
    
    Episode 5
    [MPD]: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/26b8de0203b54632b83165de7c9ef33e/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    [KEY]: b2271daf2171a68b958d7d2a6ed74d21:ffa4520246d66e96a7e9c527d1c8f48b
    
    
    Episode 6
    [MPD]: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/4f52d9782d41405d83a86f3874b84cbb/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    [KEY]: b6b74379fa82ed3a40e5f374308a771d:85c2656abf1f4c0ced2e251f6943de46
    
    
    Episode 4
    [MPD]: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/6951a807957148c3a536f4d12fc6b1be/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    [KEY]: 911a4471b3ead6e15c2191fba8854315:b77ae92602bb1e871804267195ef3d22
    
    
    Episode 3
    [MPD]: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/69a52ff293b945c990175be53a937954/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    [KEY]: 7f3d1359c8e0562dd209d15415e9d2e0:277d99c3ad519058c3fc1476c4bf6a96
    
    
    Episode 2
    [MPD]: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/6f4664658990446cb977e2c736558a61/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    [KEY]: 5218000ed535c73c0e6d01110c699426:404ca26275c135f64221550baf43455d
    
    
    Episode 1
    [MPD]: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/bad36a3e527e4ba4bec6609a08e90dff/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    [KEY]: 6e8392b1c7b4d6d07dff9430d7da9053:cfdebbf9d725a117d22dc3b8bd5affcf
    
    
    Episode 8
    [MPD]: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/ed31c5a0f4aa41ed961c8b0a043e89a5/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    [KEY]: ab7364f308154e64b15c6025e2f3a194:e1e9e2b9708f4ac3beb76bac59e39918
    All done
    Quote Quote  
  14. Originally Posted by imr_saleh View Post
    its not ready yet
    Image
    [Attachment 91067 - Click to enlarge]


    Code:
    8 Episodes Found.
    Enter episode number or Enter 0 for all: 0
    
    
    Episode 7
    [MPD]: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/0c29932b5cb9455d828c935cbda27713/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    [KEY]: 114d1904f4d10b335bcbe85d0a62f721:0ebb3c3078b56bddcecf6e4265a3873d
    
    
    Episode 5
    [MPD]: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/26b8de0203b54632b83165de7c9ef33e/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    [KEY]: b2271daf2171a68b958d7d2a6ed74d21:ffa4520246d66e96a7e9c527d1c8f48b
    
    
    Episode 6
    [MPD]: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/4f52d9782d41405d83a86f3874b84cbb/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    [KEY]: b6b74379fa82ed3a40e5f374308a771d:85c2656abf1f4c0ced2e251f6943de46
    
    
    Episode 4
    [MPD]: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/6951a807957148c3a536f4d12fc6b1be/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    [KEY]: 911a4471b3ead6e15c2191fba8854315:b77ae92602bb1e871804267195ef3d22
    
    
    Episode 3
    [MPD]: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/69a52ff293b945c990175be53a937954/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    [KEY]: 7f3d1359c8e0562dd209d15415e9d2e0:277d99c3ad519058c3fc1476c4bf6a96
    
    
    Episode 2
    [MPD]: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/6f4664658990446cb977e2c736558a61/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    [KEY]: 5218000ed535c73c0e6d01110c699426:404ca26275c135f64221550baf43455d
    
    
    Episode 1
    [MPD]: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/bad36a3e527e4ba4bec6609a08e90dff/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    [KEY]: 6e8392b1c7b4d6d07dff9430d7da9053:cfdebbf9d725a117d22dc3b8bd5affcf
    
    
    Episode 8
    [MPD]: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/ed31c5a0f4aa41ed961c8b0a043e89a5/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    [KEY]: ab7364f308154e64b15c6025e2f3a194:e1e9e2b9708f4ac3beb76bac59e39918
    All done
    Amazing now I'd like to ask you few things.. what do you mean by "it's not ready yet"
    other thing is what script do you use.. if its ok can you share it.. or at least point me to the right topic or direction
    thanks a lot imr_saleh SHOKRAN
    Quote Quote  
  15. you used wrong license url, so you failed, that's all.
    Quote Quote  
  16. Originally Posted by shellcmd View Post
    you used wrong license url, so you failed, that's all.
    I only got these 3 urls and tried them all & failed

    Code:
    url1: https://licensing.bitmovin.com/licensing
    url2: https://analytics-ingress-global.bitmovin.com/licensing
    url3: https://licensing.bitmovin.com/impression
    Would you please let me know what's the correct license url!
    I tried https://widevine-license.vudrm.tech/proxy as well but no keys yet

    thanks for your time
    Quote Quote  
  17. Originally Posted by shellcmd View Post
    but it didn't work for me because it needs x-vudrm-token in headers which was not available for the shows of ADMN (Abu Dhabi Media Network) since they've merged under starzplay now

    can you please have a look at the url
    https://starzplay.com/en/admn/series/in-the-arena-serena-williams/725158952142

    it would be really helpful if you could find that license url wiith x-vudrm-token

    thank shellcmd appreciate your time really
    Quote Quote  
  18. Member
    Join Date
    Dec 2021
    Location
    england
    Search Comp PM
    Originally Posted by CopyPasteDev View Post
    Originally Posted by shellcmd View Post
    but it didn't work for me because it needs x-vudrm-token in headers which was not available for the shows of ADMN (Abu Dhabi Media Network) since they've merged under starzplay now

    can you please have a look at the url
    https://starzplay.com/en/admn/series/in-the-arena-serena-williams/725158952142

    it would be really helpful if you could find that license url wiith x-vudrm-token

    thank shellcmd appreciate your time really
    I have try s01e01 they are no drm,
    Code:
    N_m3u8DL-RE -M format=mkv  "https://admn-avod-mpd-session.starzplayarabia.com/v1/dash/2175a7946e79ae4a0346d2f7e7a99e65769b1cae/ADMN-AVOD-DASH/out/v1/bad36a3e527e4ba4bec6609a08e90dff/318c7499e4a947fbae0d5413730b9ead/34d20f6c04c34dff8627832ac87f778a/index.mpd?aws.sessionId=713223fb-ac6a-4045-876b-cb6a12ad499b" --header "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36" --header "Referer: https://www.starzplay.com/" --save-name S01E01
    https://gofile.io/d/Mz1xa1
    Quote Quote  
  19. Yes, add "x-vudrm-token" or install "Widevine L3 Guesser"
    Image
    [Attachment 91076 - Click to enlarge]

    Image
    [Attachment 91074 - Click to enlarge]
    Last edited by forget; 1st Feb 2026 at 10:51.
    Quote Quote  
  20. Originally Posted by CopyPasteDev View Post
    Originally Posted by shellcmd View Post
    but it didn't work for me because it needs x-vudrm-token in headers which was not available for the shows of ADMN (Abu Dhabi Media Network) since they've merged under starzplay now

    can you please have a look at the url
    https://starzplay.com/en/admn/series/in-the-arena-serena-williams/725158952142

    it would be really helpful if you could find that license url wiith x-vudrm-token

    thank shellcmd appreciate your time really

    HTML Code:
    Title: In.the.Arena.Serena.Williams.S01E01.Episode.1
    MPD URL: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/bad36a3e527e4ba4bec6609a08e90dff/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    Keys:
      6e8392b1c7b4d6d07dff9430d7da9053:cfdebbf9d725a117d22dc3b8bd5affcf
    
    Title: In.the.Arena.Serena.Williams.S01E02.Episode.2
    MPD URL: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/6f4664658990446cb977e2c736558a61/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    Keys:
      5218000ed535c73c0e6d01110c699426:404ca26275c135f64221550baf43455d
    
    Title: In.the.Arena.Serena.Williams.S01E03.Episode.3
    MPD URL: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/69a52ff293b945c990175be53a937954/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    Keys:
      7f3d1359c8e0562dd209d15415e9d2e0:277d99c3ad519058c3fc1476c4bf6a96
    
    Title: In.the.Arena.Serena.Williams.S01E04.Episode.4
    MPD URL: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/6951a807957148c3a536f4d12fc6b1be/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    Keys:
      911a4471b3ead6e15c2191fba8854315:b77ae92602bb1e871804267195ef3d22
    
    Title: In.the.Arena.Serena.Williams.S01E05.Episode.5
    MPD URL: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/26b8de0203b54632b83165de7c9ef33e/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    Keys:
      b2271daf2171a68b958d7d2a6ed74d21:ffa4520246d66e96a7e9c527d1c8f48b
    
    Title: In.the.Arena.Serena.Williams.S01E06.Episode.6
    MPD URL: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/4f52d9782d41405d83a86f3874b84cbb/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    Keys:
      b6b74379fa82ed3a40e5f374308a771d:85c2656abf1f4c0ced2e251f6943de46
    
    Title: In.the.Arena.Serena.Williams.S01E07.Episode.7
    MPD URL: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/0c29932b5cb9455d828c935cbda27713/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    Keys:
      114d1904f4d10b335bcbe85d0a62f721:0ebb3c3078b56bddcecf6e4265a3873d
    
    Title: In.the.Arena.Serena.Williams.S01E08.Episode.8
    MPD URL: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/ed31c5a0f4aa41ed961c8b0a043e89a5/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    Keys:
      ab7364f308154e64b15c6025e2f3a194:e1e9e2b9708f4ac3beb76bac59e39918
    Quote Quote  
  21. Originally Posted by iamghost View Post
    Originally Posted by CopyPasteDev View Post
    Originally Posted by shellcmd View Post
    but it didn't work for me because it needs x-vudrm-token in headers which was not available for the shows of ADMN (Abu Dhabi Media Network) since they've merged under starzplay now

    can you please have a look at the url
    https://starzplay.com/en/admn/series/in-the-arena-serena-williams/725158952142

    it would be really helpful if you could find that license url wiith x-vudrm-token

    thank shellcmd appreciate your time really
    I have try s01e01 they are no drm,
    Code:
    N_m3u8DL-RE -M format=mkv  "https://admn-avod-mpd-session.starzplayarabia.com/v1/dash/2175a7946e79ae4a0346d2f7e7a99e65769b1cae/ADMN-AVOD-DASH/out/v1/bad36a3e527e4ba4bec6609a08e90dff/318c7499e4a947fbae0d5413730b9ead/34d20f6c04c34dff8627832ac87f778a/index.mpd?aws.sessionId=713223fb-ac6a-4045-876b-cb6a12ad499b" --header "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36" --header "Referer: https://www.starzplay.com/" --save-name S01E01
    https://gofile.io/d/Mz1xa1
    first of all thank you to take your time and download and upload it but i does not work for me
    I tried first as well without keys using n_m3u8dl-re / dash_mpd_cli / yt-dlp
    but all results encrypted video with error

    Image
    [Attachment 91077 - Click to enlarge]
    Quote Quote  
  22. Originally Posted by forget View Post
    Yes, add "x-vudrm-token" or install "Widevine L3 Guesser"
    Image
    [Attachment 91076 - Click to enlarge]

    Image
    [Attachment 91074 - Click to enlarge]
    I tried looking for the x-vudrm-token but couldn't find it
    can you send me the extension link to install it and thanks I will try it
    but I wonder if the guesser can snatch it then why can't I find it in the network tab..
    it should be there
    anyway thank you forget appreciate your time
    Quote Quote  
  23. Originally Posted by z1269925944 View Post
    Originally Posted by CopyPasteDev View Post
    Originally Posted by shellcmd View Post
    but it didn't work for me because it needs x-vudrm-token in headers which was not available for the shows of ADMN (Abu Dhabi Media Network) since they've merged under starzplay now

    can you please have a look at the url
    https://starzplay.com/en/admn/series/in-the-arena-serena-williams/725158952142

    it would be really helpful if you could find that license url wiith x-vudrm-token

    thank shellcmd appreciate your time really

    HTML Code:
    Title: In.the.Arena.Serena.Williams.S01E01.Episode.1
    MPD URL: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/bad36a3e527e4ba4bec6609a08e90dff/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    Keys:
      6e8392b1c7b4d6d07dff9430d7da9053:cfdebbf9d725a117d22dc3b8bd5affcf
    
    Title: In.the.Arena.Serena.Williams.S01E02.Episode.2
    MPD URL: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/6f4664658990446cb977e2c736558a61/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    Keys:
      5218000ed535c73c0e6d01110c699426:404ca26275c135f64221550baf43455d
    
    Title: In.the.Arena.Serena.Williams.S01E03.Episode.3
    MPD URL: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/69a52ff293b945c990175be53a937954/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    Keys:
      7f3d1359c8e0562dd209d15415e9d2e0:277d99c3ad519058c3fc1476c4bf6a96
    
    Title: In.the.Arena.Serena.Williams.S01E04.Episode.4
    MPD URL: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/6951a807957148c3a536f4d12fc6b1be/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    Keys:
      911a4471b3ead6e15c2191fba8854315:b77ae92602bb1e871804267195ef3d22
    
    Title: In.the.Arena.Serena.Williams.S01E05.Episode.5
    MPD URL: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/26b8de0203b54632b83165de7c9ef33e/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    Keys:
      b2271daf2171a68b958d7d2a6ed74d21:ffa4520246d66e96a7e9c527d1c8f48b
    
    Title: In.the.Arena.Serena.Williams.S01E06.Episode.6
    MPD URL: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/4f52d9782d41405d83a86f3874b84cbb/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    Keys:
      b6b74379fa82ed3a40e5f374308a771d:85c2656abf1f4c0ced2e251f6943de46
    
    Title: In.the.Arena.Serena.Williams.S01E07.Episode.7
    MPD URL: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/0c29932b5cb9455d828c935cbda27713/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    Keys:
      114d1904f4d10b335bcbe85d0a62f721:0ebb3c3078b56bddcecf6e4265a3873d
    
    Title: In.the.Arena.Serena.Williams.S01E08.Episode.8
    MPD URL: https://admn-jit-cdn-lb.starzplayarabia.com/out/v1/ed31c5a0f4aa41ed961c8b0a043e89a5/17f85724146c4604beb0d4ad57ce6c1a/ea03fe14c49f41418ce8adf9a62c489c/index.mpd
    Keys:
      ab7364f308154e64b15c6025e2f3a194:e1e9e2b9708f4ac3beb76bac59e39918
    seems like everyone is finding keys easily what did I do wrong here
    or do you guys have some kind of secret weapons
    thanks man imr_saleh already posted all links with their keys
    thanks for your time & effort
    Quote Quote  
  24. Forced playback to bypass region restrictions uses DRM encryption; normal playback is DRM-free. Simply delete the content after the MPD link
    Code:
    N_m3u8DL-RE -M format=mkv  "https://admn-avod-mpd-session.starzplayarabia.com/v1/dash/2175a7946e79ae4a0346d2f7e7a99e65769b1cae/ADMN-AVOD-DASH/out/v1/bad36a3e527e4ba4bec6609a08e90dff/318c7499e4a947fbae0d5413730b9ead/34d20f6c04c34dff8627832ac87f778a/index.mpd?aws.sessionId=713223fb-ac6a-4045-876b-cb6a12ad499b" --header "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36" --header "Referer: https://www.starzplay.com/" --save-name S01E01
    After modification
    Code:
    N_m3u8DL-RE -M format=mkv  "https://admn-avod-mpd-session.starzplayarabia.com/v1/dash/2175a7946e79ae4a0346d2f7e7a99e65769b1cae/ADMN-AVOD-DASH/out/v1/bad36a3e527e4ba4bec6609a08e90dff/318c7499e4a947fbae0d5413730b9ead/34d20f6c04c34dff8627832ac87f778a/index.mpd" --header "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36" --header "Referer: https://www.starzplay.com/" --save-name S01E01
    Image
    [Attachment 91078 - Click to enlarge]
    Quote Quote  
  25. Originally Posted by forget View Post
    Forced playback to bypass region restrictions uses DRM encryption; normal playback is DRM-free. Simply delete the content after the MPD link
    Code:
    N_m3u8DL-RE -M format=mkv  "https://admn-avod-mpd-session.starzplayarabia.com/v1/dash/2175a7946e79ae4a0346d2f7e7a99e65769b1cae/ADMN-AVOD-DASH/out/v1/bad36a3e527e4ba4bec6609a08e90dff/318c7499e4a947fbae0d5413730b9ead/34d20f6c04c34dff8627832ac87f778a/index.mpd?aws.sessionId=713223fb-ac6a-4045-876b-cb6a12ad499b" --header "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36" --header "Referer: https://www.starzplay.com/" --save-name S01E01
    After modification
    Code:
    N_m3u8DL-RE -M format=mkv  "https://admn-avod-mpd-session.starzplayarabia.com/v1/dash/2175a7946e79ae4a0346d2f7e7a99e65769b1cae/ADMN-AVOD-DASH/out/v1/bad36a3e527e4ba4bec6609a08e90dff/318c7499e4a947fbae0d5413730b9ead/34d20f6c04c34dff8627832ac87f778a/index.mpd" --header "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36" --header "Referer: https://www.starzplay.com/" --save-name S01E01
    Image
    [Attachment 91078 - Click to enlarge]
    IMPRESSIVE
    can't thank you enough guys

    but I'm still wondering how the guys managed to get keys when there is no vudrmtoken?

    one more thing if its possible to share link of widevine l3 guesser
    and thanks a lot for your time, I know it took you a while testing & experimenting not just you all of you so many thanks to all of you
    Quote Quote  
  26. https://forum.videohelp.com/threads/414140-%5BRelease%5D-Widevine-L3-Guesser-Extension...-Chrome-All-OS

    Your IP address allows you to access and play unencrypted videos through your browser, therefore "x-vudrm-token" cannot be found
    Quote Quote  
  27. Originally Posted by forget View Post
    https://forum.videohelp.com/threads/414140-%5BRelease%5D-Widevine-L3-Guesser-Extension...-Chrome-All-OS

    Your IP address allows you to access and play unencrypted videos through your browser, therefore "x-vudrm-token" cannot be found

    Thanks for the link forget and thanks for the clear explanation 🙂
    Grateful to you
    Quote Quote  



Similar Threads

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