summaryrefslogtreecommitdiffstats
path: root/TOOLS
diff options
context:
space:
mode:
authorjonas <jonas@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-03-22 11:26:27 +0000
committerjonas <jonas@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-03-22 11:26:27 +0000
commit466e56e97cb7cc754cc78c23da2894f3523597ca (patch)
treef7465fbfb31d9548cc713dc8be31698201f32c43 /TOOLS
parent7ccf4830263c1d7eaaf42a50dd7a602a6b6e8a31 (diff)
downloadmpv-466e56e97cb7cc754cc78c23da2894f3523597ca.tar.bz2
mpv-466e56e97cb7cc754cc78c23da2894f3523597ca.tar.xz
use mencoder directly for mp3lame encoding instead of lavc
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17913 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'TOOLS')
-rwxr-xr-xTOOLS/aconvert6
1 files changed, 1 insertions, 5 deletions
diff --git a/TOOLS/aconvert b/TOOLS/aconvert
index bbaef5523e..bb5e714892 100755
--- a/TOOLS/aconvert
+++ b/TOOLS/aconvert
@@ -8,10 +8,6 @@ if [[ $1 == "" ]]; then
exit 0
fi
-if [[ $3 == "" ]]; then
- options="-oac lavc -lavcopts acodec=mp3:abitrate=192"
-else
- options=$3
-fi
+options=${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