VideoHelp Forum


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


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


+ Reply to Thread
Results 1 to 7 of 7
Thread
  1. hello anyone can help me please i wanna use this addon

    Code:
    https://addons.mozilla.org/en-US/firefox/addon/reproductor-hls-dash/
    Code:
    https://live-dash-cdn6-mp.cdn.viaplay.tv/7e8ad82aa3a8466581e4e8a89685a4ce/start/1729948780/end/1729980000/index.mpd
    Code:
    --key 3c72b37854955e29b55a01bf119d491a:db5b84af31e941144c54f30452a07870 
    --key 919ef17528035d48a954a3f99b417ed2:37d395941bf1585ee28db04c82797428 
    --key 8e58c8bf32025c0495e86444df685fa2:0064662f448fa4721c2d0607333f6a72 
    --key 0ba408ed9f165223ad02b83ed87c32f4:8aa89d56679072b625162bfc1f35ec0f
    ClearKeys:
    Convert kid hexa and key hexa to base64 and associate it with the "ck" parameter.
    {"kidhex":"keyhex","kidhex":"keyhex","kidhex":"key hex".......}
    urlVideo?ck=codeBASE64KIDKEY
    Quote Quote  
  2. Code:
    https://live-dash-cdn6-mp.cdn.viaplay.tv/fb26369f62c14ee29cc5590bb0d90f68/start/1730029480/end/1730068200/index.mpd?ck=l3VE+D2vVpe6PQ+xD+u7xw==:w4V2GiMrDzT8C1bhgk43vQ==:dKYwB40BWXOgHkGdipqNTA==:GEB9EYZVynf9ZyvDR3r+WA==:AC94SD/oW4GO/1kTKumzmA==:tzFK/nqjB8QidK+j4JV32w==:VcC1igX1V76kq2U8eLWOsg==:DMw5OLLbFrO4DzDGAtrRzg==
    something like this don't work as well
    Quote Quote  
  3. Your url (or at least the ck parameter) is not correct. You've just encoded each kid and key separately and chained them together. What you should actually do is construct an object out of your values like this:

    Code:
    {"977544f83daf5697ba3d0fb10febbbc7":"c385761a232b0f34fc0b56e1824e37bd","74a630078d015973a01e419d8a9a8d4c":"18407d118655ca77fd672bc3477afe58","002f78483fe85b818eff59132ae9b398":"b7314afe7aa307c42274afa3e09577db","5c0b58a05f557bea4ab653c78b58eb2":"0ccc3938b2db16b3b80f30c602dad1ce"}
    (These are the hex kids and keys I extracted from your url above). Once you got that, you should convert that whole string (from { to }) in Base 64 and add it to your url which then becomes:

    Code:
    https://live-dash-cdn6-mp.cdn.viaplay.tv/fb26369f62c14ee29cc5590bb0d90f68/start/1730029480/end/1730068200/index.mpd?ck=eyI5Nzc1NDRmODNkYWY1Njk3YmEzZDBmYjEwZmViYmJjNyI6ImMzODU3NjFhMjMyYjBmMzRmYzBiNTZlMTgyNGUzN2JkIiwiNzRhNjMwMDc4ZDAxNTk3M2EwMWU0MTlkOGE5YThkNGMiOiIxODQwN2QxMTg2NTVjYTc3ZmQ2NzJiYzM0NzdhZmU1OCIsIjAwMmY3ODQ4M2ZlODViODE4ZWZmNTkxMzJhZTliMzk4IjoiYjczMTRhZmU3YWEzMDdjNDIyNzRhZmEzZTA5NTc3ZGIiLCI1YzBiNThhMDVmNTU3YmVhNGFiNjUzYzc4YjU4ZWIyIjoiMGNjYzM5MzhiMmRiMTZiM2I4MGYzMGM2MDJkYWQxY2UifQ==
    And that will play. With one unrelated problem: there is no sound. But it looks like the English audio track is selected by default and is actually silent. I couldn't find a way in this extension to change it to another audio track.

    Image
    [Attachment 83133 - Click to enlarge]
    Quote Quote  
  4. Originally Posted by StreamBabyStream View Post
    Your url (or at least the ck parameter) is not correct. You've just encoded each kid and key separately and chained them together. What you should actually do is construct an object out of your values like this:

    Code:
    {"977544f83daf5697ba3d0fb10febbbc7":"c385761a232b0f34fc0b56e1824e37bd","74a630078d015973a01e419d8a9a8d4c":"18407d118655ca77fd672bc3477afe58","002f78483fe85b818eff59132ae9b398":"b7314afe7aa307c42274afa3e09577db","5c0b58a05f557bea4ab653c78b58eb2":"0ccc3938b2db16b3b80f30c602dad1ce"}
    (These are the hex kids and keys I extracted from your url above). Once you got that, you should convert that whole string (from { to }) in Base 64 and add it to your url which then becomes:

    Code:
    https://live-dash-cdn6-mp.cdn.viaplay.tv/fb26369f62c14ee29cc5590bb0d90f68/start/1730029480/end/1730068200/index.mpd?ck=eyI5Nzc1NDRmODNkYWY1Njk3YmEzZDBmYjEwZmViYmJjNyI6ImMzODU3NjFhMjMyYjBmMzRmYzBiNTZlMTgyNGUzN2JkIiwiNzRhNjMwMDc4ZDAxNTk3M2EwMWU0MTlkOGE5YThkNGMiOiIxODQwN2QxMTg2NTVjYTc3ZmQ2NzJiYzM0NzdhZmU1OCIsIjAwMmY3ODQ4M2ZlODViODE4ZWZmNTkxMzJhZTliMzk4IjoiYjczMTRhZmU3YWEzMDdjNDIyNzRhZmEzZTA5NTc3ZGIiLCI1YzBiNThhMDVmNTU3YmVhNGFiNjUzYzc4YjU4ZWIyIjoiMGNjYzM5MzhiMmRiMTZiM2I4MGYzMGM2MDJkYWQxY2UifQ==
    And that will play. With one unrelated problem: there is no sound. But it looks like the English audio track is selected by default and is actually silent. I couldn't find a way in this extension to change it to another audio track.

    Image
    [Attachment 83133 - Click to enlarge]
    thanks for help i did everything as you said and still not working no idea why maybe i'm dumb

    Code:
    --key f46b11424ea95180b50003c0dee74137:c91db5cf58b29d237c9bd80b68d3b0f2 
    --key 6e03325a0ae155e39063a00e0eeb8da1:f9d7d93614ff0db560d898ca85973f62 
    --key ce15a21f8bba5f61b1712beb9cf0776d:1eed103b93b86ebfa40359904d169ce3 
    --key 9b9c23fe51755e929942c51a6536e400:f01b01e2d1f815b1d6b392c76c1e7f29
    Code:
    https://live-dash-cdn6-mp.cdn.viaplay.tv/66052706988140dbaa910fc23e2a8e7b/start/1730035480/end/1730068200/index.mpd?ck=eyJmNDZiMTE0MjRlYTk1MTgwYjUwMDAzYzBkZWU3NDEzNyI6ImM5MWRiNWNmNThiMjlkMjM3YzliZDgwYjY4ZDNiMGYyICIsIjZlMDMzMjVhMGFlMTU1ZTM5MDYzYTAwZTBlZWI4ZGExIjoiZjlkN2Q5MzYxNGZmMGRiNTYwZDg5OGNhODU5NzNmNjIgIiwiY2UxNWEyMWY4YmJhNWY2MWIxNzEyYmViOWNmMDc3NmQiOiIxZWVkMTAzYjkzYjg2ZWJmYTQwMzU5OTA0ZDE2OWNlMyIsIjliOWMyM2ZlNTE3NTVlOTI5OTQyYzUxYTY1MzZlNDAwIjoiZjAxYjAxZTJkMWY4MTViMWQ2YjM5MmM3NmMxZTdmMjkifQ==

    Code:
    {"f46b11424ea95180b50003c0dee74137":"c91db5cf58b29d237c9bd80b68d3b0f2 ","6e03325a0ae155e39063a00e0eeb8da1":"f9d7d93614ff0db560d898ca85973f62","ce15a21f8bba5f61b1712beb9cf0776d":"1eed103b93b86ebfa40359904d169ce3","9b9c23fe51755e929942c51a6536e400":"f01b01e2d1f815b1d6b392c76c1e7f29"}
    Code:
    eyJmNDZiMTE0MjRlYTk1MTgwYjUwMDAzYzBkZWU3NDEzNyI6ImM5MWRiNWNmNThiMjlkMjM3YzliZDgwYjY4ZDNiMGYyICIsIjZlMDMzMjVhMGFlMTU1ZTM5MDYzYTAwZTBlZWI4ZGExIjoiZjlkN2Q5MzYxNGZmMGRiNTYwZDg5OGNhODU5NzNmNjIgIiwiY2UxNWEyMWY4YmJhNWY2MWIxNzEyYmViOWNmMDc3NmQiOiIxZWVkMTAzYjkzYjg2ZWJmYTQwMzU5OTA0ZDE2OWNlMyIsIjliOWMyM2ZlNTE3NTVlOTI5OTQyYzUxYTY1MzZlNDAwIjoiZjAxYjAxZTJkMWY4MTViMWQ2YjM5MmM3NmMxZTdmMjkifQ==
    Last edited by Silv3r; 27th Oct 2024 at 09:21.
    Quote Quote  
  5. There are two extra spaces in your first and second keys at the end of each of them. After f2 and 62. Once you remove those and reencode in base64, things do work.
    Quote Quote  
  6. Do you have any more channels?
    Quote Quote  
  7. Originally Posted by StreamBabyStream View Post
    Your url (or at least the ck parameter) is not correct. You've just encoded each kid and key separately and chained them together. What you should actually do is construct an object out of your values like this:

    Code:
    {"977544f83daf5697ba3d0fb10febbbc7":"c385761a232b0f34fc0b56e1824e37bd","74a630078d015973a01e419d8a9a8d4c":"18407d118655ca77fd672bc3477afe58","002f78483fe85b818eff59132ae9b398":"b7314afe7aa307c42274afa3e09577db","5c0b58a05f557bea4ab653c78b58eb2":"0ccc3938b2db16b3b80f30c602dad1ce"}
    (These are the hex kids and keys I extracted from your url above). Once you got that, you should convert that whole string (from { to }) in Base 64 and add it to your url which then becomes:

    Code:
    https://live-dash-cdn6-mp.cdn.viaplay.tv/fb26369f62c14ee29cc5590bb0d90f68/start/1730029480/end/1730068200/index.mpd?ck=eyI5Nzc1NDRmODNkYWY1Njk3YmEzZDBmYjEwZmViYmJjNyI6ImMzODU3NjFhMjMyYjBmMzRmYzBiNTZlMTgyNGUzN2JkIiwiNzRhNjMwMDc4ZDAxNTk3M2EwMWU0MTlkOGE5YThkNGMiOiIxODQwN2QxMTg2NTVjYTc3ZmQ2NzJiYzM0NzdhZmU1OCIsIjAwMmY3ODQ4M2ZlODViODE4ZWZmNTkxMzJhZTliMzk4IjoiYjczMTRhZmU3YWEzMDdjNDIyNzRhZmEzZTA5NTc3ZGIiLCI1YzBiNThhMDVmNTU3YmVhNGFiNjUzYzc4YjU4ZWIyIjoiMGNjYzM5MzhiMmRiMTZiM2I4MGYzMGM2MDJkYWQxY2UifQ==
    And that will play. With one unrelated problem: there is no sound. But it looks like the English audio track is selected by default and is actually silent. I couldn't find a way in this extension to change it to another audio track.

    Image
    [Attachment 83133 - Click to enlarge]
    Chrome
    https://chromewebstore.google.com/detail/odtwarzacz-wideo-mpdm3u8m/opmeopcambhfimffbom...hjkbbmji?hl=PL

    Image
    [Attachment 83138 - Click to enlarge]
    Quote Quote  



Similar Threads

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