VideoHelp Forum




+ Reply to Thread
Results 1 to 14 of 14
  1. https://dizikral.com/ru-1-sezon-3-bolum-izle-hd2

    I have stream detector installed and it appears as hls in jpeg format.

    There are 3 options in the video. How can I download it in high quality? How can I find the link easily, thank you
    Quote Quote  
  2. Get the playlist as a local file:

    Code:
    import requests
    headers = {
        'referer': 'https://kralplayoynat.com/embed/28KEOikhL1zDfp6',
    }
    response = requests.get('https://kralplayoynat.com/m3u/NzZJNkJ6dmlyay82aXZhSE1wc1JBbnl3ODBkYWZxT2lHdGtLT3hrYmJTNVUwNEdFRXNoYlI4b001MmhHeXhxUDZjTzdRaDFDR1dtRVhXcDlhemVBQnVNaWNOazZFdnhaRXRSVm1aOUNRNUxMdzFNMmhTUERkSHVEaG9WNm5wZFU5L1RvVEtYSmRTTGN5TWhrRjZud0YvQXV4TUYvSkJJQ25YQ1VoMWpQaWR2QXloSUs2TGQrOVJiOUpkWkhnU0pGUDJYZjJyS0J0YlZLQ05LOTlhbThySE9uMUREVlZJVHZxZzhCUHh4T2l6bGhmQWNXN09Hem5Cc0VSN1BpZXJpUE1nOVJSLy9ZV3I0OTlLTldLL0VySm5GOWh0azJXalcvWk9waFZHdTYwTVZYUk5TUDlmSmk0NXNCOFJQMFFVaWE=', headers=headers)
    with open('playlist.m3u8', 'w') as file:
        file.write(response.text)
    Run:
    Code:
    N_m3u8DL-RE playlist.m3u8
    For some reason it doesn't work if you pass the headers directly to N_m3u8DL-RE or yt-dlp.
    Quote Quote  
  3. Member aqzs's Avatar
    Join Date
    Mar 2024
    Location
    Paris
    Search Comp PM
    Originally Posted by mjking View Post
    https://dizikral.com/ru-1-sezon-3-bolum-izle-hd2

    I have stream detector installed and it appears as hls in jpeg format.

    There are 3 options in the video. How can I download it in high quality? How can I find the link easily, thank you
    You have to look for 'https://kralplayoynat.com/list/.......'. Then you can download using N_m3u8DL-RE and adding the headers.
    Here are your files : https://www.swisstransfer.com/d/3b13896a-b0d8-4145-8bbf-02b63897b577

    (I didn't included subtitles, I can reupload with subs if you want)
    Last edited by aqzs; 3rd Jun 2024 at 12:36. Reason: subs
    Quote Quote  
  4. Guys, if you could make a short video on how you found the link and how to download ??? It would be greatly appreciated. I don't know how to find the link. If I do what you say, I will only download that episode.
    Quote Quote  
  5. Member
    Join Date
    Mar 2021
    Location
    Israel
    Search Comp PM
    It is easier to download from YouTube with IDM. For example:
    https://www.youtube.com/watch?v=Np2V2WdkSCM&ab_channel=GA%C4%B0N
    (I hope it is the same series you are interested in)
    Quote Quote  
  6. Originally Posted by Subtitles View Post
    It is easier to download from YouTube with IDM. For example:
    https://www.youtube.com/watch?v=Np2V2WdkSCM&ab_channel=GA%C4%B0N
    (I hope it is the same series you are interested in)
    Yes, it is the same series, but you did not comment on the subject.

    It's just promoting the episode. This series is broadcast on a digital platform and the site I gave broadcasts it there, so I opened the issue to download the full episode from there. So what should I do with the 1 minute introduction?
    Quote Quote  
  7. Member
    Join Date
    Mar 2021
    Location
    Israel
    Search Comp PM
    Originally Posted by mjking View Post
    Originally Posted by Subtitles View Post
    It is easier to download from YouTube with IDM. For example:
    https://www.youtube.com/watch?v=Np2V2WdkSCM&ab_channel=GA%C4%B0N
    (I hope it is the same series you are interested in)
    Yes, it is the same series, but you did not comment on the subject.

    It's just promoting the episode. This series is broadcast on a digital platform and the site I gave broadcasts it there, so I opened the issue to download the full episode from there. So what should I do with the 1 minute introduction?
    I wanted to make sure about the series first before I do some searching.
    With Turkish series and movies, I always look for the original platform that created the show instead of websites that have subscriptions, because a lot of original platforms have the shows without encryption and are easier to download.
    For this series RU, the original platform is https://www.gain.tv/
    I don't know this website but you are welcome to try it and see if it is better than the link that you posted.
    Quote Quote  
  8. Feels Good Man 2nHxWW6GkN1l916N3ayz8HQoi's Avatar
    Join Date
    Jan 2024
    Location
    Pepe Island
    Search Comp PM
    Originally Posted by mjking View Post
    I don't know how to find the link. If I do what you say, I will only download that episode.
    You can download it straight from your site. As @aqzs said, look for the /list link. Go to your page --> right click + inspect --> go to network tab --> filter for "/list" --> refresh page --> copy the full URL of the first network request. Now make sure you have N_m3u8DL-RE installed.

    You're gonna need a few headers to be able to download it. As @white_snake said, "referer" is one of them and you can completely ignore any video id used for that embed link. An additional header you need is "accept". So the download command is:
    Code:
    N_m3u8DL-RE.exe "YOUR_LIST_URL" --header "Accept: */*" --header "Referer: https://kralplayoynat.com/embed" --save-name video
    --[----->+<]>.++++++++++++.---.--------.
    [*drm mass downloader: widefrog*]~~~~~~~~~~~[*how to make your own mass downloader: guide*]
    Quote Quote  
  9. Member aqzs's Avatar
    Join Date
    Mar 2024
    Location
    Paris
    Search Comp PM
    In case N_m3u8DL-RE fails to merge :
    HTML Code:
    for f in *.ts; do echo "file '$f'" >> file_list.txt; done
    
    [url=https://www.videohelp.com/software/ffmpeg]ffmpeg[/url] -f concat -safe 0 -i file_list.txt -c copy output.mkv
    Quote Quote  
  10. Originally Posted by 2nHxWW6GkN1l916N3ayz8HQoi View Post
    An additional header you need is "accept".
    Ah, that fixed the 404s I was getting. Would never have guessed it because the requests library didn't need that header to get the right response, weird.

    Another inconvenience you might encounter with this type of urls is N_m3u8DL-RE spitting:
    Code:
    ERROR: The filename, directory name, or volume label syntax is incorrect.
    because of the file name exceeding Windows' maximum path length, so it's best to specify the output file name to avoid it:
    Code:
    --save-name out
    Quote Quote  
  11. Thanks to azqs, I was able to download it. Thank you to everyone who cares and helps.
    Quote Quote  
  12. Feels Good Man 2nHxWW6GkN1l916N3ayz8HQoi's Avatar
    Join Date
    Jan 2024
    Location
    Pepe Island
    Search Comp PM
    Originally Posted by white_snake View Post
    because of the file name exceeding Windows' maximum path length, so it's best to specify the output file name to avoid it
    I know, that's why I had that "--save-name video" argument added to the command. It's useful since you don't have to manually merge them.
    --[----->+<]>.++++++++++++.---.--------.
    [*drm mass downloader: widefrog*]~~~~~~~~~~~[*how to make your own mass downloader: guide*]
    Quote Quote  
  13. Member aqzs's Avatar
    Join Date
    Mar 2024
    Location
    Paris
    Search Comp PM
    Originally Posted by mjking View Post
    Thanks to azqs, I was able to download it. Thank you to everyone who cares and helps.
    No problem !
    Quote Quote  
  14. Member aqzs's Avatar
    Join Date
    Mar 2024
    Location
    Paris
    Search Comp PM
    I fully reversed the way the player is getting url. I can provide download command based on video/serie url, ex for https://dizikral.com/diziler/tulsa-king-izle :
    HTML Code:
    Enter the serie url: https://dizikral.com/diziler/tulsa-king-izle
    N_m3u8DL-RE "https://kralplayoynat.com/list/NWRHVXk4T1htZVJhV1VlV1FSRlN3VDF6UEZ5dm5oQ28xSXhhQ3hIQVlhVGhMY1BuWU1SVUhOdnRPclNnbTVEbWVZWE0ralNKdmlaWElCTllvcjdFWUJwbTNHd0RjR1BWbGtYWjFTVm5vcGc9"  --save-name "tulsa.king.1.sezon.6.bolum.izle" --select-video best --select-audio best --select-subtitle all -mt -M format=mkv  --log-level OFF
    N_m3u8DL-RE "https://kralplayoynat.com/list/NWRHVXk4T1htZVJhV1VlV1FSRlN3VDF6UEZ5dm5oQ28xSXhhQ3hIQVlhVGhMY1BuWU1SVUhOdnRPclNnbTVEbXQvTXNrWVJlSjJpNnBTTTBaSEpya0Z4RG5JQm9PMzlJVThFNVJ5N0FMcFk9"  --save-name "tulsa.king.1.sezon.1.bolum.izle.hd1" --select-video best --select-audio best --select-subtitle all -mt -M format=mkv  --log-level OFF
    N_m3u8DL-RE "https://kralplayoynat.com/list/NWRHVXk4T1htZVJhV1VlV1FSRlN3VDF6UEZ5dm5oQ28xSXhhQ3hIQVlhVGhMY1BuWU1SVUhOdnRPclNnbTVEbWIxMVdja1J1NzBLL0g5cGE5NFpZMGp6MnZVbzQwT2ZLK3ZrWmpFcW5GUWs9"  --save-name "tulsa.king.1.sezon.2.bolum.izle" --select-video best --select-audio best --select-subtitle all -mt -M format=mkv  --log-level OFF
    N_m3u8DL-RE "https://kralplayoynat.com/list/NWRHVXk4T1htZVJhV1VlV1FSRlN3VDF6UEZ5dm5oQ28xSXhhQ3hIQVlhVGhMY1BuWU1SVUhOdnRPclNnbTVEbW11dXNUWkwvOE4wcWdXNmpFbzBwN09Tbm1SR281ZThIc1lkbzJHVXRlR009"  --save-name "tulsa.king.1.sezon.3.bolum.izle" --select-video best --select-audio best --select-subtitle all -mt -M format=mkv  --log-level OFF
    N_m3u8DL-RE "https://kralplayoynat.com/list/NWRHVXk4T1htZVJhV1VlV1FSRlN3VDF6UEZ5dm5oQ28xSXhhQ3hIQVlhVGhMY1BuWU1SVUhOdnRPclNnbTVEbUhQRnZKQzZFWnBuUzJQRmdqNlFPeHNucm5TV1BrQUNrZ3pRY3ZRVlMwWUU9"  --save-name "tulsa.king.1.sezon.4.bolum.izle" --select-video best --select-audio best --select-subtitle all -mt -M format=mkv  --log-level OFF
    N_m3u8DL-RE "https://kralplayoynat.com/list/NWRHVXk4T1htZVJhV1VlV1FSRlN3VDF6UEZ5dm5oQ28xSXhhQ3hIQVlhVGhMY1BuWU1SVUhOdnRPclNnbTVEbW5SWU9GN3k2SXVPeXhpUUZYaGtuL3M4aWcvTWhnSkk2ejBZRFJURnFqVTQ9"  --save-name "tulsa.king.1.sezon.5.bolum.izle" --select-video best --select-audio best --select-subtitle all -mt -M format=mkv  --log-level OFF
    N_m3u8DL-RE "https://kralplayoynat.com/list/NWRHVXk4T1htZVJhV1VlV1FSRlN3VDF6UEZ5dm5oQ28xSXhhQ3hIQVlhVGhMY1BuWU1SVUhOdnRPclNnbTVEbWVZWE0ralNKdmlaWElCTllvcjdFWUJwbTNHd0RjR1BWbGtYWjFTVm5vcGc9"  --save-name "tulsa.king.1.sezon.6.bolum.izle" --select-video best --select-audio best --select-subtitle all -mt -M format=mkv  --log-level OFF
    N_m3u8DL-RE "https://kralplayoynat.com/list/NWRHVXk4T1htZVJhV1VlV1FSRlN3VDF6UEZ5dm5oQ28xSXhhQ3hIQVlhVGhMY1BuWU1SVUhOdnRPclNnbTVEbUVoclZQSHlyT3ZRTzNqRVV0RnkvQ3RMMDJTZDRNbzd5Ykd0TnhpZWlNeG89"  --save-name "tulsa.king.1.sezon.7.bolum.izle" --select-video best --select-audio best --select-subtitle all -mt -M format=mkv  --log-level OFF
    N_m3u8DL-RE "https://kralplayoynat.com/list/NWRHVXk4T1htZVJhV1VlV1FSRlN3VDF6UEZ5dm5oQ28xSXhhQ3hIQVlhVGhMY1BuWU1SVUhOdnRPclNnbTVEbWIyNlBiU1pSRHB2WjNEWUhOQ3RxRHN2QU9IaHdXbkh6TlBkWDRBbnEvQVk9"  --save-name "tulsa.king.1.sezon.8.bolum.izle" --select-video best --select-audio best --select-subtitle all -mt -M format=mkv  --log-level OFF
    N_m3u8DL-RE "https://kralplayoynat.com/list/NWRHVXk4T1htZVJhV1VlV1FSRlN3VDF6UEZ5dm5oQ28xSXhhQ3hIQVlhVGhMY1BuWU1SVUhOdnRPclNnbTVEbWpIdjA5MXU2YkNyUHhZUDJTbklPbVRNWE55QURJZkE3Y0h1Y2drWjF3YU09"  --save-name "tulsa.king.1.sezon.9.bolum.izle" --select-video best --select-audio best --select-subtitle all -mt -M format=mkv  --log-level OFF
    Quote Quote  



Similar Threads

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