https://www.iq.com/play/my-special-girl-episode-1-1hd4op6x2co?lang=en_us
I have been trying to download this, but nothing is showing when I try to find the m3u link in the network tab. I refresh the page too. Then I did some research and checked the source page and searched for the m3u link and found it, but it's huge in size, almost 5KB. Is it the right m3u link if not how can I find it plz help.
+ Reply to Thread
Results 1 to 13 of 13
-
-
That's the good m3u8. You did good. Doesn't matter how big it is. Export it. Replace \n with proper newline using sed. Replace \u0026 with & and you have a valid m3u8 file. You can get max 720p using that m3u8. I dunno if the 1080p is hidden but you need to pay for that according to them.
Edit: Here's the video with all 11 subtitles if you want to download https://www.transfernow.net/dl/20240208NmkCdZsJLast edited by 2nHxWW6GkN1l916N3ayz8HQoi; 8th Feb 2024 at 09:47.
--[----->+<]>.++++++++++++.---.--------.
[*drm mass downloader: widefrog*]~~~~~~~~~~~[*how to make your own mass downloader: guide*] -
-
Upload the m3u8 file you exported. I wanna take a look.
--[----->+<]>.++++++++++++.---.--------.
[*drm mass downloader: widefrog*]~~~~~~~~~~~[*how to make your own mass downloader: guide*] -
Here is the m3u file: https://www.transfernow.net/dl/20240209HUuVMDon
-
That's a bad m3u8 file. You didn't properly replace what I told you to. If you want an easier solution, load the page, choose the quality you want (720p for example), wait for it to load, and refresh the page. If the page refreshed and keeps the quality you chose then you right-click and view the page source and then you save that code to a txt file called page.txt. After doing that, you can then use the following command in bash to do it:
Code:cat page.txt | grep -oP "#EXTM3U[\s\S]*?#EXT-X-ENDLIST" | sed 's/\\n/\n/g; s/\\u0026/\&/g' > output.m3u8
Code:Get-Content page.txt | Select-String -Pattern "#EXTM3U(?s)(.*?#EXT-X-ENDLIST)" | ForEach-Object { $_.Matches.Value -replace '\\n', "`n" -replace '\\u0026', '&' } | Out-File -FilePath output.m3u8 -Encoding Default
[Attachment 76882 - Click to enlarge]
Similarly can be done for the subtitles.--[----->+<]>.++++++++++++.---.--------.
[*drm mass downloader: widefrog*]~~~~~~~~~~~[*how to make your own mass downloader: guide*] -
I forgot that '\' is an escape character so I have to use '\\n' and '\\u0026'. I used the following command in Powershell, and it worked.
Code:$content = Get-Content -Raw new.m3u8 $content = $content -replace '\\n', "`n" -replace '\\u0026', '&' Set-Content -Value $content -Path Output.m3u8
It's downloaded, but the subtitle is missing. From .mpd N_m3u8DL-RE download everything but not the same for m3u8 link How can I get the subtitle? -
[Attachment 76894 - Click to enlarge]
You can automate it by writing your own script. Though if you only want this for just one video, I don't see the point.--[----->+<]>.++++++++++++.---.--------.
[*drm mass downloader: widefrog*]~~~~~~~~~~~[*how to make your own mass downloader: guide*] -
-
Append https://meta.video.iqiyi.com
--[----->+<]>.++++++++++++.---.--------.
[*drm mass downloader: widefrog*]~~~~~~~~~~~[*how to make your own mass downloader: guide*] -
-
You're welcome. Here's a neat little script that can be used as a subtitle scraper for that site. Was too lazy to bother with powershell.
Code:content=$(curl -s https://www.iq.com/play/my-special-girl-episode-1-1hd4op6x2co?lang=en_us) while IFS=$'\t' read -r name srt; do processed_srt=$(echo "$srt" | sed 's/\\u0026/\&/g' | sed 's|^|https://meta.video.iqiyi.com/|') curl -s "$processed_srt" -o "./SRT - $name.txt" done < <(echo "$content" | grep -o '"_name"\s*:\s*"[^"]*"' | sed 's/"_name"\s*:\s*"\(.*\)"/\1/' | paste -d '\t' - <(echo "$content" | grep -o '"srt"\s*:\s*"[^"]*"' | sed 's/"srt"\s*:\s*"\(.*\)"/\1/'))
--[----->+<]>.++++++++++++.---.--------.
[*drm mass downloader: widefrog*]~~~~~~~~~~~[*how to make your own mass downloader: guide*]
Similar Threads
-
Can anyone help with a m3u8 link .
By aelhouari in forum Video Streaming DownloadingReplies: 0Last Post: 20th Sep 2022, 22:49 -
m3u8 link not downloading
By Tusor in forum Video Streaming DownloadingReplies: 1Last Post: 27th May 2022, 16:23 -
How can i get m3u8 link from netu.tv
By madnesofjuice in forum Video Streaming DownloadingReplies: 66Last Post: 31st Oct 2021, 08:59 -
How to play this m3u8 link
By takheang303 in forum Video Streaming DownloadingReplies: 5Last Post: 1st Oct 2021, 17:18 -
how to get m3u8 link from this site
By ningnong132 in forum Video Streaming DownloadingReplies: 22Last Post: 15th Jul 2021, 03:07