sextb no longer have full videos?

JAVinsight

Well-Known Member
May 12, 2022
394
322
Yes, subs not accurate on point but helps enough to understand mostly what's happening, I am happy with that :).

Earlier like 2 years back or so, I used to get so pissed when I would find a JAV id only on a site with only .ts file, I would download it thru IDM and then use video convertors for its mp4 format, it would take so much time so I had it done all together at night while I went to sleep. But I found a good solution for it, I use ffmpeg now and use command

"ffmpeg -i "jav.ts" -c copy "jav.mp4""

to "convert" (different from the software, I dont know the technical term :( atm) it to mp4 format, no playback lag after that, takes less than a minute. I actually made a bat file so now I dont have to type and edit the command all the time, I just click on bat file and it converts all ts files on the downloaded folder and pastes the mp4 converted file to another folder. :) I can share the bat file if you need in DMs. :)
I Appreciate. useful info, never tried before. Mp4 are widely available now a days. No need for conversions [sucks time, I hate it].
but, still I'm curious to knowhow ffmpeg will be. & sure will try an sample conversion.
thank you so much.
 
Last edited:

asianbooblover

Akiba Citizen
Jun 20, 2007
1,681
889
Haha..whether I'm right or wrong, one of the great things about this forum is finding new sites for downloading
 
  • Like
Reactions: Taako

Taako

Akiba Citizen
May 25, 2017
1,286
863
Same. when I search for a movie with subs, sextb will be first (or) first 1-6 sites.
With IDM download, servers ST, DD, VS, SB, format are .TS same quality as mp4. but playback lags on jump Fw/Bw. I prefer JP for MP4.
Some M/c translated subs could be inaccurate, but enough to stick with the movie.
My most alternatives are jav.guru , javhdporn. & can include vjav too.
But if I need movies with subs it will be Sextb.
Javhdporn uses subs from sextb. You should go to supjav it's better than sextb imo
 
  • Like
Reactions: JAVinsight

Not2srius

Well-Known Member
Jul 5, 2022
654
652
I would like the bat file and a "how-to for dummies." I'm converting about 70 files now and it's been three days and still not done!
Yes, subs not accurate on point but helps enough to understand mostly what's happening, I am happy with that :).

Earlier like 2 years back or so, I used to get so pissed when I would find a JAV id only on a site with only .ts file, I would download it thru IDM and then use video convertors for its mp4 format, it would take so much time so I had it done all together at night while I went to sleep. But I found a good solution for it, I use ffmpeg now and use command

"ffmpeg -i "jav.ts" -c copy "jav.mp4""

to "convert" (different from the software, I dont know the technical term :( atm) it to mp4 format, no playback lag after that, takes less than a minute. I actually made a bat file so now I dont have to type and edit the command all the time, I just click on bat file and it converts all ts files on the downloaded folder and pastes the mp4 converted file to another folder. :) I can share the bat file if you need in DMs. :)
 

rezuman666

Member
Jul 11, 2022
90
59
Are you getting high quality files from using IDM on sextb? I've been using my Nitro premium to download movies from the links they post, which are always 1080p and 6000 kbps.

I would like the bat file and a "how-to for dummies." I'm converting about 70 files now and it's been three days and still not done!
This is what I use:

FOR /F "tokens=*" %%G IN ( 'dir /b *.ts ') DO ffmpeg.exe -n -i "%%G" -c:v copy -c:a copy "%%~nG.mp4"

Copy the line above into notepad and save it as a bat file. Put the bat file in the folder with all the .ts files you want to convert, along with ffmpeg.exe, then execute it.
 
  • Like
Reactions: Taako and djlandd01

djlandd01

Active Member
Feb 8, 2022
262
90
I Appreciate. useful info, never tried before. Mp4 are widely available now a days. No need for conversions [sucks time, I hate it].
but, still I'm curious to knowhow ffmpeg will be. & sure will try an sample conversion.
thank you so much.
You can convert to any format you want, not necessarily Mp4. Earlier there would be sites where only ts file was available but it dont seem that way so the ffmpeg trick worked wonders, it even does now when I stumble on a rare site with ts only...... :) doesnt take any time I had more than 10 files converted under 2 mins with a click.
 

djlandd01

Active Member
Feb 8, 2022
262
90
Javhdporn uses subs from sextb. You should go to supjav it's better than sextb imo
oh, thanks for sharing, I am actually trying to use supjav than javhdporn, the aesthetics feel better to me :) lets just see if its only aesthetics.
 
  • Like
Reactions: Taako

djlandd01

Active Member
Feb 8, 2022
262
90
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.
 
Last edited:
  • Like
Reactions: Casshern2 and Taako

rice12345

Well-Known Member
Jan 14, 2015
535
295
No problem with SexTB here. Just test it.
Still some of the worse subs and slowest downloads around:p
Can't understand why anyone wants to use that site.
I rarely download these days the streaming works fine for me
 

maload

Active Member
Jul 1, 2008
615
118
I rarely download these days the streaming works fine for me
i go everywhere if i can find the movies that i see on the net
some movies is very hard to find and then they are pop up on onlineporns site
low qc too and i need to accept that
for the new movies ,i never go to these website , just bit it , it faster
 

Electromog

Akiba Citizen
Dec 7, 2009
4,481
2,738
When I select the JP server I get a "The connection was reset" error. This started about a day ago. When I set my VPN to Japan, the problem goes away.

Anybody else have this issue?
 

JAVinsight

Well-Known Member
May 12, 2022
394
322
When I select the JP server I get a "The connection was reset" error. This started about a day ago. When I set my VPN to Japan, the problem goes away.

Anybody else have this issue?
No. & I'm not using vpn when sextb. But sometimes [JP] it shows 'Error loading #xxxxx' in player.
I reload the page couple of times & then it can be played/download.
Me too had connec.reset problem before with other websites [blocked] & I tried with different regions in VPN [mostly euro servers]. It solved the issue.
some browser extensions may block the connection.
 
Last edited:

djlandd01

Active Member
Feb 8, 2022
262
90
No. & I'm not using vpn when sextb. But sometimes [JP] it shows 'Error loading #xxxxx' in player.
I reload the page couple of times & then it can be played/download.
Me too had connec.reset problem before with other websites [blocked] & I tried with different regions in VPN [mostly euro servers]. It solved the issue.
some browser extensions may block the connection.
True, if not normal ISP blocking, it might be the antivirus or browser extension..........like ublock, it sometimes blocks without any message popup or even closes tab as it mistakes it for pop up I believe.
 

darksider59

Akiba Citizen
Feb 24, 2014
2,712
1,931
  • Like
Reactions: Taako

djlandd01

Active Member
Feb 8, 2022
262
90
Yep, all streaming websites use the same auto translated subs. If you want to laugh, that's good, but if you really want to know what they're saying in the movie, nope :)
I really wanna know what they saying :( any site recom for that?
 

Taako

Akiba Citizen
May 25, 2017
1,286
863
I really wanna know what they saying :( any site recom for that?
@asianbooblover, myself, and others suggested there's javengsubs, supjav and others. They steal subs too and put their names on them. I think supjav is better than sextb imo.

Update: javguru do steals subs. And they have the worse download speed. Which are reasons you might not want to waste your time there.
Note: You can try supjav or javenbsubs, but its been so long I try them, I can't recommend them.

Remember, true Japanese people have no reason for translations, because JAV was meant for them:)
 
Last edited:

darksider59

Akiba Citizen
Feb 24, 2014
2,712
1,931
I really wanna know what they saying :( any site recom for that?
For free, there isn't really one. Quality has a price. It takes time to translate a movie.

myself, and others suggested there's javguru, javengsubs, supjav and others. They are Chinese who do their best to translate. They are better than sextb imo.
They also share the same crappy subs. javguru just steal the subs. I found my Takahashi Shoko subs there.
 
  • Like
Reactions: Taako