Replies: 1 comment
-
Hi, this looks like an ASR question, not a VAD question. The VAD is "stupid", i.e. it only says whether there is speech or not. We provide the following params: Lines 164 to 225 in 563106e |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Super excited about using this new tool, there are many features that can help my subtitle generation for both English and Chinese videos!
One question, in my testing, there was about 20% of time sequences that were just very long compared to most other sequences in the SRT file.
I'm trying to address those very long sentences.
Ideally, I would like those very long sentences to be cut in half, roughly from the middle, where it makes the most sense to cut them.
I tried a different number of parameters, such as:
--segment_level true --word_level false --max_chars 56
--segment_level true --word_level false --max_chars 56 --regroup sl
--segment_level true --word_level false --max_chars 56 --regroup sp
I didn't have so much luck. One example is as such:
I hope that the sentence could have been chopped more around the middle. Is there any option that would do something like that?
One possible option in mind, is that I would add
--word_level true
, and since I have the timestamps for every word, I think I could be able to chop a long sentence in half while preserving correct timestamps. But that's not perfect, because cutting in half won't guarantee it cuts in the best place.Thanks!
Beta Was this translation helpful? Give feedback.
All reactions