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
Page 6 of 8
FirstFirst ... 4 5 6 7 8 LastLast
Results 151 to 180 of 219
  1. Originally Posted by aqzs View Post
    Originally Posted by sgtpepper View Post
    Please, may you kindly tell me how to obtain the whole complete key in order to try to download another video by myself? What's the tool/utility you have used to get it?
    I have used a custom script based on this one :
    HTML Code:
    from pywidevine.cdm import Cdm
    from pywidevine.device import Device
    from pywidevine.pssh import PSSH
    import requests
    
    headers = {
    }
    
    pssh = input("PSSH? ")
    pssh = PSSH(pssh)
    lic_url = input("License URL? ")
    
    device = Device.load("DEVICE.wvd")
    cdm = Cdm.from_device(device)
    session_id = cdm.open()
    challenge = cdm.get_license_challenge(session_id, pssh)
    licence = requests.post(lic_url, headers = headers, data=challenge)
    licence.raise_for_status()
    cdm.parse_license(session_id, licence.content)
    for key in cdm.get_keys(session_id):
        if key.type=='CONTENT':
            print(f"\n--key {key.kid.hex}:{key.key.hex()}")
    cdm.close(session_id)
    For each request you have to grab the pssh and the license url by hand. You can create your own DEVICE.wvd by following this thread : https://forum.videohelp.com/threads/408031-Dumping-Your-own-L3-CDM-with-Android-Studio or grabbing one given on the forum.
    Thanks a lot mate, I'm not a developer or something like that but I will try to do my best in order to succeed with it.
    Is there any ready-for-use tool/utility or a plug-in for browser that can do this "dirty job" in an easier way?
    Thanks again for your help and video that in the meantime I have already downloaded and it plays like a charm!
    Quote Quote  
  2. Originally Posted by Goku73 View Post

    Many thanks Goku73. I will try and let you know my findings asap.
    Cheers.
    Quote Quote  
  3. Originally Posted by sgtpepper View Post
    Originally Posted by aqzs View Post
    Originally Posted by sgtpepper View Post
    Please, may you kindly tell me how to obtain the whole complete key in order to try to download another video by myself? What's the tool/utility you have used to get it?
    I have used a custom script based on this one :
    HTML Code:
    from pywidevine.cdm import Cdm
    from pywidevine.device import Device
    from pywidevine.pssh import PSSH
    import requests
    
    headers = {
    }
    
    pssh = input("PSSH? ")
    pssh = PSSH(pssh)
    lic_url = input("License URL? ")
    
    device = Device.load("DEVICE.wvd")
    cdm = Cdm.from_device(device)
    session_id = cdm.open()
    challenge = cdm.get_license_challenge(session_id, pssh)
    licence = requests.post(lic_url, headers = headers, data=challenge)
    licence.raise_for_status()
    cdm.parse_license(session_id, licence.content)
    for key in cdm.get_keys(session_id):
        if key.type=='CONTENT':
            print(f"\n--key {key.kid.hex}:{key.key.hex()}")
    cdm.close(session_id)
    For each request you have to grab the pssh and the license url by hand. You can create your own DEVICE.wvd by following this thread : https://forum.videohelp.com/threads/408031-Dumping-Your-own-L3-CDM-with-Android-Studio or grabbing one given on the forum.
    Thanks a lot mate, I'm not a developer or something like that but I will try to do my best in order to succeed with it.
    Is there any ready-for-use tool/utility or a plug-in for browser that can do this "dirty job" in an easier way?
    Thanks again for your help and video that in the meantime I have already downloaded and it plays like a charm!
    So I have not tried it with this specific site, but, this tool is excellent typically for jobs such as this => https://github.com/FoxRefire/wvg

    Follow the instructions closely, and you should hopefully be able to get it to work!
    Quote Quote  
  4. [/QUOTE] So I have not tried it with this specific site, but, this tool is excellent typically for jobs such as this => https://github.com/FoxRefire/wvg
    Follow the instructions closely, and you should hopefully be able to get it to work![/QUOTE]



    Thanks a lot keep_it_breezy, I'm not a developer or in any case good in programming and I was hoping for an utility or a plug-in that's easy to use in tracking down the key. However, I will try all the advices and tips you all gave me.
    Thanks again for your help.
    Quote Quote  
  5. Originally Posted by Goku73 View Post

    Hi Goku73, I followed your procedure and I want to thank you because I was able to download (by tool Nm3u8DLRE.exe) a folder with various folders and files inside: the folder containing the video but at the moment is made up of many small files with m4s extension.
    Your procedure works great but now I would like to create (from all these files) a single mp4 or mkv video file.
    How should I proceed at this point?
    Should I maybe use tool ffmpeg for this purpose? How?
    Thanks in advance.
    Rgds

    PS: fyi, this is the command line I used to download the files.

    C:\N_m3u8DL-RE.exe "https://vod06.msf.cdn.mediaset.net/farmunica/2024/05/1595592_18fc9abaf1df89/dashrcenc/hr_wv_mpl.mpd" --save-name "D-day: il giorno pił lungo" --select-video best --select-audio all --select-subtitle all -mt -M format=mkv --log-level OFF --key 7d5e4c8d1351ca9d68a4272a09034045:e7a10bb246f65cbf0 5cdc551ea992d9e
    Quote Quote  
  6. Member aqzs's Avatar
    Join Date
    Mar 2024
    Location
    Paris
    Search Comp PM
    Originally Posted by sgtpepper View Post
    C:\N_m3u8DL-RE.exe "https://vod06.msf.cdn.mediaset.net/farmunica/2024/05/1595592_18fc9abaf1df89/dashrcenc/hr_wv_mpl.mpd" --save-name "D-day: il giorno pił lungo" --select-video best --select-audio all --select-subtitle all -mt -M format=mkv --log-level OFF --key 7d5e4c8d1351ca9d68a4272a09034045:e7a10bb246f65cbf0 5cdc551ea992d9e
    To merge you have to use -M format=mkv or -M mkv, which is in the command you provided. I ran the command you send and got a single playable :
    Image
    [Attachment 79806 - Click to enlarge]
    Quote Quote  
  7. Originally Posted by aqzs View Post
    Originally Posted by sgtpepper View Post
    C:\N_m3u8DL-RE.exe "https://vod06.msf.cdn.mediaset.net/farmunica/2024/05/1595592_18fc9abaf1df89/dashrcenc/hr_wv_mpl.mpd" --save-name "D-day: il giorno pił lungo" --select-video best --select-audio all --select-subtitle all -mt -M format=mkv --log-level OFF --key 7d5e4c8d1351ca9d68a4272a09034045:e7a10bb246f65cbf0 5cdc551ea992d9e
    To merge you have to use -M format=mkv or -M mkv, which is in the command you provided. I ran the command you send and got a single playable :
    Image
    [Attachment 79806 - Click to enlarge]

    Thanks Aqzs for your info. but how could it be possible that you got a single playable file and me everytime I got a multifile with m4s extension?
    What's wrong with it?
    Quote Quote  
  8. Member aqzs's Avatar
    Join Date
    Mar 2024
    Location
    Paris
    Search Comp PM
    Originally Posted by sgtpepper View Post
    Thank Aqzs for your info. but how could it be possible that you got a single playable file and me everytime I got a multifile with m4s extension?
    What's wrong with it?
    Try running :
    Code:
    C:\N_m3u8DL-RE.exe "https://vod06.msf.cdn.mediaset.net/farmunica/2024/05/1595592_18fc9abaf1df89/dashrcenc/hr_wv_mpl.mpd" --save-name "D-day: il giorno pił lungo" --select-video best --select-audio all --select-subtitle all -mt -M format=mkv  --log-level OFF --key 7d5e4c8d1351ca9d68a4272a09034045:e7a10bb246f65cbf05cdc551ea992d9e
    Did you insttalled mp4decrypt and ffmpeg and mkvmerge ? Does the command gives errors ?
    Quote Quote  
  9. Originally Posted by aqzs View Post
    Originally Posted by sgtpepper View Post
    Thank Aqzs for your info. but how could it be possible that you got a single playable file and me everytime I got a multifile with m4s extension?
    What's wrong with it?
    Try running :
    Code:
    C:\N_m3u8DL-RE.exe "https://vod06.msf.cdn.mediaset.net/farmunica/2024/05/1595592_18fc9abaf1df89/dashrcenc/hr_wv_mpl.mpd" --save-name "D-day: il giorno pił lungo" --select-video best --select-audio all --select-subtitle all -mt -M format=mkv  --log-level OFF --key 7d5e4c8d1351ca9d68a4272a09034045:e7a10bb246f65cbf05cdc551ea992d9e
    Did you insttalled mp4decrypt and ffmpeg and mkvmerge ? Does the command gives errors ?

    Just tried your path but with no success, same download with multifiles m4s
    (C:\N_m3u8DL-RE.exe "https://vod06.msf.cdn.mediaset.net/farmunica/2024/05/1595592_18fc9abaf1df89/dashrcenc/hr_wv_mpl.mpd" --save-name "D-day: il giorno pił lungo" --select-video best --select-audio all --select-subtitle all -mt -M format=mkv --log-level OFF --key 7d5e4c8d1351ca9d68a4272a09034045:e7a10bb246f65cbf0 5cdc551ea992d9e)

    I got the following exe files: N_m3u8DL-RE, mp4decrypt and ffmpeg. All 3 files are on c:\ root
    Do I need to add mkvmerge as well with the others 3 ? I have just downloaded the entire mkvtool.

    "Does the command gives errors ?" No errors after downloaded it.
    Image Attached Thumbnails Click image for larger version

Name:	executables.jpg
Views:	28
Size:	23.7 KB
ID:	79807  

    Last edited by sgtpepper; 11th Jun 2024 at 10:41.
    Quote Quote  
  10. wrong key. also mkvmerge.exe needed if you use -M format=mkv:muxer=mkvmerge

    otherwise N_m3u8DL-RE use default ffmpeg to merge video+audio on mkv format

    so try to download again with:
    Code:
    N_m3u8DL-RE "https://vod06.msf.cdn.mediaset.net/farmunica/2024/05/1595592_18fc9abaf1df89/dashrcenc/hd_wv_mpl.mpd" --save-name "D-day: il giorno pił lungo" -M format=mkv:muxer=mkvmerge --log-level OFF --key eb44909b2cfe0021cd4604bcfa5cc3ad:ab91ec0783f78c3927f462f782e76c75
    and select manually your prefer video and audio resolution. the mpd above have also 1080p available as best resolution
    Quote Quote  
  11. Originally Posted by lomero View Post
    wrong key. also mkvmerge.exe needed if you use -M format=mkv:muxer=mkvmerge

    otherwise N_m3u8DL-RE use default ffmpeg to merge video+audio on mkv format

    so try to download again with:
    Code:
    N_m3u8DL-RE "https://vod06.msf.cdn.mediaset.net/farmunica/2024/05/1595592_18fc9abaf1df89/dashrcenc/hd_wv_mpl.mpd" --save-name "D-day: il giorno pił lungo" -M format=mkv:muxer=mkvmerge --log-level OFF --key eb44909b2cfe0021cd4604bcfa5cc3ad:ab91ec0783f78c3927f462f782e76c75
    and select manually your prefer video and audio resolution. the mpd above have also 1080p available as best resolution
    I'm downloading right now and in the video output folder (located in C:\ root) I just got several tmp files turning in m4s files)
    Image Attached Thumbnails Click image for larger version

Name:	tmp2m4s.jpg
Views:	17
Size:	89.3 KB
ID:	79808  

    Quote Quote  
  12. just done but with same result: many m4s files as output, no single playable file.
    Question: could it be due to my version of N_m3u8DL-RE.exe?
    Image Attached Images  
    Quote Quote  
  13. Member aqzs's Avatar
    Join Date
    Mar 2024
    Location
    Paris
    Search Comp PM
    Originally Posted by sgtpepper View Post
    I'm downloading right now and in the video output folder (located in C:\ root) I just got several tmp files turning in m4s files)
    Those a temporary files before merging to the single mkv, wait more.
    Quote Quote  
  14. Originally Posted by aqzs View Post
    Originally Posted by sgtpepper View Post
    I'm downloading right now and in the video output folder (located in C:\ root) I just got several tmp files turning in m4s files)
    Those a temporary files before merging to the single mkv, wait more.
    Yes, I awaited til the end but with same result at the end. No errors during downloading with N_m3u8DL-Re, simply after downloaded I have the folder with the name of the movie and inside this (pls see picture attached). Inside folder "0_2_1_avc1.64001e_1006143_" are many m4s files.
    Image Attached Thumbnails Click image for larger version

Name:	folder with m4s.jpg
Views:	18
Size:	33.5 KB
ID:	79810  

    Quote Quote  
  15. You need ffmpeg and mp4decrypt or even better shakapackager in the same folder with N_m3u8DL-RE I pass you the necessary files the most up-to-date for Windows

    Code:
    https://gofile.io/d/Gw39nh
    The command I recommend you use is this:

    Code:
    N_m3u8DL-RE.exe  "https://vod06.msf.cdn.mediaset.net/farmunica/2024/05/1595592_18fc9abaf1df89/dashrcenc/hd_wv_mpl.mpd" --save-name "D-day.360.-.Il.Giorno.Piu.Lungo" -sv best -sa all -ss all --sub-format srt -M format=mkv --use-shaka-packager --key 7d5e4c8d1351ca9d68a4272a09034045:e7a10bb246f65cbf05cdc551ea992d9e
    If you do not pay the subscription to mediaset infinity you will always have the maximum 720p playlist with links ending hr_wv_mpl.mpd to have the playlist with 1080p video simply replace hr with hd

    hd_wv_mpl.mpd
    Quote Quote  
  16. Originally Posted by Goku73 View Post
    You need ffmpeg and mp4decrypt or even better shakapackager in the same folder with N_m3u8DL-RE I pass you the necessary files the most up-to-date for Windows

    Code:
    https://gofile.io/d/Gw39nh
    The command I recommend you use is this:

    Code:
    N_m3u8DL-RE.exe  "https://vod06.msf.cdn.mediaset.net/farmunica/2024/05/1595592_18fc9abaf1df89/dashrcenc/hd_wv_mpl.mpd" --save-name "D-day.360.-.Il.Giorno.Piu.Lungo" -sv best -sa all -ss all --sub-format srt -M format=mkv --use-shaka-packager --key 7d5e4c8d1351ca9d68a4272a09034045:e7a10bb246f65cbf05cdc551ea992d9e
    If you do not pay the subscription to mediaset infinity you will always have the maximum 720p playlist with links ending hr_wv_mpl.mpd to have the playlist with 1080p video simply replace hr with hd

    hd_wv_mpl.mpd
    Thanks mate, will try your suggestions and let you know asap.
    Thanks again to all of you mates.
    Last edited by sgtpepper; 11th Jun 2024 at 11:42.
    Quote Quote  
  17. maybe your N_m3u8DL-RE or ffmpeg or mp4decrypt are wrong because some tool can't merge at final mkv file

    so download N_m3u8DL-RE from here https://www.videohelp.com/software/N-m3u8DL-RE

    ffmpeg from here https://www.gyan.dev/ffmpeg/builds/ffmpeg-release-full.7z

    and mp4decrypt from here https://files.videohelp.com/u/287921/mp4decrypt.zip

    and download again from my code https://forum.videohelp.com/threads/412937-mediaset-infinity-m3u8-link-not-found/page6#post2739133
    Quote Quote  
  18. Originally Posted by lomero View Post
    maybe your N_m3u8DL-RE or ffmpeg or mp4decrypt are wrong because some tool can't merge at final mkv file

    so download N_m3u8DL-RE from here https://www.videohelp.com/software/N-m3u8DL-RE

    ffmpeg from here https://www.gyan.dev/ffmpeg/builds/ffmpeg-release-full.7z

    and mp4decrypt from here https://files.videohelp.com/u/287921/mp4decrypt.zip

    and download again from my code https://forum.videohelp.com/threads/412937-mediaset-infinity-m3u8-link-not-found/page6#post2739133

    ok many thanks Iomero, will try and come to you asap.
    Quote Quote  
  19. Originally Posted by sgtpepper View Post
    Yes, I awaited til the end but with same result at the end. No errors during downloading with N_m3u8DL-Re, simply after downloaded I have the folder with the name of the movie and inside this (pls see picture attached). Inside folder "0_2_1_avc1.64001e_1006143_" are many m4s files.
    The final merged file is not going to end up in that folder, but in the parent directory.
    Quote Quote  
  20. Originally Posted by white_snake View Post
    The final merged file is not going to end up in that folder, but in the parent directory
    yea, but temp folder is deleted when final video is merged. he have issue on merged final video+audio file. so, some tool are wrong
    Quote Quote  
  21. Originally Posted by white_snake View Post
    Originally Posted by sgtpepper View Post
    Yes, I awaited til the end but with same result at the end. No errors during downloading with N_m3u8DL-Re, simply after downloaded I have the folder with the name of the movie and inside this (pls see picture attached). Inside folder "0_2_1_avc1.64001e_1006143_" are many m4s files.
    The final merged file is not going to end up in that folder, but in the parent directory.
    No merged file in the parent directory at all. Only the folder with m4s files is present.
    Quote Quote  
  22. Originally Posted by lomero View Post
    Originally Posted by white_snake View Post
    The final merged file is not going to end up in that folder, but in the parent directory
    yea, but temp folder is deleted when final video is merged. he have issue on merged final video+audio file. so, some tool are wrong
    Yes, at this point I guess it might be the problem. Will try asap.
    Last edited by sgtpepper; 11th Jun 2024 at 12:38.
    Quote Quote  
  23. Originally Posted by lomero View Post
    maybe your N_m3u8DL-RE or ffmpeg or mp4decrypt are wrong because some tool can't merge at final mkv file

    so download N_m3u8DL-RE from here https://www.videohelp.com/software/N-m3u8DL-RE

    ffmpeg from here https://www.gyan.dev/ffmpeg/builds/ffmpeg-release-full.7z

    and mp4decrypt from here https://files.videohelp.com/u/287921/mp4decrypt.zip

    and download again from my code https://forum.videohelp.com/threads/412937-mediaset-infinity-m3u8-link-not-found/page6#post2739133
    Hi Iomero, I tried it and downloaded again (with your files) but unfortunately still same result: folder with m4s files, no single mkv file.
    Don't know what's going on, it's very odd.
    Quote Quote  
  24. Member aqzs's Avatar
    Join Date
    Mar 2024
    Location
    Paris
    Search Comp PM
    Originally Posted by sgtpepper View Post
    Hi Iomero, I tried it with your files but unfortunately still same result: folder with m4s files, no single mkv file.
    Don't know what's going on, it's very odd.
    Send a screenshot of the command prompt.
    Quote Quote  
  25. Originally Posted by aqzs View Post
    Originally Posted by sgtpepper View Post
    Hi Iomero, I tried it with your files but unfortunately still same result: folder with m4s files, no single mkv file.
    Don't know what's going on, it's very odd.
    Send a screenshot of the command prompt.
    This just after having done the procedure with m4s files as output:
    Image Attached Thumbnails Click image for larger version

Name:	cmd_prompt.jpg
Views:	55
Size:	149.5 KB
ID:	79811  

    Quote Quote  
  26. Member aqzs's Avatar
    Join Date
    Mar 2024
    Location
    Paris
    Search Comp PM
    Originally Posted by sgtpepper View Post
    Originally Posted by aqzs View Post
    Originally Posted by sgtpepper View Post
    Hi Iomero, I tried it with your files but unfortunately still same result: folder with m4s files, no single mkv file.
    Don't know what's going on, it's very odd.
    Send a screenshot of the command prompt.
    This just after having done the procedure with m4s files as output:
    Could you run that command WITHOUT log level OFF..

    Code:
    N_m3u8DL-RE "https://vod06.msf.cdn.mediaset.net/farmunica/2024/05/1595592_18fc9abaf1df89/dashrcenc/hd_wv_mpl.mpd" --save-name "D-day: il giorno pił lungo" -M format=mkv:muxer=mkvmerge --key eb44909b2cfe0021cd4604bcfa5cc3ad:ab91ec0783f78c3927f462f782e76c75
    Quote Quote  
  27. Originally Posted by aqzs View Post
    Originally Posted by sgtpepper View Post
    Originally Posted by aqzs View Post
    Originally Posted by sgtpepper View Post
    Hi Iomero, I tried it with your files but unfortunately still same result: folder with m4s files, no single mkv file.
    Don't know what's going on, it's very odd.
    Send a screenshot of the command prompt.
    This just after having done the procedure with m4s files as output:
    Could you run that command WITHOUT log level OFF..

    Code:
    N_m3u8DL-RE "https://vod06.msf.cdn.mediaset.net/farmunica/2024/05/1595592_18fc9abaf1df89/dashrcenc/hd_wv_mpl.mpd" --save-name "D-day: il giorno pił lungo" -M format=mkv:muxer=mkvmerge --key eb44909b2cfe0021cd4604bcfa5cc3ad:ab91ec0783f78c3927f462f782e76c75
    Hello Aqzs, I tried what you suggested (WITHOUT log level OFF), downloading the lower resolution in order to speed up the procedure and this time I oddly got another error concerning access the C:\ path but I didn't get this kind of error before now.
    Image Attached Thumbnails Click image for larger version

Name:	access _error.jpg
Views:	50
Size:	253.1 KB
ID:	79812  

    Quote Quote  
  28. Member aqzs's Avatar
    Join Date
    Mar 2024
    Location
    Paris
    Search Comp PM
    Originally Posted by sgtpepper View Post
    Hello Aqzs, I tried what you suggested (WITHOUT log level OFF), downloading the lower resolution in order to speed up the procedure and this time I oddly got another error concerning access the C:\ path but I didn't get this kind of error before now.
    Sorry I don't know how permissions are handle on windows, maybe try to download in another folder. You are not supposed to download in C:\
    Try running the command from somewhere else.
    Or add :
    Code:
    --save-dir 'C:/downloads/'
    Quote Quote  
  29. Originally Posted by aqzs View Post
    Originally Posted by sgtpepper View Post
    Hello Aqzs, I tried what you suggested (WITHOUT log level OFF), downloading the lower resolution in order to speed up the procedure and this time I oddly got another error concerning access the C:\ path but I didn't get this kind of error before now.
    Sorry I don't know how permissions are handle on windows, maybe try to download in another folder. You are not supposed to download in C:\
    Try running the command from somewhere else.
    Or add :
    Code:
    --save-dir 'C:/downloads/'
    Thanks Aqzs, will do but I am the admin. of this machine and I have full control of the system. I've already tried to save on another location inside a folder of the admin user but with no success. Anyway, I will try again to save it just leave no stone unturned. Thx again.

    code:
    C:\>N_m3u8DL-RE.exe "https://vod06.msf.cdn.mediaset.net/farmunica/2024/05/1595592_18fc9abaf1df89/dashrcenc/hd_wv_mpl.mpd" --save-name "D-day: il giorno pił lungo" -M format=mkv:muxer=mkvmerge --save-dir C:/downloads/ --key eb44909b2cfe0021cd4604bcfa5cc3ad:ab91ec0783f78c392 7f462f782e76c75
    Last edited by sgtpepper; 11th Jun 2024 at 15:42.
    Quote Quote  



Similar Threads

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