VideoHelp Forum



Support our site by donate $5 directly to us Thanks!!!

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



+ Reply to Thread
Results 1 to 20 of 20
  1. Hello everyone
    can someone help me with how i can download this video >> https://frontend.graphy.com/s/preview/courses/-6465e1cae4b0ad0c60a01e86#646876f5e4b0fc325402f999
    Quote Quote  
  2. Banned
    Join Date
    Apr 2022
    Location
    Hong Kong
    Search Comp PM
    key:
    Code:
    a3ad9a3cc76c1da311cb864d467bf5f2
    iv:
    Code:
    0x496daa1c6914000e408c65cead91fc29
    You can use N_m3u8DL-RE to download:
    command:
    Code:
    N_m3u8DL-RE.exe "https://d2qny97nu4rj64.cloudfront.net/spees/w/o/64650160e4b07d0cdfd4b51c/v/646876f5e4b0fc325402f999/u/pu/t/e5320655fb5351b6925319967781c7c3/p/assets/videos/64650160e4b07d0cdfd4b51c/2023/05/20/646876f5e4b0fc325402f999/index.m3u8" --custom-hls-key a3ad9a3cc76c1da311cb864d467bf5f2 --custom-hls-iv 0x496daa1c6914000e408c65cead91fc29
    ---

    Edit:
    Maybe I have got the wrong key. The video was not downloaded successfully as I predicted.
    Last edited by CrymanChen; 10th Sep 2023 at 18:13.
    Quote Quote  
  3. ....
    Last edited by jack_666; 10th Sep 2023 at 20:48.
    Quote Quote  
  4. nxhda
    Join Date
    Sep 2022
    Location
    United States
    Search Comp PM
    N_m3u8DL-RE -H "Referer: https://frontend.graphy.com/" --custom-hls-key "5mcp3gwq1NlZevg0nmlTDw==" "https://d2qny97nu4rj64.cloudfront.net/spees/w/o/64650160e4b07d0cdfd4b51c/v/646876f5e4b0fc325402f999/u/pu/t/e5320655fb5351b6925319967781c7c3/p/assets/videos/64650160e4b07d0cdfd4b51c/2023/05/20/646876f5e4b0fc325402f999/index.m3u8" -M mp4 --save-name "video"
    Last edited by NBA456017; 10th Sep 2023 at 23:15.
    discord nxhda
    Quote Quote  
  5. Thanks NBA456017.

    If you are so inclined, can you please share how you arrived at 5mcp3gwq1NlZevg0nmlTDw==

    Thanks
    Quote Quote  
  6. nxhda
    Join Date
    Sep 2022
    Location
    United States
    Search Comp PM
    HTML Code:
    e66729de0c2ad4d9597af8349e69530f
    Last edited by NBA456017; 10th Sep 2023 at 23:28.
    discord nxhda
    Quote Quote  
  7. read hls 128 bit AES encryption on forum, you'll get the answer
    Quote Quote  
  8. Hey guys i went through the forum to understand the AES key i did following key but its not working , can someone help ?

    i want to download this video >> https://frontend.graphy.com/s/preview/courses/-6465e1cae4b0ad0c60a01e86#646876f5e4b0fc325402f999

    i got m3u8 url >> https://d2qny97nu4rj64.cloudfront.net/spees/w/o/64650160e4b07d0cdfd4b51c/v/646876f5e4b...999/index.m3u8

    i got apkId from console >> 66346565386461356231373432363038663465653864613562 31373432363038

    i saw 2 timestamp calls in network so i saved both in files named - timestamp and rb
    with these valuse >>
    timstamp >> D-`4qhT(mPd2#Xl2KoM5N!?=V"ncY9hOm(aE%ĥ) ڏ
    rb >> _(|M(QrYUbCG" j&9Aׁ3$͌OOW>;SycbNp'm)>zKѷuAo

    now i tried extracting key with the help of this function

    import binascii
    from Crypto.Cipher import AES

    with open("timestamp", "rb") as file:
    data = file.read()

    apkid = '6634656538646135623137343236303866346565386461356 231373432363038'

    def _decrypt_key(data, apkId):
    tmp1 = data[16:32]
    tmp2 = data[48:64]
    dec1 = AES.new(bytes.fromhex(apkId[1:33]),AES.MODE_ECB)
    tmp3 = dec1.decrypt(tmp1)
    dec2 = AES.new(tmp3,AES.MODE_ECB)
    return dec2.decrypt(tmp2)

    result = _decrypt_key(data, apkid)
    hex_result = binascii.hexlify(result)
    print(hex_result.decode())

    i got the key hexcode ==>> e768e150815cc1b91ac2635ab40bb88d
    base 64 ==> 52jhUIFcwbkawmNatAu4jQ==

    but when i used this key this getting error , key is not working

    N_m3u8DL-RE -H "Referer: https://frontend.graphy.com/" --custom-hls-key "52jhUIFcwbkawmNatAu4jQ==" "https://d2qny97nu4rj64.cloudfront.net/spees/w/o/64650160e4b07d0cdfd4b51c/v/646876f5e4b0fc325402f999/u/pu/t/e5320655fb5351b6925319967781c7c3/p/assets/videos/64650160e4b07d0cdfd4b51c/2023/05/20/646876f5e4b0fc325402f999/index.m3u8" -M mp4 --save-name "video"

    error >> 13:38:51.203 INFO : Start downloading...Vid 1920x1080 | 1500 Kbps | avc1.640028
    13:38:51.215 ERROR: Padding is invalid and cannot be removed.

    can anyone help me where im going wrong ? or somting im missing
    Last edited by gautambhaichavda; 11th Sep 2023 at 03:54.
    Quote Quote  
  9. Member
    Join Date
    Feb 2022
    Location
    Search the forum first!
    Search PM
    Originally Posted by swappyison View Post
    read hls 128 bit AES encryption on forum, you'll get the answer
    Is less than helpful.

    e66729de0c2ad4d9597af8349e69530f encoded as hex to base64 gives 5mcp3gwq1NlZevg0nmlTDw==
    Quote Quote  
  10. Yes i understood this but im not able to get the same value >> e66729de0c2ad4d9597af8349e69530f
    whenever im trying apkId and timestamp im getting different value , not sure what am i missing ??
    Quote Quote  
  11. Can someone tel me what am i doing wrong ??
    Last edited by gautambhaichavda; 12th Sep 2023 at 02:03.
    Quote Quote  
  12. Thanks NBA456017,swappyison and A_n_g_e_l_a for your help
    Quote Quote  
  13. Why i am getting the below is it because key is wrong?
    14:08:43.639 INFO : Content Matched: HTTP Live Streaming
    14:08:43.640 INFO : Parsing streams...
    14:08:43.641 WARN : Master List detected, try parse all streams
    14:08:43.644 WARN : Writing meta json
    14:08:43.645 INFO : Extracted, there are 3 streams, with 2 basic streams, 1 audio streams, 0 subtitle streams
    14:08:43.646 INFO : Vid 1280x720 | 900 Kbps | avc1.64001f
    14:08:43.647 INFO : Vid 852x480 | 650 Kbps | avc1.64001f
    14:08:43.648 INFO : Aud audio-0 | eng | eng
    14:08:44.566 INFO : Parsing streams...
    14:08:44.760 INFO : Selected streams:
    14:08:44.762 INFO : Vid *AES_128 1280x720 | 900 Kbps | avc1.64001f | 5224 Segments | ~02h54m07s
    14:08:44.763 INFO : Aud *AES_128 audio-0 | eng | eng | 5224 Segments | ~02h54m07s
    14:08:44.764 WARN : Writing meta json
    14:08:44.764 INFO : Save Name: videomk
    14:08:44.765 WARN : MuxAfterDone is detected, binary merging is automatically enabled
    14:08:44.766 INFO : Start downloading...Vid 1280x720 | 900 Kbps | avc1.64001f
    14:08:44.769 ERROR: Padding is invalid and cannot be removed.
    Quote Quote  
  14. Originally Posted by LZAA View Post
    Url?
    Just responded you in box with url
    Quote Quote  
  15. anyone else can help?
    Quote Quote  
  16. Member
    Join Date
    Dec 2021
    Location
    england
    Search Comp PM
    We can help if you post video url
    Quote Quote  
  17. Member
    Join Date
    Dec 2021
    Location
    england
    Search Comp PM
    Not m3u8. Link where you watch on site like YouTube, bbc, Pluto etc
    Quote Quote  



Similar Threads

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