switch audio to 160k

This commit is contained in:
Carl Pearson
2024-09-07 06:03:09 -06:00
parent 6b50fbcc6f
commit 767e382b90

View File

@@ -214,7 +214,7 @@ func startDownload(videoID uint, videoURL string) {
}
ffmpeg := "ffmpeg"
ffmpegArgs := []string{"-i", videoFilepath, "-vn", "-acodec",
"mp3", "-b:a", "192k", audioFilepath}
"mp3", "-b:a", "160k", audioFilepath}
fmt.Println(ffmpeg, ffmpegArgs)
cmd = exec.Command(ffmpeg, ffmpegArgs...)
err = cmd.Run()