aconvert
来自「君正早期ucos系统(只有早期的才不没有打包成库),MPLAYER,文件系统,图」· 代码 · 共 14 行
TXT
14 行
#!/bin/sh# Author: Jonas Jermann# Description: A hack to allow mencoder to encode from an audio only fileif [[ $1 == "" ]]; then echo "Usage: $0 <\"input file\"> <\"output file\"> <\"options\">" exit 0fioptions=${3:-"-oac mp3lame"} mencoder -demuxer rawvideo -rawvideo w=1:h=1 -ovc copy -of rawaudio -endpos `mplayer -identify $1 -frames 0 2>&1 | grep ID_LENGTH | cut -d "=" -f 2` -audiofile $1 -o $2 $options $1
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?