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
Page 1 of 3
1 2 3 LastLast
Results 1 to 30 of 85
Thread
  1. Member
    Join Date
    Jul 2022
    Location
    Switzerland
    Search Comp PM
    Until now I was downloading from MediasetPlay with these 3 method:

    youtube-dl

    Pastylink

    Internet Download Manager, detecting an .mpd link with the browser extension; I removed the part of the link after .mpd (.mpd&selected_id=1_2 etc.), then paste the link on youtube-dl and download it.

    Now the extension can't detect anything on MediasetPlay.it but it works with other site like RaiPlay.it.

    And also the other methods aren't working anymore because the video is DRM protected.



    I also tried the most intricated way, record the show from the browser using OBS but I have to do it in background while I was doing other task at the PC so I separated the audio of the show that I wanted to record from other sources with Voice Meter Banana.

    The problem is that sometimes while recording the video freeze and I think it's because the page from which the video is playing is in background



    I'm really ignorant with these things so I don't know exactly how to use scripts or other things without a simple step by step guide.

    I know I'm maybe asking too much but If someone can help me I would really appreciate it.

    Thanks in advance.
    Quote Quote  
  2. Try with Firefox and the Stream Detector Addon.

    Image
    [Attachment 66050 - Click to enlarge]
    Quote Quote  
  3. you have made only a generic speech

    each site works differently. and every video, as you yourself say, can have drm or not
    so, if you want a concrete and not generic help, write here the video link of a specific video of your interest
    Quote Quote  
  4. Member
    Join Date
    Jul 2022
    Location
    Switzerland
    Search Comp PM
    Originally Posted by lomero View Post
    you have made only a generic speech

    each site works differently. and every video, as you yourself say, can have drm or not
    so, if you want a concrete and not generic help, write here the video link of a specific video of your interest
    I'm sorry, this is the direct link of the video I'm trying to download:

    https://mediasetinfinity.mediaset.it/video/battitilive/prima-puntata_F310905301000101

    And there are also other episodes of the show.
    Quote Quote  
  5. Member
    Join Date
    Jul 2022
    Location
    Switzerland
    Search Comp PM
    Originally Posted by cedric8528 View Post
    I tried the Addon with both the URL that it can detect.

    I used "Copy stream URL as - yt-dlp command" to paste it directly in the CMD but yt-dlp says for both that the video is DRM protected.
    Quote Quote  
  6. Originally Posted by Compulsive2012 View Post
    but yt-dlp says for both that the video is DRM protected.
    add --allow-u among the other commands

    then you'll come and ask how to decypt the content...
    Quote Quote  
  7. Member
    Join Date
    Jul 2022
    Location
    Switzerland
    Search Comp PM
    Originally Posted by [ss]vegeta View Post
    Originally Posted by Compulsive2012 View Post
    but yt-dlp says for both that the video is DRM protected.
    add --allow-u among the other commands

    then you'll come and ask how to decypt the content...
    I added --allow-u to the commands, this is the result:

    Image
    [Attachment 66113 - Click to enlarge]



    It created this two files:

    Image
    [Attachment 66114 - Click to enlarge]


    But I can't reproduce the audio file and the video file opened in VLC doesn't show anything.
    Do they have to be decrypted?
    Quote Quote  
  8. Originally Posted by Compulsive2012 View Post
    Do they have to be decrypted?
    Exactly. Find mp4decrypt.exe, find out the correct syntax, and use this to decrypt them
    Code:
    0c2c3b6ffeb54def188a2238d5038708:b6fa2a8d82fdb6e77a5750eac8b17366
    Quote Quote  
  9. Member
    Join Date
    Jul 2022
    Location
    Switzerland
    Search Comp PM
    Originally Posted by [ss]vegeta View Post
    Originally Posted by Compulsive2012 View Post
    Do they have to be decrypted?
    Exactly. Find mp4decrypt.exe
    Where can I find it?

    Is it Bento4?

    And there are any guides about how to install?

    Sorry, I'm a really noob...
    Quote Quote  
  10. Yes it's Bento4

    you already know how to use yt-dlp...you just have to do the same with mp4decrypt.

    Open Commnd Prompt.

    Code:
    mp4decrypt.exe --key 0c2c3b6ffeb54def188a2238d5038708:b6fa2a8d82fdb6e77a5750eac8b17366 file.mp4 Newfile.mp4
    Quote Quote  
  11. Member
    Join Date
    Jul 2022
    Location
    Switzerland
    Search Comp PM
    Originally Posted by cedric8528 View Post
    Yes it's Bento4

    you already know how to use yt-dlp...you just have to do the same with mp4decrypt.

    Open Commnd Prompt.

    Code:
    mp4decrypt.exe --key 0c2c3b6ffeb54def188a2238d5038708:b6fa2a8d82fdb6e77a5750eac8b17366 file.mp4 Newfile.mp4
    Done, now the video is visible in the new file.

    What I have to do for the audio file?


    And if I need other shows is there a way to find the key to decrypt them?

    Thanks for your help
    Quote Quote  
  12. Originally Posted by Compulsive2012 View Post
    What I have to do for the audio file?
    The same.

    Originally Posted by Compulsive2012 View Post
    And if I need other shows is there a way to find the key to decrypt them?
    Other videos have other keys. Getting keys is usually done in 2 ways.
    Get access to getwvkeys.cc site
    or
    Dump a CDM (https://forum.videohelp.com/threads/404994-Decryption-and-the-Temple-of-Doom) and get WKS script.
    Quote Quote  
  13. If audio is encrypted, use the same key to decryot it

    Now if you want to decrypt vidéos , you can dump your own cdm and use Python script.

    some reading...

    https://forum.videohelp.com/threads/404994-Decryption-and-the-Temple-of-Doom
    Quote Quote  
  14. Member
    Join Date
    Jul 2022
    Location
    Switzerland
    Search Comp PM
    Ok, now also the audio is decrypted.

    To join audio and video can I use MKVtoolnix that I already used in the past for a similat methoc?
    Quote Quote  
  15. Code:
    ffmpeg -i video.mp4 -i audio.m4a -c copy videomerged.mp4
    Quote Quote  
  16. Member
    Join Date
    Jul 2022
    Location
    Switzerland
    Search Comp PM
    Originally Posted by [ss]vegeta View Post
    Other videos have other keys. Getting keys is usually done in 2 ways.
    Get access to getwvkeys.cc site
    or
    Dump a CDM (https://forum.videohelp.com/threads/404994-Decryption-and-the-Temple-of-Doom) and get WKS script.
    Originally Posted by cedric8528 View Post
    If audio is encrypted, use the same key to decryot it

    Now if you want to decrypt vidéos , you can dump your own cdm and use Python script.

    some reading...

    https://forum.videohelp.com/threads/404994-Decryption-and-the-Temple-of-Doom
    So do I necessarily need an android tv box?
    Last edited by Compulsive2012; 29th Jul 2022 at 14:19.
    Quote Quote  
  17. Member
    Join Date
    Jul 2022
    Location
    Switzerland
    Search Comp PM
    Originally Posted by cedric8528 View Post
    You can use an old Phone with Android (7-9)

    Take a look at this thread.

    https://forum.videohelp.com/threads/404219-How-To-Dump-L3-CDM-From-Android-Device-s-%2...ing-L3-CDMS%29
    The only old Android phones that I have are all non-rooted Samsung
    Last edited by Compulsive2012; 29th Jul 2022 at 17:02.
    Quote Quote  
  18. Member
    Join Date
    Jul 2022
    Location
    Switzerland
    Search Comp PM
    About Android TV Boxes, what specs should they have to work with that method?

    The model in the thread, T95 S1 2Gb/16Gb, is no more available on amazon in my country and on other sites it costs much more than 30 USD or any other currency you use.
    Quote Quote  
  19. Member
    Join Date
    Jul 2022
    Location
    Switzerland
    Search Comp PM
    Originally Posted by cedric8528 View Post
    Code:
    ffmpeg -i video.mp4 -i audio.m4a -c copy videomerged.mp4
    Originally Posted by [ss]vegeta View Post
    Originally Posted by Compulsive2012 View Post
    What I have to do for the audio file?
    The same.

    Someone gave me these keys:
    3ef1242362f95b35a1ec6903c182d7cd:19892127ba0044116 65d0b43511a1479
    f67bdc58cb9039efc1b9c9808ae18de5:a95f906d5de6363ab ddd396fa2c38af5
    1afb4e5c8bdb55e4a8c5470757176ed7:cdf8bb1f028ac0510 764753c74be7478
    906b306e82e35930ae932179cf363fe4:55be48eae1f846381 6bc50e5df28d3a9
    0f4c85e52a165e84ba30bf3ef4adf665:0c9295ec9ee690d35 6f647eab6a75c6a

    For the second part of the show: https://mediasetinfinity.mediaset.it/video/battitilive/seconda-puntata_F310905301000201

    I downloaded the video and audio file with yt-dlp using the link detected by Stream Detector Addon and then tried to decrypt the files with the keys but no one worked.

    Are they incorrect?
    Quote Quote  
  20. Someone gave me these keys:
    3ef1242362f95b35a1ec6903c182d7cd:19892127ba0044116 65d0b43511a1479
    f67bdc58cb9039efc1b9c9808ae18de5:a95f906d5de6363ab ddd396fa2c38af5
    1afb4e5c8bdb55e4a8c5470757176ed7:cdf8bb1f028ac0510 764753c74be7478
    906b306e82e35930ae932179cf363fe4:55be48eae1f846381 6bc50e5df28d3a9
    0f4c85e52a165e84ba30bf3ef4adf665:0c9295ec9ee690d35 6f647eab6a75c6a

    For the second part of the show: https://mediasetinfinity.mediaset.it/video/battitilive/seconda-puntata_F310905301000201

    I downloaded the video and audio file with yt-dlp using the link detected by Stream Detector Addon and then tried to decrypt the files with the keys but no one worked.

    Are they incorrect?
    This one is the key
    --key f67bdc58cb9039efc1b9c9808ae18de5:a95f906d5de6363ab ddd396fa2c38af5

    Decrypted small portion of video and it worked fine..
    To decrypt with shaka-packager use this
    Code:
    shaka-packager3 in=test.mp4,stream=video,output=dec_video.mp4 --enable_raw_key_decryption --keys key_id=f67bdc58cb9039efc1b9c9808ae18de5:key=a95f906d5de6363abddd396fa2c38af5
    Image
    [Attachment 66222 - Click to enlarge]

    Image
    [Attachment 66223 - Click to enlarge]
    Last edited by pkp; 5th Aug 2022 at 23:49.
    Quote Quote  
  21. Member
    Join Date
    Jul 2022
    Location
    Switzerland
    Search Comp PM
    Originally Posted by pkp View Post

    This one is the key
    --key f67bdc58cb9039efc1b9c9808ae18de5:a95f906d5de6363ab ddd396fa2c38af5

    Decrypted small portion of video and it worked fine..

    Image
    [Attachment 66223 - Click to enlarge]
    Sorry for my ignorance, what do you mean with "decrypt small portion of video"?

    Do I haven't to use mp4decrypt.exe?

    I tried this command "mp4decrypt.exe --key (key) video.mp4 Newvideo.mp4" with all those keys, also f67bdc58cb9039efc1b9c9808ae18de5:a95f906d5de6363ab ddd396fa2c38af5
    but it doesn't worked.
    Quote Quote  
  22. decrypt small portion of video

    he did not download the entire video, but only a portion to test the key

    and if it doesn't work for you with mp4decrypt, use shaka-packager like pkp posted (better on some case like this one)
    Quote Quote  
  23. Member
    Join Date
    Jul 2022
    Location
    Switzerland
    Search Comp PM
    Originally Posted by lomero View Post
    decrypt small portion of video

    he did not download the entire video, but only a portion to test the key

    and if it doesn't work for you with mp4decrypt, use shaka-packager like pkp posted (better on some case like this one)
    OK thanks.

    In this command:
    shaka-packager3 in=test.mp4,stream=video,output=dec_video.mp4 --enable_raw_key_decryption --keys key_id=f67bdc58cb9039efc1b9c9808ae18de5:key=a95f90 6d5de6363abddd396fa2c38af5

    Where do I have to write the name of the encrypted file?

    And do I have to do the same with the audio file to decrypt it?
    Quote Quote  
  24. Where do I have to write the name of the encrypted file?

    in=test.mp4

    And do I have to do the same with the audio file to decrypt it?

    yes
    Quote Quote  
  25. Member
    Join Date
    Jul 2022
    Location
    Switzerland
    Search Comp PM
    Originally Posted by lomero View Post
    Where do I have to write the name of the encrypted file?

    in=test.mp4

    And do I have to do the same with the audio file to decrypt it?

    yes
    It says that shaka-packager3 is not recognized as internal or external command.
    Maybe I did something wrong during the installation of shaka-packager?

    I downloaded "packager-win-x64.exe" from here https://github.com/shaka-project/shaka-packager/releases

    Then put it in a folder in C: named shaka-packager
    Then copied the link of the folder (C:\shaka-packager) and added it to system variable:
    Image
    [Attachment 66226 - Click to enlarge]


    What's wrong?
    Quote Quote  
  26. Member
    Join Date
    Jul 2022
    Location
    Switzerland
    Search Comp PM
    Originally Posted by pkp View Post
    To decrypt with shaka-packager use this
    Code:
    shaka-packager3 in=test.mp4,stream=video,output=dec_video.mp4 --enable_raw_key_decryption --keys key_id=f67bdc58cb9039efc1b9c9808ae18de5:key=a95f906d5de6363abddd396fa2c38af5
    Did I do something wrong installing shaka-packager as I written above?
    Quote Quote  
  27. What is the name of your file in C:\shaka-packager ?
    Quote Quote  
  28. Originally Posted by Compulsive2012 View Post
    Originally Posted by pkp View Post
    To decrypt with shaka-packager use this
    Code:
    shaka-packager3 in=test.mp4,stream=video,output=dec_video.mp4 --enable_raw_key_decryption --keys key_id=f67bdc58cb9039efc1b9c9808ae18de5:key=a95f906d5de6363abddd396fa2c38af5
    Did I do something wrong installing shaka-packager as I written above?
    i hope your shaka-packager file name is shaka-packager.exe(else use whatever filename you use for that file)...i have different versions of shaka-packager so renamed it as 1,2,3 etc....Since your filename is "shaka-packager" replace "shaka-packager3" in the command with yours "shaka-packager"
    Last edited by pkp; 6th Aug 2022 at 11:45.
    Quote Quote  
  29. Member
    Join Date
    Jul 2022
    Location
    Switzerland
    Search Comp PM
    Originally Posted by cedric8528 View Post
    What is the name of your file in C:\shaka-packager ?
    The file in the folder is the .exe that I downloaded directly from the list of release in the github link above
    Image
    [Attachment 66228 - Click to enlarge]
    Quote Quote  



Similar Threads

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