The Akiba-online English Sub Project★NOT A SUB REQUEST THREAD★

xavcierw

X-Man
Mar 30, 2013
280
180
View attachment 2291983 View attachment 2291984

I have one query guys . Whether you noticed or not , no matter how many times I try to download these two particular JAV , they always show error in vlc/km player ! Did you guys have the same issues ? For the record I tried hpjav.tv/ , jav.guru/ , torrents from sukebei.nyaa.si/ and even Gdrive links from javlibrary.com/ !! Nothing seems to work.. wtf !! Please gimme a working torrent or mega link you any of you have ! Thanks , keep the free subs rolling !!!
========================
Hi Arny,

Have you been able to get these 2 JAVs? If not, I'll create a MEGAsync link and provide that to you from my folder. I believe I downloaded both from JAVLibrary and haven't had any problems with them.

Cheers!

X-Man
 

theydonotwantto

Active Member
Aug 10, 2011
224
168
Wow! This is great work! I loaded up your html file in chrome and once the images had loaded I saved it as a complete webpage to keep the images local, turned into a 1.5 GB file. Your programming skills are obviously beyond mine, any chance you could use your skills to create ah excel file instead? Having this info as a searchable data base with the cover image, code, actress, translated movie title, plot, and series all as searchable fields would be awesome! I’ve been collecting RunBkk’s subtitle updates ( which is why I started this topic in the first place), some of which are in the 11000 subs file I gave to Arny ( I was going to release it once I finished translating all of the directories and file names into English/ Roman characters) and I’ve been playing around using JAVMovieScrapper to populate the above fields and create info files Which can be reached in Emby or MC, but it’s messy having so the seperate info files, a single database of excel file would be easier.

does you think you could create something like this?

I made a tool for myself. Not ready to open source it yet. I modified it for you. Please check attached RAR and PDF guide. It cannot export directly to excel (no time to code that) but you can do just 1 extra step: copy text to excel sheet.
 

Attachments

  • Link Checker Guide.pdf
    504.5 KB · Views: 442
  • LinkChecker 2.0.201223.rar
    906 KB · Views: 438

avatarthe

Well-Known Member
Feb 1, 2008
184
277
HAPPY NEW YEAR!

Here is a collection of RUNBKK's Chinese subtitle releases for the second half of 2020 (7-6-20 to 12-31-20)
There are 761 subtitles and should start up right where the 11,500+ subtitle pack ended as that pack contained subs RUNBKK released on 6-16-20, but not the one's he released 7-6-20
Please note the dates I'm referring to are the dates the subtitle packs were released not the dates the movies were released.

Enjoy, and if you translate them, please post the translations!

https://mega.nz/file/rckTkYDQ#5jYL1gZDTXLzoRgCvjCTS6OnPEriVP-uSTMRGIw6ekg

Also here is an Excel file containing a listing of all of the films, actresses, film title and cover image, check it out, it's a nice was to pick films you might not have yet (see photo)
jav xl3.JPG

Excel File: https://mega.nz/file/HUtwzJ6a#JeDMDjz8xnYvbd2b63aIe78ZVFTZCvIag7R3DO7qt6w
 
Last edited:

IdeNali

Member
Jul 27, 2016
85
75
I tried to use "pyTranscriber v1.5" today but it always fails in "Step 2". I tried multiple different audio/video files and none seem to work... Is that a known issue of this tool?

Edit: I switched to v1.4 and now it works.
Edit2: v1.4 doesn't seem be reliable as well. :(
 
Last edited:

avatarthe

Well-Known Member
Feb 1, 2008
184
277
Ok, Using software provided by theydonotwantto I am trying o create an Excel speed sheet listing the subtitles contained in the RUNBKK collection I recently uploaded.

The fields on the spreed sheet include the Movie ID number, Film Title, Actress name, Studio, Fettish tags (ie, BIG TITS, CREAMPIE) Nd the movie cover JPG.
Since it's a Excl file you can sot and search it based on any of the fields, it's pretty cool!


I used the following piece of VB code to replace the Cover image urls in the cells with the actual cover images
Public Sub Add_Images_To_Cells()

Dim lastRow As Long
Dim URLs As Range, URL As Range
Dim pic As Picture

With ActiveSheet
lastRow = .Cells(Rows.Count, "A").End(xlUp).row
Set URLs = .Range("A2:A" & lastRow)
End With

For Each URL In URLs
URL.Offset(0, 1).Select
Set pic = URL.Parent.Pictures.Insert(URL.Value)
With pic.ShapeRange
.LockAspectRatio = msoFalse
.Height = URL.Offset(0, 1).Height - 1
.Width = URL.Offset(0, 1).Width - 1
.LockAspectRatio = msoTrue
End With

DoEvents
Next

End Sub

Now I'm trying to save the Excel file so I can upload it here, but it won't save the cover images into the document!
As I am not a routine excel user I was hoping someone in the fourm with more excel knowledge could tell me how to do this.

Thanks.

View media item 38182




QUOTE="avatarthe, post: 4170762, member: 52407"]
HAPPY NEW YEAR!

Here is a collection of RUNBKK's Chinese subtitle releases for the second half of 2020 (7-6-20 to 12-31-20)
There are 761 subtitles and should start up right where the 11,500+ subtitle pack ended as that pack contained subs RUNBKK released on 6-16-20, but not the one's he released 7-6-20
Please note the dates I'm referring to are the dates the subtitle packs were released not the dates the movies were released.

Enjoy, and if you translate them, please post the translations!

https://mega.nz/file/rckTkYDQ#5jYL1gZDTXLzoRgCvjCTS6OnPEriVP-uSTMRGIw6ekg[/QUOTE]
 

avatarthe

Well-Known Member
Feb 1, 2008
184
277
Okay, I worked it out! Here is the Excel file, check it out it's pretty cool, it comes sorted by film code, but you can re-sort by actress, or release date. or Genre

https://mega.nz/file/HUtwzJ6a#JeDMDjz8xnYvbd2b63aIe78ZVFTZCvIag7R3DO7qt6w

jav xl3.JPG

Ok, Using software provided by theydonotwantto I am trying o create an Excel speed sheet listing the subtitles contained in the RUNBKK collection I recently uploaded.

The fields on the spreed sheet include the Movie ID number, Film Title, Actress name, Studio, Fettish tags (ie, BIG TITS, CREAMPIE) Nd the movie cover JPG.
Since it's a Excl file you can sot and search it based on any of the fields, it's pretty cool!


I used the following piece of VB code to replace the Cover image urls in the cells with the actual cover images
Public Sub Add_Images_To_Cells()

Dim lastRow As Long
Dim URLs As Range, URL As Range
Dim pic As Picture

With ActiveSheet
lastRow = .Cells(Rows.Count, "A").End(xlUp).row
Set URLs = .Range("A2:A" & lastRow)
End With

For Each URL In URLs
URL.Offset(0, 1).Select
Set pic = URL.Parent.Pictures.Insert(URL.Value)
With pic.ShapeRange
.LockAspectRatio = msoFalse
.Height = URL.Offset(0, 1).Height - 1
.Width = URL.Offset(0, 1).Width - 1
.LockAspectRatio = msoTrue
End With

DoEvents
Next

End Sub

Now I'm trying to save the Excel file so I can upload it here, but it won't save the cover images into the document!
As I am not a routine excel user I was hoping someone in the fourm with more excel knowledge could tell me how to do this.

Thanks.

View media item 38182




QUOTE="avatarthe, post: 4170762, member: 52407"]
HAPPY NEW YEAR!

Here is a collection of RUNBKK's Chinese subtitle releases for the second half of 2020 (7-6-20 to 12-31-20)
There are 761 subtitles and should start up right where the 11,500+ subtitle pack ended as that pack contained subs RUNBKK released on 6-16-20, but not the one's he released 7-6-20
Please note the dates I'm referring to are the dates the subtitle packs were released not the dates the movies were released.

Enjoy, and if you translate them, please post the translations!

https://mega.nz/file/rckTkYDQ#5jYL1gZDTXLzoRgCvjCTS6OnPEriVP-uSTMRGIw6ekg
[/QUOTE]
 

Attachments

  • jav xl3.JPG
    jav xl3.JPG
    309.5 KB · Views: 133
Last edited:
  • Like
Reactions: Huibor

IdeNali

Member
Jul 27, 2016
85
75
Okay, I worked it out! Here is the Excel file, check it out it's pretty cool, it comes sorted by film code, but you can re-sort by actress, or release date. or Genre

https://mega.nz/file/HV0BUIyD#9eEK6WYnChsfiJMsX-cJO_mGfovKJEX5AhlnvL8oF8c

Hey, just a quick question because I couldn't really make out the answer by reading older posts and I don't have Excel to open it... but what exactly does your Excel-File contain?
Is it a file with all current english subtitles?
 

avatarthe

Well-Known Member
Feb 1, 2008
184
277
Hey, just a quick question because I couldn't really make out the answer by reading older posts and I don't have Excel to open it... but what exactly does your Excel-File contain?
Is it a file with all current english subtitles?


The Excel file is a catalog of the subtitle files, it does not include the subtitle files but you can browse the catalog to see what’s in the subtitle collection along with cover images and actress names, or search or sort the file to find films in the collection you might like. Look At the jpg image I attached to that post to see what browsing the file looks like
 
Last edited:

IdeNali

Member
Jul 27, 2016
85
75
I'm not sure if this was already discussed but wouldn't it maybe be a good idea to ask for a sub-forum where we can post subtitles in different threads? Maybe one thread for each video-code?

Like this for example:
- Subtitles (Sub-Forum)
-- SSNI (Thread)
--- Subtitle 1 (Post)
--- Subtitle 2 (Post)
-- STAR (Thread)
-- ...
-- WANZ (Thread)

Currently I'm finding it very difficult to easily find what was already translated and what wasn't.
 
  • Like
Reactions: Arny Jackson

Supergiav

New Member
Jan 5, 2021
20
10
[QUOTE = "Jeet Roi, post: 4160273, member: 1165859"] Arny, grazie per aver condiviso questi.
L'incesto madre-figlio è davvero fantastico !! [/ QUOTE]


Ciao, mi piacerebbe molto avere il secondo di questi due. Puoi dirmi come posso fare? Per favore?
 

avatarthe

Well-Known Member
Feb 1, 2008
184
277
Okay, I worked it out! Here is the Excel file, check it out it's pretty cool, it comes sorted by film code, but you can re-sort by actress, or release date. or Genre

https://mega.nz/file/HUtwzJ6a#JeDMDjz8xnYvbd2b63aIe78ZVFTZCvIag7R3DO7qt6w

View attachment 2337790
[/QUOTE]

Okay I updated the link to the Excel catalog of the RUNBKK sub from the second half of 2020. The Excel file is now formated as a table whcih makes sorting and searching much more robust!
Want a list of all the films with Cosplay? Type COSPLAY and boom, there's the list, complete with cover photos.
A list of all the films with Julia? Type JULIA and there you go!

Let me know if you like this, I'm thinking of making one for the 11,500 subtitle collection....

Excel catalog file: https://mega.nz/file/HUtwzJ6a#JeDMDjz8xnYvbd2b63aIe78ZVFTZCvIag7R3DO7qt6w

RUNBKK Chinese Subtitles for second half of 2020 (761 films): https://mega.nz/file/rckTkYDQ#5jYL1gZDTXLzoRgCvjCTS6OnPEriVP-uSTMRGIw6ekg


jav xl4.JPG
 

deanc

New Member
Dec 30, 2009
18
2
I use PyTranscriber , it's kinda hit and miss !! Used it on SPRD-698 , IT WAS GREAT ! When used on Marina Shirahoshi's STAR-930 it was rubbish ! Effectiveness is around 70% or so , at least you could understand the dialogues !!!
Hey. I have a Q. Tried PyTranscriber on Win10 machine but can't seem to get it to work. It crashed every time at around 18% done. Any suggestion what might be causing it?
 

granca

Member
Mar 4, 2017
57
74
Hey. I have a Q. Tried PyTranscriber on Win10 machine but can't seem to get it to work. It crashed every time at around 18% done. Any suggestion what might be causing it?
Japane se language is bugged on windows 10, I switched over to a different tool, https://github.com/BingLingGroup/autosub , bottom line of the code is the same , it require a bit of tinkering to setup but you can then have a script in your contextual menu and send any video automatically to translate which is quite convenient.
 

IdeNali

Member
Jul 27, 2016
85
75
I would also recommend "Autosub" instead of the "PyTranscriber ". For me "PyTranscriber" almost never worked.

"Autosub" doesn't have GUI, so you need to use the command line of Windows.
 
  • Like
Reactions: zakumine