Merge pull request #95 from paul-nameless/change-ffmpeg-cmd-linux

Change default ffmpeg cmd for Linux
This commit is contained in:
Nameless 2020-06-30 15:10:08 +08:00 committed by GitHub
commit 9c155811f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,8 +36,9 @@ NOTIFY_CMD = "/usr/local/bin/terminal-notifier -title {title} -subtitle {subtitl
HELP_CMD = "less"
if _os_name == _linux:
# for more info see https://trac.ffmpeg.org/wiki/Capture/ALSA
VOICE_RECORD_CMD = (
"ffmpeg -f alsa -i default -c:a libopus -b:a 32k {file_path}"
"ffmpeg -f alsa -i hw:0 -c:a libopus -b:a 32k {file_path}"
)
else:
VOICE_RECORD_CMD = (