📅  最后修改于: 2023-12-03 15:38:50.835000             🧑  作者: Mango
在 Shell/Bash 环境下,可以使用以下命令来检查颤振的版本:
tremor --version
该命令将输出以下类似的版本信息:
Tremor 1.0.0-git (5f7e3e31)
其中,“Tremor” 是颤振的名称,“1.0.0-git” 是颤振的版本号,“5f7e3e31” 是颤振的 Git 提交哈希值。
如果你想检查颤振所支持的编码格式,可以使用以下命令:
tremor --encodings
这将输出以下颤振支持的编码格式:
vorbis Opus FLAC ALAC WMA AAC MP3 PCM AMR_NB
amrnb-wip opus_z opus_c amrnb_c wma10pro wma9 aac_psy ac3_fpo amrnb_if2
另外,如果你想查看颤振支持的其他命令选项,可以使用以下命令:
tremor --help
这将输出以下所有的颤振命令选项:
Usage: tremor [options] <input-file>
Options:
-h, --help print this help text and exit
-v, --version print version information and exit
-n, --no-dither disable dithering when down-converting bit depth
-b, --bit-depth <N> down-convert audio to N-bit depth (default: 16)
-r, --sample-rate <N> resample audio to N Hz (default: 44100)
-e, --encoding <ENC> set output audio encoding to ENC
-l, --list-encodings print a list of available audio encodings and exit
-p, --playback play decoded audio using aplay or sox (default: disabled)
--alsa-device <DEV> use ALSA device DEV for playback (default: hw:0,0)
--sox-opts <OPTIONS> specify additional options for sox playback
-s, --stats print decoding statistics summary
-d, --dump-format dump format information for the input file and exit
--high-precision use high-precision arithmetic for Vorbis decoding
希望这些信息能够帮到你检查颤振版本和支持的功能。