akiba resident JAV subtitlers & subtitle talk★NOT A SUB REQUEST THREAD★

Electromog

Akiba Citizen
Dec 7, 2009
4,436
2,705
sextb has those: https://sextb.net/sdde-617-us and https://sextb.net/sdde-625-us

Both are machine translated, looks like, with all the usual flaws that come with that.

They have quite a few uncensored subtitled movies, but do note that not all that are listed as uncensored leaked are actual leaks. Some of them are mislabled mosaic removed movies instead. The two I linked above are both actual leaked versions though.
 
  • Like
Reactions: Taako

maload

Active Member
Jul 1, 2008
615
117
infact lots of people wait for free subtitle for posted in their website.
i just wonder why they dont even use minute to do it themselve .
they must know how this subtitled was created.
some website have requst almost 5 subtitled / hour . at least ...
it s look alike bot
 

avatarthe

Well-Known Member
Feb 1, 2008
184
277
i have other question about that easyocr . i think i can installed it completely.

1 i dont have " easyocrimage.py on my pc at all . i search all my pc .

" but i have " easyocr " in my pc .

so i replace some command like this

" easyOcr -l ch_tra -d "c:\oreadcartoon"

then its show some error " need f / -- file "

do you know what is it ? and what i need to do ?
You need to c opy the Python script, that is listed in the easyocr tutorial, into a txt file and save it as “easyOcrImage.py”
 
Last edited:

maload

Active Member
Jul 1, 2008
615
117
You need to c opy the Python script, that is listed in the easyocr tutorial, into a txt file and save it as “easyOcrImage.py”
can you give me the link " listed in the easyocr tutorial" that i need to copies ?

anyway thank you so much. i will try it again
 

avatarthe

Well-Known Member
Feb 1, 2008
184
277
can you give me the link " listed in the easyocr tutorial" that i need to copies ?

anyway thank you so much. i will try it again
Here is the Python code you need to save as “EasyOCRimage.py”

Python:


directoryDefault=r'C:\VideoSubFinder5x64\RGBImages'
extensions=[".jpg",".png",".jpeg",".bmp"]
languagesDefault="ch_tra"
import os
import argparse
def main():
parser = argparse.ArgumentParser(formatter_class=argparse.RawDescriptionHelpFormatter,description=r"easyOcrImage.py -l en,ch_tra -d " + directoryDefault,epilog=codeLanguages)
parser.add_argument('-l','--langs',dest="langs",default=languagesDefault,help="Separated by (,) \"en,ch_tra\" for mix langs english & Traditional Chinese")
parser.add_argument('-d','--directory',dest="directory", default=directoryDefault,help='directory help')
args = parser.parse_args()
if not os.path.isdir(args.directory):
print ("Not exists directory: " + args.directory )
return
parentDirectory = os.path.dirname(args.directory)
directoryTXTResults = os.path.join(parentDirectory, "TXTResults")
if os.path.isdir( directoryTXTResults ):
directoryTxt=directoryTXTResults
else:
directoryTxt=args.directory
os.system("title OCR for " + args.directory + " - " + args.langs)
import easyocr
reader = easyocr.Reader( args.langs.replace(" ","").split(",") )

files = [x for x in os.listdir(args.directory) if os.path.splitext(x)[1] in extensions]
for i,x in enumerate(files):
os.system("title OCR {}/{} Processed".format(i,len(files)) )
fileImage = os.path.join(args.directory,x)
fileTxt = os.path.join(directoryTxt,x)
result = reader.readtext(fileImage,detail=0, paragraph=True)
with open(fileTxt+".txt", "w", encoding="utf-8") as f:
f.write( " ".join(result) )

codeLanguages="""Languages
Code Name
--- ----
abq Abaza
ady Adyghe
af Afrikaans
ang Angika
ar Arabic
as Assamese
ava Avar
az Azerbaijani
be Belarusian
bg Bulgarian
bh Bihari
bho Bhojpuri
bn Bengali
bs Bosnian
ch_sim Simplified Chinese
ch_tra Traditional Chinese
che Chechen
cs Czech
cy Welsh
da Danish
dar Dargwa
de German
en English
es Spanish
et Estonian
fa Persian (Farsi)
fr French
ga Irish
gom Goan Konkani
hi Hindi
hr Croatian
hu Hungarian
id Indonesian
inh Ingush
is Icelandic
it Italian
ja Japanese
kbd Kabardian
kn Kannada
ko Korean
ku Kurdish
la Latin
lbe Lak
lez Lezghian
lt Lithuanian
lv Latvian
mah Magahi
mai Maithili
mi Maori
mn Mongolian
mr Marathi
ms Malay
mt Maltese
ne Nepali
new Newari
nl Dutch
no Norwegian
oc Occitan
pl Polish
pt Portuguese
ro Romanian
ru Russian
rs_cyrillic Serbian (cyrillic)
rs_latin Serbian (latin)
sck Nagpuri
sk Slovak (need revisit)
sl Slovenian
sq Albanian
sv Swedish
sw Swahili
ta Tamil
tab Tabassaran
te Telugu
th Thai
tl Tagalog
tr Turkish
ug Uyghur
uk Ukranian
ur Urdu
uz Uzbek
vi Vietnamese (need revisit)"""
if __name__ == "__main__":
main()
 

maload

Active Member
Jul 1, 2008
615
117
Here is the Python code you need to save as “EasyOCRimage.py”

Python:


directoryDefault=r'C:\VideoSubFinder5x64\RGBImages'
extensions=[".jpg",".png",".jpeg",".bmp"]
languagesDefault="ch_tra"
import os
import argparse
def main():
parser = argparse.ArgumentParser(formatter_class=argparse.RawDescriptionHelpFormatter,description=r"easyOcrImage.py -l en,ch_tra -d " + directoryDefault,epilog=codeLanguages)
parser.add_argument('-l','--langs',dest="langs",default=languagesDefault,help="Separated by (,) \"en,ch_tra\" for mix langs english & Traditional Chinese")
parser.add_argument('-d','--directory',dest="directory", default=directoryDefault,help='directory help')
args = parser.parse_args()
if not os.path.isdir(args.directory):
print ("Not exists directory: " + args.directory )
return
parentDirectory = os.path.dirname(args.directory)
directoryTXTResults = os.path.join(parentDirectory, "TXTResults")
if os.path.isdir( directoryTXTResults ):
directoryTxt=directoryTXTResults
else:
directoryTxt=args.directory
os.system("title OCR for " + args.directory + " - " + args.langs)
import easyocr
reader = easyocr.Reader( args.langs.replace(" ","").split(",") )

files = [x for x in os.listdir(args.directory) if os.path.splitext(x)[1] in extensions]
for i,x in enumerate(files):
os.system("title OCR {}/{} Processed".format(i,len(files)) )
fileImage = os.path.join(args.directory,x)
fileTxt = os.path.join(directoryTxt,x)
result = reader.readtext(fileImage,detail=0, paragraph=True)
with open(fileTxt+".txt", "w", encoding="utf-8") as f:
f.write( " ".join(result) )

codeLanguages="""Languages
Code Name
--- ----
abq Abaza
ady Adyghe
af Afrikaans
ang Angika
ar Arabic
as Assamese
ava Avar
az Azerbaijani
be Belarusian
bg Bulgarian
bh Bihari
bho Bhojpuri
bn Bengali
bs Bosnian
ch_sim Simplified Chinese
ch_tra Traditional Chinese
che Chechen
cs Czech
cy Welsh
da Danish
dar Dargwa
de German
en English
es Spanish
et Estonian
fa Persian (Farsi)
fr French
ga Irish
gom Goan Konkani
hi Hindi
hr Croatian
hu Hungarian
id Indonesian
inh Ingush
is Icelandic
it Italian
ja Japanese
kbd Kabardian
kn Kannada
ko Korean
ku Kurdish
la Latin
lbe Lak
lez Lezghian
lt Lithuanian
lv Latvian
mah Magahi
mai Maithili
mi Maori
mn Mongolian
mr Marathi
ms Malay
mt Maltese
ne Nepali
new Newari
nl Dutch
no Norwegian
oc Occitan
pl Polish
pt Portuguese
ro Romanian
ru Russian
rs_cyrillic Serbian (cyrillic)
rs_latin Serbian (latin)
sck Nagpuri
sk Slovak (need revisit)
sl Slovenian
sq Albanian
sv Swedish
sw Swahili
ta Tamil
tab Tabassaran
te Telugu
th Thai
tl Tagalog
tr Turkish
ug Uyghur
uk Ukranian
ur Urdu
uz Uzbek
vi Vietnamese (need revisit)"""
if __name__ == "__main__":
main()
O thank you so much
 

pressiejames

New Member
Jul 7, 2019
6
2
Hi Guys,

Is someone have the english subtitle of stars-133 and stars-140?
Your help is very much appreciated.
 
Last edited:

Supergiav

New Member
Jan 5, 2021
20
10
hi guys, i've been looking for subtitles for nsps 716 and nsps 598 for a long time. does anyone know if they exist? in English ... or other languages are fine too.
 

maload

Active Member
Jul 1, 2008
615
117
hi guys, i've been looking for subtitles for nsps 716 and nsps 598 for a long time. does anyone know if they exist? in English ... or other languages are fine too.
just seach in google.com or subtitlecat.com
 

Electromog

Akiba Citizen
Dec 7, 2009
4,436
2,705
hi guys, i've been looking for subtitles for nsps 716 and nsps 598 for a long time. does anyone know if they exist? in English ... or other languages are fine too.
At least one of those two were actually posted here, so you haven't been looking all that well. Also, you've been told before not to post requests in these threads that are clearly labeled as not for requests, so please stop doing so.
 
  • Like
Reactions: Taako

Supergiav

New Member
Jan 5, 2021
20
10
At least one of those two were actually posted here, so you haven't been looking all that well. Also, you've been told before not to post requests in these threads that are clearly labeled as not for requests, so please stop doing so.
point one, I didn't make any requests, I politely asked if anyone knew if they were made ... and indeed they were. instead of bullying you could post me the content. you would have made happy a person who certainly does not spend his days in a forum. point 2. you look like a fucking cult, you're talking about sex. relax.
 

maload

Active Member
Jul 1, 2008
615
117
subtitlecat is painful. if for you those are subtitles ...
omg. i dont think this world have better website than that .
he do it for free.

people worship the chinese sub tilte but they dont even know a little bit of chinese of japanese .

i bet not much subtitle was " translating " at all .
it like 500 / 50000 was translating.
i called it " add more text " and write new story ....
so you can it do yourself ...spending your time for " imagine and add new story "
no one will spend thiers time for " adding word " for you.
or may be someone willl do it for free. funny
i know where to find it and i was tell you .
 

Taako

Akiba Citizen
May 25, 2017
1,239
841
point one, I didn't make any requests, I politely asked if anyone knew if they were made ... and indeed they were. instead of bullying you could post me the content. you would have made happy a person who certainly does not spend his days in a forum. point 2. you look like a fucking cult, you're talking about sex. relax.
You were making a request and the fact that you wrote this long statement proves you can read and decided to break the rules of the forum.
What will happen if you don't be more respectful is nobody will help you and then the mods will deal with you.
 

Supergiav

New Member
Jan 5, 2021
20
10
You were making a request and the fact that you wrote this long statement proves you can read and decided to break the rules of the forum.
What will happen if you don't be more respectful is nobody will help you and then the mods will deal with you.
I asked if you have already done it? not to make a subtitle? ... but it's a fucking forum and you can't ask questions? but how are you? ... take care ... we should be here to speak freely ... you are not well.
 

Taako

Akiba Citizen
May 25, 2017
1,239
841
I asked if you have already done it? not to make a subtitle? ... but it's a fucking forum and you can't ask questions? but how are you? ... take care ... we should be here to speak freely ... you are not well.
"hi guys, i've been looking for subtitles for nsps 716 and nsps 598 for a long time. does anyone know if they exist? in English ... or other languages are fine too."

People here aren't stupid. And that includes you. Maybe slow lol
It doesn't take a rocket scientist to know what you were trying to do.

I found subs(I don't use subtitlecat) for at least one of them... quite easily. So, yeah.

Anyways I'm done with you. But if you want help. Try contributing some subs or try using the various methods to create your own. You'll feel better about yourself in the process :)
 
Last edited:

Supergiav

New Member
Jan 5, 2021
20
10
"hi guys, i've been looking for subtitles for nsps 716 and nsps 598 for a long time. does anyone know if they exist? in English ... or other languages are fine too."

People here aren't stupid. And that includes you. Maybe slow lol
It doesn't take a rocket scientist to know what you were trying to do.

I found subs for at least one of them... easily. So, yeah.

Anyways I'm done with you. But if you want help. Try contributing some subs or try using the various methods to create your own. You'll feel better about yourself in the process :)
"what was I trying to do?" ... but how are you? my only other post on this forum will be from 2 years ago, always with the same question, but you can't ask .. the only nsps 716 subtitle ever found is on subtitlecat ... and it's horrendous. in a fucking forum, you can't ask a question. you are fantastic. heal yourself friend. do less sawing by straight ...
 

Taako

Akiba Citizen
May 25, 2017
1,239
841
"what was I trying to do?" ... but how are you? my only other post on this forum will be from 2 years ago, always with the same question, but you can't ask .. the only nsps 716 subtitle ever found is on subtitlecat ... and it's horrendous. in a fucking forum, you can't ask a question. you are fantastic. heal yourself friend. do less sawing by straight ...
Now you can use your energy to improve those horrendous subs. There are various guides to help you get started.
This method did not work for me(I prefer old school) But it could help you.

I really liked the second one the best.

Good luck. You will be very happy when you start creating your own subs and hopefully you'll contribute too. :D
 
Last edited:
  • Like
Reactions: Palakona

Taako

Akiba Citizen
May 25, 2017
1,239
841
Hey everyone,
has anyone seen this word, あそう(A sō)?
How do you generally use it. I go with Yes. But I have seen That's right or So good used also.
What do you think is better after a woman climax and she says (A sō)?
 

composite

Active Member
Jul 25, 2015
222
146
I know this isn't a subtitle request thread. But is there a place to make subtitle requests?

If so, I'd love subtitles of this movie - MKON-049



mkon049pl-jpg.2423312
 
  • Like
Reactions: shawn720s