summaryrefslogtreecommitdiff
path: root/ffmpeg.go
diff options
context:
space:
mode:
authorGrail Finder <wohilas@gmail.com>2023-02-26 14:52:30 +0600
committerGrail Finder <wohilas@gmail.com>2023-02-26 14:52:30 +0600
commit0c86183009d912213114d29e6f2ff9e04f0b90ff (patch)
tree180038543f4d8982804bec1bab7027d79103b8dc /ffmpeg.go
parent3f99abb502d373cb4b520b212afd4be9ed4da07f (diff)
Fix: make sure outdir existsmain
Diffstat (limited to 'ffmpeg.go')
-rw-r--r--ffmpeg.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.go b/ffmpeg.go
index 4dead58..0e45f86 100644
--- a/ffmpeg.go
+++ b/ffmpeg.go
@@ -31,7 +31,7 @@ func cutoutClipAndTranscode(ut *Utterance) error {
func cutOnEqualParts(filepath, outname, segment string) error {
err := ffmpeg.Input(filepath).
- Output(outname+"%02d.opus",
+ Output(outname+"_%02d.opus",
ffmpeg.KwArgs{
"c": "copy",
"map": 0,