Post your JAV subtitle files here - JAV Subtitle Repository (JSP)★NOT A SUB REQUEST THREAD★

SamKook

Grand Wizard
Staff member
Super Moderator
Uploader
May 10, 2009
3,572
4,954
I use VLC to extract audio. It allows different formats like wav and mp3 and its free.
You gotta be careful since extracting(aka demuxing or demultiplexing) audio isn't the same as converting(aka re-encoding) audio to a specific format. Both will give you an audio file on its own as a result(so you can technically say re-encoding it is extracting it too) so the difference might not be obvious to those unfamiliar with how these things work.

The former doesn't change the audio in any way and is basically instantaneous or takes a couples secs to do, it just takes the audio part out of the file container that holds both video and audio and the latter takes that audio part and completely re-encodes it to a different format or even the same to create an entirely new file and can take a few seconds or minutes depending on your pc.

I think VLC can do both of those things though, but the first one is better since re-encoding means quality loss(unless it's to a lossless format like wav, but those files are huge).
 
  • Like
Reactions: Taako

Outlaw69

New Member
May 27, 2021
19
23
Recently, people are interested in whisper as subtitles and encountered some errors when installing.
I will guide you to install Whisper with VAD on colab. (no need to install python, git, pytorch... If you want to install whisper python see Post #4,513 by @SamKook)
-Upload the mp3 file to colab. (many of you fail at this step)
View attachment 3128360
Method 1: Mount Google Drive
View attachment 3128361View attachment 3128362
Method 2: Add the command !gdown "id&confirm=t"
View attachment 3128365View attachment 3128366View attachment 3128374View attachment 3128369
Method 3: Install Google Drive App refer to @mei2
View attachment 3128370
And this is the result:
View attachment 3128371View attachment 3128372View attachment 3128373
Thank you. I was able to follow easily and had success!
 
  • Like
Reactions: mei2

Makkdom

Well-Known Member
Mar 4, 2019
157
386
DASS-070 Akari Mitani

One on the things I have always liked about JAV is that they often commit to telling a real story with genuine acting. This video is a prime example of that. In fact, I actually found myself fast-forwarding through the sex scenes to see where the plot was going. Hope others enjoy it.

dass070pl.jpg
 

Attachments

  • DASS-070_.zip
    10.3 KB · Views: 294

Taako

Akiba Citizen
May 25, 2017
1,273
857
You gotta be careful since extracting(aka demuxing or demultiplexing) audio isn't the same as converting(aka re-encoding) audio to a specific format. Both will give you an audio file on its own as a result(so you can technically say re-encoding it is extracting it too) so the difference might not be obvious to those unfamiliar with how these things work.

The former doesn't change the audio in any way and is basically instantaneous or takes a couples secs to do, it just takes the audio part out of the file container that holds both video and audio and the latter takes that audio part and completely re-encodes it to a different format or even the same to create an entirely new file and can take a few seconds or minutes depending on your pc.

I think VLC can do both of those things though, but the first one is better since re-encoding means quality loss(unless it's to a lossless format like wav, but those files are huge).
This is very true.
Audacity will as well. It's very rare. You just never know.
 

soloporhoy666

Active Member
Nov 29, 2021
118
124
After Jux-45 just sat there for hours then timed out yesterday, decided to try a different file. Crapped out again, but differently and with different error messages. I'll try a couple other files but I highly doubt this will ever work. This software should not be up on the web because it isn't done yet. There are too many failure triggers in this code.

View attachment 3129755
There it says that you are missing an essential audio codec to work. ffmpeg
 

soloporhoy666

Active Member
Nov 29, 2021
118
124
DASS-070 Akari Mitani

One on the things I have always liked about JAV is that they often commit to telling a real story with genuine acting. This video is a prime example of that. In fact, I actually found myself fast-forwarding through the sex scenes to see where the plot was going. Hope others enjoy it.

View attachment 3129788
Akari Mitani's movies are mostly incredible, many have a good story, she and Nao Jinguji share my No 1.
 
  • Like
Reactions: Chuckie100 and mei2

soloporhoy666

Active Member
Nov 29, 2021
118
124
After Jux-45 just sat there for hours then timed out yesterday, decided to try a different file. Crapped out again, but differently and with different error messages. I'll try a couple other files but I highly doubt this will ever work. This software should not be up on the web because it isn't done yet. There are too many failure triggers in this code.

View attachment 3129755
It is failing in the most important part of Whisper to encode the audio
Pantallazo 30-12-2022 19.20.25.png
 

soloporhoy666

Active Member
Nov 29, 2021
118
124
After Jux-45 just sat there for hours then timed out yesterday, decided to try a different file. Crapped out again, but differently and with different error messages. I'll try a couple other files but I highly doubt this will ever work. This software should not be up on the web because it isn't done yet. There are too many failure triggers in this code.

View attachment 3129755
I have read that many other colleagues did not have to install anything on their computers, but each one of us has different versions of computers, in my case, the first time I tried to use the collab, it gave me precisely a codec error, ffmpeg I had to install it manually on my computer (I'm sorry to report that it was quite difficult for me to install). but that solved the error that you mentioned in your filePantallazo 30-12-2022 19.32.16.pngs.
 
  • Like
Reactions: Taako

SamKook

Grand Wizard
Staff member
Super Moderator
Uploader
May 10, 2009
3,572
4,954
There it says that you are missing an essential audio codec to work. ffmpeg
I have read that many other colleagues did not have to install anything on their computers, but each one of us has different versions of computers, in my case, the first time I tried to use the collab, it gave me precisely a codec error, ffmpeg I had to install it manually on my computer (I'm sorry to report that it was quite difficult for me to install). but that solved the error that you mentioned in your files.
That doesn't make any sense, it's doing the processing entirely off of your computer once you upload the file so installing anything locally wouldn't help in any way.

What that error means is that ffmpeg had an error while running, not that it's missing. More specifically, it's unable to create the temporary uncompressed wav file for processing.

If you look at the Setup Whisper code, you'll clearly see the line where it installs ffmpeg on the remote system used for the processing: "pip install deepl srt ffmpeg-python spleeter".
 
  • Like
Reactions: Taako

soloporhoy666

Active Member
Nov 29, 2021
118
124
That doesn't make any sense, it's doing the processing entirely off of your computer once you upload the file so installing anything locally wouldn't help in any way.

What that error means is that ffmpeg had an error while running, not that it's missing. More specifically, it's unable to create the temporary uncompressed wav file for processing.

If you look at the Setup Whisper code, you'll clearly see the line where it installs ffmpeg on the remote system used for the processing: "pip install deepl srt ffmpeg-python spleeter".
I only mentioned what worked in my case, watching several videos, because I don't know about codes, but some youtuber that I see from time to time, mentioned that the codec was necessary, but I don't know anything about that, I just followed the instructions to be able to use the collab that I got to use before.
By the way once I installed the codec, boom like magic I was able to use Whisper.
 
  • Like
Reactions: Taako

SamKook

Grand Wizard
Staff member
Super Moderator
Uploader
May 10, 2009
3,572
4,954
I only mentioned what worked in my case, watching several videos, because I don't know about codes, but some youtuber that I see from time to time, mentioned that the codec was necessary, but I don't know anything about that, I just followed the instructions to be able to use the collab that I got to use before.
What I'm saying is that you doing that did nothing, you must have done something differently after installing it that fixed it(or your audio file was corrupt before).

It's true ffmpeg is required, but only on the pc whisper is running on.
 

Taako

Akiba Citizen
May 25, 2017
1,273
857
What I'm saying is that you doing that did nothing, you must have done something differently after installing it that fixed it(or your audio file was corrupt before).

It's true ffmpeg is required, but only on the pc whisper is running on.
Indeed I didn't install anything, I don't think...:p

Anyways, if it can work for me and I'm not using it, I hope it will for others.
It just seems buggy. I had to work with it more times than I wanted.
 
Last edited:

Taako

Akiba Citizen
May 25, 2017
1,273
857
I have read that many other colleagues did not have to install anything on their computers, but each one of us has different versions of computers, in my case, the first time I tried to use the collab, it gave me precisely a codec error, ffmpeg I had to install it manually on my computer (I'm sorry to report that it was quite difficult for me to install). but that solved the error that you mentioned in your fileView attachment 3129813s.
Yes. All our computers are different. I force myself to do it on mines just in case others needed help.
Not sure why it was so hard to get started on my computer but...:belajar: its buggy...
Oh well... back to cleaning my subs.
 

SamKook

Grand Wizard
Staff member
Super Moderator
Uploader
May 10, 2009
3,572
4,954
Yes. All our computers are different. I forced myself to do it on mine just in case others needed help.
Not sure why it was so hard to get started on my computer but...:belajar: its buggy...
Oh well... back to cleaning my subs.
:kecewa: You're making me feel bad now since all I had to do the first time I installed it was to copy paste the command and run it, lol.
 
  • Haha
Reactions: Taako

soloporhoy666

Active Member
Nov 29, 2021
118
124
:kecewa: You're making me feel bad now since all I had to do the first time I installed it was to copy paste the command and run it, lol.
But they are deviating from the main topic, I only see that they correct what worked for me, but what solution can they give to the partner, simply do nothing and it is solved by itself? I don't know ...
 

SamKook

Grand Wizard
Staff member
Super Moderator
Uploader
May 10, 2009
3,572
4,954
That's the same error I got when I uploaded a corrupted audio file. I suspect the issue is that you're uploading video files instead of only the audio file. whisper can handle those fine but considering the colab has extra restrictions, it might not be able to use the extracted audio because you're telling it the input is the video file. The interface they made for it might not be smart enough to find the audio file after it gets demuxed by ffmpeg.
^ That is very likely the solution, uploading an audio file(that you tested to make sure is working first).

What that ffmpeg error means is the input file isn't detected as audio basically so either the uploaded file got corrupted, was corrupt to begin with or the colab version can't handle extracting the audio from a video file(haven't tested using a video so I don't know).
 

Prinsipe

Member
Aug 31, 2013
58
19
Is there a significant difference in extracting the mp3 rather than converting when running the audio file to whisper?

Anyway, Whisper is not built for the web. It is a python program that will run standalone without an internet connection as long as you have a powerful GPU.
 
  • Like
Reactions: Taako

Taako

Akiba Citizen
May 25, 2017
1,273
857
:kecewa: You're making me feel bad now since all I had to do the first time I installed it was to copy paste the command and run it, lol.
hahaha no way. I'm so glad it was easy for you.
But my computer is kinda old:p I do wonder what graphic card will make it run better on install?

And from your previous statement, I agree, if everyone uses the web version, it's gonna slow the servers sooner or later.
 
Last edited:

maelstrom9999

Well-Known Member
Apr 26, 2022
480
410
^ That is very likely the solution, uploading an audio file(that you tested to make sure is working first).

What that ffmpeg error means is the input file isn't detected as audio basically so either the uploaded file got corrupted, was corrupt to begin with or the colab version can't handle extracting the audio from a video file(haven't tested using a video so I don't know).

Is there a way to take a video file, then make an audio only file from it? I mean, if it won't accept video files, that would be the only solution, right?
 
  • Like
Reactions: Taako