4 lines
135 B
Bash
Executable file
4 lines
135 B
Bash
Executable file
#!/bin/sh
|
|
# Convert given file to opus, requires opus-tools or ffmpeg
|
|
opusenc "$@" "${1%.*}.opus" ||
|
|
ffmpeg -i "$@" "${1%.*}.opus"
|