0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 20:03:10 +02:00
mpv/TOOLS/aconvert
jonas 466e56e97c use mencoder directly for mp3lame encoding instead of lavc
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17913 b3059339-0415-0410-9bf9-f77b7e298cf2
2006-03-22 11:26:27 +00:00

14 lines
431 B
Bash
Executable File

#!/bin/sh
# Author: Jonas Jermann
# Description: A hack to allow mencoder to encode from an audio only file
if [[ $1 == "" ]]; then
echo "Usage: $0 <\"input file\"> <\"output file\"> <\"options\">"
exit 0
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