mrfragger
mrfragger
`[ ! -d output ] && mkdir output ; for f in *.mp3 ; do ffmpeg -hide_banner -i "$f" -c:a libopus -b:a 32k -af "silenceremove=start_periods=1:stop_periods=-1:start_threshold=-50dB:stop_threshold=-50dB:start_silence=1:start_duration=0:stop_duration=3:detection=peak",highpass=200,lowpass=3000,afftdn,volume=12dB,dynaudnorm output/"${f%.*}.opus" ; done` I pretty...
https://github.com/openai/whisper/discussions/1962 two PRs on openai whisper seem to be most promising 1808 and 1963 in regardings to drastically reducing hallucinations.
`imgp -wOcken -q 80 -x 350x350 ` is extremely fast https://github.com/jarun/imgp btw I only do black image covers since I want subtitles for all audiobooks so do `for f in...
Just a quick note. Latest uosc does this with chapter time remaining. 02:03:34 then say less than 1 hour only shows 59:22 and when less than 1 min shows 43....
I only listen to audiobooks with transcribed subtitles and always enable metadata for all audio but not for video. Most important for me was to always show the current chapter...
@zaeboba Here is my mpv config and extensions for Mac. If you are on Linux or Windows I can send you a config for that. Quick PDF showing some of...
@zaeboba I actually deleted the bookmark script I was using as a searchable History which keeps track of last played position pretty much does the job. I've tried that simple...
Yes number precision saves quite a bit with svgs. with regex search: `(\d*\.\d{1})\d* ` replace: `$1 ` reduces it to 1 decimal and `(\d*\.\d{2})\d*` would reduce it to 2.. or...
Here's part of what I use...in a bash script ..using pysubs. merge either 2, 3 or 4 subs into one. Still think it's better to keep them separate as almost...
for f in *.$typeaudio ; do python3 source/silence_cutter.py "$f" output/$dt/"${f%.*}.opus" $setdBsilence ; done for f in *.mp3 ; do python3 source/silence_cutter.py "$f" output/"${f%.*}.opus" -35 ; done it sets the output...