[URE-088]
Subtitles details:
![Poster of [URE-088]](covers/218/9218_cover.jpg)
- Movie:
- [URE-088]
- Year:
- 2022
- Language:
- English
- Subtitles name:
- [URE-088] (2022)
- Is draft:
- No
- Files:
[URE-088].srt
- Comments:
- 3:17:57
- Creation:
- by arashparsa on 2023-01-14 07:23:37
- Modification:
- by arashparsa on 2023-01-14 07:23:37
- Downloads:
- 1968
- ure_088__14093-20230114072337-en.zip (26.1 KB)
-
- 62 "Thank You" received
Ratings
Screenshots
You may like
Users comments
Is it just my copy? The punctuation seems to be a little wonky (technical term actually) The punctuation mark appears first on the dialogue line, but when you backspace over the first letter twice, the mark miraculously moves to the end of the line. Yet, no formatting code is being used seemingly. So my question is, Hunh?
hm... Everything punctuated appears normal when played, but all of my editors display the punctuation out of place. Only two srt files I possess appear this way. Anyone?
It has the Unicode character 'RIGHT-TO-LEFT EMBEDDING' (U+202B) at the beginning of each subtitle line, you have to delete it to make it work normally. You can convert the file to ISO 8859-1 to view and delete it.
I tried a few things on subtitletools but none of them completely normalized the srt file. I think the problem is the 'RIGHT-TO-LEFT EMBEDDING' that vongooB9 identified. The only program I found that seemed to handle that is "Gnome Subtitles". I opened the file as ISO-8859-1. Gnome Subtitles put all the periods in the right place and I exported the file as UTF-8. The UTF-8 file still had some garbage characters at the beginning of each line but a standard editor had no problem automatically finding and deleting the characters.
I can post my fixed up file if it would be useful to anyone.
I can post my fixed up file if it would be useful to anyone.
Gnome subtitles? So you use Linux? If so and if you know some command line tools, I can give you a "sed" command which fix it for you.
If you understand what this command does (never execute something you don't understand), you can run this one:
sed -i $'s/^\uFEFF//' my_subtitles.srt
It will remove the BOM on each line of the file.
sed -i $'s/^\uFEFF//' my_subtitles.srt
It will remove the BOM on each line of the file.