hi guys,I have some questions about subtitles.
I'm watching a movie on a website, but I found that the website has subtitles in languages other than English. When I clicked on the additional menu, I found that there were subtitles in other languages.
[Attachment 84098 - Click to enlarge]
[Attachment 84099 - Click to enlarge]
[Attachment 84100 - Click to enlarge] I want to download them, but every time I download the subtitle file, it only has English subtitles. Why? Can someone tell me how to download subtitles in other languages? For example, here are the Chinese subtitles
Here is the URL of the video
https://goplay.anontpp.com/4b2d313032303436383539/I-am-Solo-Love-Forever/Episode-78/
+ Reply to Thread
Results 1 to 16 of 16
-
-
I don't know if this is helpful, but at www.opensubtitles.org you can search for subtitle in several languages. You do have to know what the movie title is.
-
Here are your 3 subtitles, en, vt, ch
https://www.swisstransfer.com/d/6931bff1-d903-4034-9377-260537a96683
In case you want the video from that page as well, here it is
https://www.swisstransfer.com/d/27987adf-eb7b-4d07-a18d-19a689d78e1b
decrypted using key
Code:c8195a26d3314bd0a8ff53694adb781d:d1f5344d050f6ee3f59237e1f72eaa4c
--[----->+<]>.++++++++++++.---.--------.
[*drm mass downloader: widefrog*]~~~[*how to make your own mass downloader: guide*] -
Thank you, may I know how to get these? What kind of software is used to get these? Or something else? I also need to download other videos and their non-English subtitle files, not just this one video and other subtitles. Thank you very much. I am a novice.
-
-
Excuse me,I need a way to get subtitles in other languages. I'm a beginner, hope someone can give me some help, thank you!
-
For subtitles, use firefox + this addon
https://addons.mozilla.org/en-US/firefox/addon/anti-anti-debug/
Load the video and right click -> inspect network requests. Then change language to what you want and filter for subs.vtt
When you find that request, don't bother copying the URL since it's a one time request so it fails. Simply copy the subtitle from the response tab and paste it in a text file locally.
[Attachment 84121 - Click to enlarge]
For video use
https://forum.videohelp.com/threads/416316-[Release]-WidevineProxy2-Extension-Bypass-H...ng#post2754872
If you're a novice read the creator's tutorial.Last edited by 2nHxWW6GkN1l916N3ayz8HQoi; 14th Dec 2024 at 03:28.
--[----->+<]>.++++++++++++.---.--------.
[*drm mass downloader: widefrog*]~~~[*how to make your own mass downloader: guide*] -
Thank you, according to your method, I successfully got the subtitle file I wanted. I also downloaded the relevant expansion files from the post address you provided. After I get the URL, Key, CMD and other codes, I don't know how to use them? Should I download other software to use these codes? What should I do next? Is there any relevant usage instructions for this forum?
-
[Attachment 84191 - Click to enlarge]
I get this page, but what do I do next? I don't know. Do I need to download other software or files? Please tell me what files I need to download? Are there any relevant instructions? Thanks -
-
If you click on the "Cmd" text highlighted from the addon window, you'll copy to clipboard a download command that uses the N_m3u8DL-RE program. Then you open cmd in whatever folder you want and paste that command to download the video. To open cmd in a specific folder, open file explorer and type cmd in the address path bar or type in cmd: cd "full path"
N_m3u8DL-re can be found here
https://www.videohelp.com/software/N-m3u8DL-RE--[----->+<]>.++++++++++++.---.--------.
[*drm mass downloader: widefrog*]~~~[*how to make your own mass downloader: guide*] -
Hi,
Sorry to hijack your helpful thread but I have a similar problem, but on a different site. I'm wanting to get the subtitles for a film here:
https://indiancine.ma/KYL/
I downloaded and installed the Firefox addon you suggested, but when inspecting the network I see nothing like your picture. It's out of copyright and there's no DRM. I got the film easily, but am completely stumped how to get the subs. Can you help?
Thank you. -
Your subtitle: https://www.swisstransfer.com/d/bbef82eb-d948-4ad8-b9e2-d5dad9e79a63
Check and see if it's properly synced with the full video.--[----->+<]>.++++++++++++.---.--------.
[*drm mass downloader: widefrog*]~~~[*how to make your own mass downloader: guide*] -
Hello again.
I don't worry much about synch as I retime them all anyway, after slowing them to film speed. This is a PAL source. I did have a problem converting them to the ASS I usually work with as conversions in both Subtitle Edit and Subtitle Workshop didn't produce anything Aegisub (or even Substation Alpha) would accept. But I got it sorted out and am now on my merry way. And thank you so much for doing that. But, as they say:
"Give a man a fish, and you feed him for a day. Teach a man to fish, and you feed him for a lifetime."
[SS]Vegata showed me how once before using HAR and JSON files. It worked once on a different film from that same site, but I couldn't make it work this time. Did you use the Anti Anti Debug Firefox add on, the method I (sort of) just described, or something else?
Thanks again. It saves me many hours of drudge work. -
You can use Aegisub directly, import the srt, and export it to ssa.
You shouldn't expect one method that worked for one site, to work for another. It's true that stream detector is enough for most sites but when a dev bothers a little bit more in hiding the subs, you're gonna need a custom solution each time. As for how to get subs from
https://indiancine.ma/KYL/player
- Inspect network requests, filter for "/api/", refresh page, load video and skip to the first subtitle line to make sure subs got loaded
- You're gonna get a lot of requests that match the search. To find the right one, go to the "request" tab for each result (in raw form) and search in it the word "layers". When you find it appearing, that means you found the right request.
- For the found request, go to the response tab and copy the entire response in raw text form. Create on desktop an empty folder, in it create the file "input.txt" and drop in it the raw text you previously copied
[Attachment 84238 - Click to enlarge]
- If you don't have python, install from https://www.python.org/downloads/ and make sure you enable check the pip installation option
- In the previous folder you made, create the file "main.py" , make sure it's actually called main.py and not main.py.txt, you have to see the real file extension on file explorer. In the main.py file drop this script
Code:import json import math INPUT_FILE = "input.txt" def get_time(seconds): hs = math.floor(seconds // 3600) mn = math.floor((seconds % 3600) // 60) sc = math.floor(seconds % 60) ms = round((seconds % 1) * 10000) ms = str(ms)[0:3] return f"{hs:02}:{mn:02}:{sc:02},{ms}" def generate_srt(input_content): input_content = input_content["data"]["layers"]["subtitles"] out_path = "output_srt.srt" srt_content = "" line_index = 0 for line_content in input_content: line_index += 1 line_start = get_time(line_content["in"]) line_end = get_time(line_content["out"]) line_text = line_content["value"] srt_content += f"{line_index}\n{line_start} --> {line_end}\n{line_text}\n\n" with open(out_path, "w") as o: o.write(srt_content) return out_path if __name__ == '__main__': with open(INPUT_FILE, 'r') as f: s = json.loads(f.read()) output_path = generate_srt(s) print(f'Saved srt to {output_path}')
Code:python main.py
This method should work, regardless of indiancine video--[----->+<]>.++++++++++++.---.--------.
[*drm mass downloader: widefrog*]~~~[*how to make your own mass downloader: guide*] -
That's just it, I can't. I try to open the SRT in Aegisub and it says, "One or more characters in the input string were not valid characters in the given input encoding". But, as I said, I managed to solve that particular problem.
I've copied down the instructions for when I try to get subs from there in the future. Just creating those instructions must have taken you some time and it also says you spent serious time getting those SRTs to begin with. I'm very grateful.
But in case I don't have any luck in the future (having never worked with Python), you might see me back here whining for help again.
Similar Threads
-
Subtitles don't appear the same in other videos
By TheCheezyBear in forum Newbie / General discussionsReplies: 4Last Post: 24th Feb 2024, 16:32 -
MX Player Subtitles Settings not working on videos with SSA subtitles
By anubhav007 in forum Newbie / General discussionsReplies: 0Last Post: 14th Jun 2023, 06:07 -
I have all files (KEYS) but i don't know where use
By Zaito in forum Video Streaming DownloadingReplies: 13Last Post: 18th Jul 2022, 14:30 -
MKV subtitles don't display with any dlna server I've tried
By Xylem Flow in forum Software PlayingReplies: 5Last Post: 18th Nov 2021, 20:05 -
Insert Forced subtitles in Original subtitles (.srt)
By VideoOn in forum EditingReplies: 1Last Post: 12th Feb 2020, 02:43