sextb no longer have full videos?

maload

Active Member
Jul 1, 2008
615
118
For free, there isn't really one. Quality has a price. It takes time to translate a movie.


They also share the same crappy subs. javguru just steal the subs. I found my Takahashi Shoko subs there.
this must be bad question . - - "
because you said they steal your work then can you give me the link to that movies .( Takahashi Shoko subs )
i just want to learn something from your sub .
learning from good sub really help .
thank you .
 

djlandd01

Active Member
Feb 8, 2022
262
90
For free, there isn't really one. Quality has a price. It takes time to translate a movie.


They also share the same crappy subs. javguru just steal the subs. I found my Takahashi Shoko subs there.
Hmm makes sense, yeah I feel it, in the last 3 days I dont feel any different in the subs....after watching many jav with machine translated subs....I believe one can easily makeout if the sub is human or machine translated. Well I wish JAV industry themselves did this for their overseas audience(I get it Japan is still the bigger consumer but still).

Anyhow thanks for sharing, cheers.
 

Casshern2

Senior Member...I think
Mar 22, 2008
6,882
14,256
I like them, but have trouble downloading with them..they start and somewhere along the way, the download stops..I have found https://www2.javhdporn.net/ to have as extensive a list and be more reliable for downloads
I passed on this site long ago because of the not-so-great quality and the fact that the streams are 24fps instead of 29.97 or 30 (some newer ones even 59.94). But for those looking for subtitles I can see why @asianbooblover would highlight it. Thanks for that!
 

Casshern2

Senior Member...I think
Mar 22, 2008
6,882
14,256
I am a very lazy guy so the method below can be better optimized, shortened. I ll post something new when make it with Python instead, it will be much more better as Ill try to handle all possible errors. To use FFMPEG you need to have it in your system, you can setup similar to how you setup Java. I scrolled through this video it seems like it explains well, so you can follow this if you need guidance in setting up FFMPEG.

My Folders structure

"Downloads"
>> "TS to MP4"
>>
"ts files"
and
"ts to mp4"


Right now with this, I use two bat files, The download folder contains another folder named "TS to MP4", within that folder are two subfolders, "ts files" and "ts to mp4".
The first bat file (optional) copies only the ts files from download folder to the "ts files" folder in "TS to Mp4" folder(in downloads). Once thats done, the second bat file converts all the ts files to mp4 format and copies it to the "ts to mp4" folder in the "TS to Mp4" folder( in Downloads folder).

The original ts files remain in the ts files folder, which I delete manually. [Once I make this in Python I will make all checks for any possible errors, check if all files conversions are successful or not and delete all original ts files with successful conversion] This is just a something I wanted quick cos I was tired of using the command in prompt and editing the command for each file...yikess.

I use downloads folder(any folder is fine).

(OPTIONAL) first bat file [to copy only ts files from a folder to another folder] : Open notepad and paste below code in the pad, save notepad with any name but with .bat extension.....if you see below there are two path addresses, first one is the original path for ts files folder and second path leads where to copy paste those ts files, so change the path according to your system, dont leave out the \*.ts* in the end of first path

Code:
move "E:\downloads\*.ts*" "E:\downloads\TS to mp4\ts files"
pause

(Convertion) second bat file [to convert all the ts files to mp4] : Same with this, open notepad and paste below code, save with any name but with .bat extension, two paths again in this, first path is where the ts files are located and second where to paste the new converted file, so make the folder path changes in this as per your system. Dont leave out the %%~nxi.mp4 in the end of second path.

Code:
[USER=52473]@echo[/USER] off
setlocal enableDelayedExpansion
cd "E:\downloads\TS to mp4\ts files\"
for /r %%i in (*.ts) do (
  
echo %%i
ffmpeg -y -i "%%i" -c copy "E:\downloads\TS to mp4\ts to mp4\%%~nxi.mp4"

)
endlocal

pause

You can change to any other formats than mp4 as per your needs, just check if its supported in ffmpeg or not, if it is then just add your format in the end instead of .mp4.
I have a similar method but just using bat files for after acquisition. I grab things a little different so instead of one *.ts file I combine all the parts into a single one, that's the first bat file:

set title=BLK-616
copy /b 0_9\*.ts %title%_1.ts
copy /b 10_99\*.ts %title%_2.ts
copy /b 100_999\*.ts %title%_3.ts
copy /b 1000\*.ts %title%_4.ts
copy /b *.ts MP4toMKV\DeleteAssets\%title%.ts

(don't mind the MP4 in that folder title...old folder)

Then I see whatever the FPS of each file is and place them in a folder with that fps name. I mux to MKV using MKVMerge via the bat file below. I do go the extra step of downloading the covers for these so that I can get what you see here.

Here are the *.ts titles plus the covers for each with the same name.
001.jpg

Here is the bat file:

@echo off
for /r %%f in (*.mp4) do (
ffmpeg -i %%~nxf -vcodec copy -an %%~nf.h264
ffmpeg -i %%~nxf -c copy %%~nf.aac
mkvmerge.exe --default-duration 0:29.97fps -o %%~nf.mkv %%~nf.h264 %%~nf.aac --attachment-mime-type image/jpeg --attachment-name cover.jpg --attach-file %%~nf.jpg
del %%~nf.h264
del %%~nf.aac
del %%~nf.jpg
del %%~nxf
)

Here is the result after it's done.
002.jpg

The reason for attaching the covers is for my library process, which, yes extracts the image again but it's a whole process when archiving. It makes sense to me and not to anyone probably.
 
  • Like
Reactions: djlandd01

djlandd01

Active Member
Feb 8, 2022
262
90
I have a similar method but just using bat files for after acquisition. I grab things a little different so instead of one *.ts file I combine all the parts into a single one, that's the first bat file:

set title=BLK-616
copy /b 0_9\*.ts %title%_1.ts
copy /b 10_99\*.ts %title%_2.ts
copy /b 100_999\*.ts %title%_3.ts
copy /b 1000\*.ts %title%_4.ts
copy /b *.ts MP4toMKV\DeleteAssets\%title%.ts

(don't mind the MP4 in that folder title...old folder)

Then I see whatever the FPS of each file is and place them in a folder with that fps name. I mux to MKV using MKVMerge via the bat file below. I do go the extra step of downloading the covers for these so that I can get what you see here.

Here are the *.ts titles plus the covers for each with the same name.
View attachment 3119883

Here is the bat file:

@echo off
for /r %%f in (*.mp4) do (
ffmpeg -i %%~nxf -vcodec copy -an %%~nf.h264
ffmpeg -i %%~nxf -c copy %%~nf.aac
mkvmerge.exe --default-duration 0:29.97fps -o %%~nf.mkv %%~nf.h264 %%~nf.aac --attachment-mime-type image/jpeg --attachment-name cover.jpg --attach-file %%~nf.jpg
del %%~nf.h264
del %%~nf.aac
del %%~nf.jpg
del %%~nxf
)

Here is the result after it's done.
View attachment 3119884

The reason for attaching the covers is for my library process, which, yes extracts the image again but it's a whole process when archiving. It makes sense to me and not to anyone probably
Noice.....this looks neat..........I will try to implement some of these things, especially the covers ...... correct me if I am wrong but I think in my OP I am muxing instead of converting with ffmpeg right or is it converting....
 

Taako

Akiba Citizen
May 25, 2017
1,286
863
For free, there isn't really one. Quality has a price. It takes time to translate a movie.


They also share the same crappy subs. javguru just steal the subs. I found my Takahashi Shoko subs there.
Also be aware javguru do steals subs and "pretends" they are subbed new movies.
You will notice the subs have lots of mistakes and he skips lots of dialogues.
 
Last edited:
  • Like
Reactions: Casshern2

darksider59

Akiba Citizen
Feb 24, 2014
2,712
1,931
this must be bad question . - - "
because you said they steal your work then can you give me the link to that movies .( Takahashi Shoko subs )
i just want to learn something from your sub .
learning from good sub really help .
thank you .
The movie code is MIDV-040. I can't remember if it was a customer request or if we translated it right away but if you look in our page code, you can see the upload date (feb 22,2022). JAVguru published it on april 16.

I dropped a comment below the movie on their website. Of course they didn't approve it but they banned my IP lmao. So did I for them. So yeah, if there are people thinking JAV.guru is so awesome because it's free, think twice about it. They actually make money with all the ads (with potential malwares) on their websites with the work of others.

Hmm makes sense, yeah I feel it, in the last 3 days I dont feel any different in the subs....after watching many jav with machine translated subs....I believe one can easily makeout if the sub is human or machine translated. Well I wish JAV industry themselves did this for their overseas audience(I get it Japan is still the bigger consumer but still).

Our subs are all done by human translators. We have 7 translators in our team. That's why I started my website, I wanted to offer something different and reliable for JAV fans. You know that if you get your subs there, you'll have a good translation.


Javguru do steals subs and "pretends" sub new movies but his/team or whatever is better than sextb.
Yeah, they add "by javgugu" lmao. And they "dont take requests". Of course, because they don't do the subs themself.
 
  • Like
Reactions: composite

maload

Active Member
Jul 1, 2008
615
118
The movie code is MIDV-040. I can't remember if it was a customer request or if we translated it right away but if you look in our page code, you can see the upload date (feb 22,2022). JAVguru published it on april 16.

I dropped a comment below the movie on their website. Of course they didn't approve it but they banned my IP lmao. So did I for them. So yeah, if there are people thinking JAV.guru is so awesome because it's free, think twice about it. They actually make money with all the ads (with potential malwares) on their websites with the work of others.



Our subs are all done by human translators. We have 7 translators in our team. That's why I started my website, I wanted to offer something different and reliable for JAV fans. You know that if you get your subs there, you'll have a good translation.



Yeah, they add "by javgugu" lmao. And they "dont take requests". Of course, because they don't do the subs themself.
thank you so much ,
 

Casshern2

Senior Member...I think
Mar 22, 2008
6,882
14,256
Noice.....this looks neat..........I will try to implement some of these things, especially the covers ...... correct me if I am wrong but I think in my OP I am muxing instead of converting with ffmpeg right or is it converting....
I do believe the ffmpeg copy command is doing just that, copying the streams and not encoding, correct. That's why it is so fast to produce the MP4 file.
 

djlandd01

Active Member
Feb 8, 2022
262
90
I do believe the ffmpeg copy command is doing just that, copying the streams and not encoding, correct. That's why it is so fast to produce the MP4 file.
True, when I was learning about it I feel I read something similar...I was curious how this takes so less time and the softwares take so much......thanks......let me go at it again to refresh my mind :)
 
  • Like
Reactions: Casshern2

Taako

Akiba Citizen
May 25, 2017
1,286
863
They also share the same crappy subs. javguru just steal the subs. I found my Takahashi Shoko subs there.
This is funny. And you're so right.
Just yesterday another poster gave a compliment to him about rct-502 not being subbed and not being found on the net.

I reply it's been subbed for years. The poster asked where. I gave a quick link... and to no surprise he removed both our comments:p:p:p
I waiting to see if he bans my IP address lol
 
  • Haha
Reactions: darksider59

darksider59

Akiba Citizen
Feb 24, 2014
2,712
1,931
This is funny. And you're so right.
Just yesterday another poster gave a compliment to him about rct-502 not being subbed and not being found on the net.

I reply it's been subbed for years. The poster asked where. I gave a quick link... and to no surprise he removed both our comments:p:p:p
I waiting to see if he bans my IP address lol
The admin must be from the philippines because a lot of comments are in the local language. And funny to see that weird comments like religious ones stay online but constructive ones (like yours) get removed. It says a lot about the admin. I tried to add a watermark in my sub file but it's not easy to find a good way to keep the website link in without it being detected. I added spaces and symbols. Because, for sure, he just burns the subs on the video file and upload it. He doesn't review line by line. So with another format than www.website.com, it's more difficult to spot for him haha.
 
  • Like
Reactions: Taako

Taako

Akiba Citizen
May 25, 2017
1,286
863
The admin must be from the philippines because a lot of comments are in the local language. And funny to see that weird comments like religious ones stay online but constructive ones (like yours) get removed. It says a lot about the admin. I tried to add a watermark in my sub file but it's not easy to find a good way to keep the website link in without it being detected. I added spaces and symbols. Because, for sure, he just burns the subs on the video file and upload it. He doesn't review line by line. So with another format than www.website.com, it's more difficult to spot for him haha.
This is one of the reason I stop visiting the site. The comments is too weird, racist, sexist and dumb.
It's like 4chan. No one talks about videos/movies.
Akiba-online is 100X better:)