[Mplayer-felhasznalok] divx2svcd
VMiklos
mamajom at axelero.hu
Sun Jan 4 04:01:18 CET 2004
itt az uj, w/ht hasznalo divx2svcd
innentol kezdve ha az mplyer a codecben(divx) vagy a containerben(mpeg),
vagy ahol meg jolesik megtalalja az aspectet, akkor azt mar a script is
figylembe veszi
nalam mukodott. a problemas divxeket mostma benyalja?
mellekelten kuldok meg egy nagyon 1xu shell-scriptet, megkene nezni, hogy
mandrake-ben mukodik-e. ha ez se megy, akko tom sajnalni, de nem az en
hibam.
udv
---
__________ VMiklos / FapadOS & EL Team
____/__/___|___\__. E-mail: mainroot at freemail dot hu
O__O _ | | _ | Homepage: http://www.vmiklos.tk
'--`-(_)'---'--(_)-' gpg --keyserver hkp://pgp.mit.edu --recv-keys 03915096
-------------- next part --------------
#!/bin/bash
function fuggveny()
{
echo "ez a fuggveny"
}
fuggveny
-------------- next part --------------
#!/bin/bash
# (c) 2003 Vajna Miklos <mainroot at freemail.hu>
# divx2svcd for mencoder
# distributed under GPL License
# version 0.4.3
###preparing###
#help
function usage()
{
echo "
Usage: divx2svcd input_avi [options]
Options:
-b|--bitrate bitrate of mp2 video stream [1600]
-s|--cdsize size of the cd we split the video to [795]
-h|--help this help screen
"
}
#initializating constants
bitrate=1600
cdmeret=795
#checking which mplex utility we have to use
which tcmplex-panteltje >/dev/null 2>&1
if [ $? = 0 ]; then
tcp_path=`which tcmplex-panteltje 2>&1`
else
tcp_path="x"
fi
which tcmplex >/dev/null 2>&1
if [ $? = 0 ]; then
tc_path=`which tcmplex 2>&1`
else
tc_path="x"
fi
if [ -x $tcp_path ]; then
tcbin=tcmplex-panteltje
tcopt=-0
elif [ -x $tc_path ]; then
tcbin=tcmplex
tcopt=-p
fi
#pharsing parameters
if [ $# -le 0 ]; then
echo "Missing parameter!"
usage
exit 1
fi
case $1 in
-*)
echo "Unknown parameter!"
usage
exit 1
;;
*)
input=$1
nev=`basename $input .avi`
shift 1
;;
esac
while [ "$1"x != "x" ]; do
case $1 in
-b|--bitrate)
bitrate=$2
shift 1
;;
-s|--cdsize)
cdmeret="$2"
shift 1
;;
-h|--help)
usage
exit 0
;;
esac
shift 1
done
#checking for sub avariable
if [ -f $nev.sub ]; then
subopts="-sub $nev.sub"
else
subopts=''
fi
#checking for what height needed
inputwidth=`mplayer -vo null -ao null $input -frames 1 |grep '=>'|cut -d ' ' -f 5|cut -d x -f 1`
inputheight=`mplayer -vo null -ao null $input -frames 1 |grep '=>'|cut -d ' ' -f 5|cut -d x -f 2`
svcdaspect=`echo -e "scale=10\n1.596/($inputwidth/$inputheight)"|bc /dev/stdin`
height=`echo -e "scale=10\n$svcdaspect*480"|bc /dev/stdin|cut -d . -f 1`
#checking for ratios less than 1.33
istoohigh=`expr $height \> 577`
if [ "$istoohigh" = 1 ]; then
height=576
fi
#find out the vf options
if [ "$height" = 576 ]; then
vfopts='-vf scale=480:576'
else
#-vf processes filters in reverse order
exy=`echo -e "scale=10\n(576-$height)/2"|bc /dev/stdin|cut -d . -f 1`
vfopts="-vf scale=480:$height,expand=480:576:0:$exy:1"
echo "using filter options: '$vfopts'"
fi
###start working###
#encoding
mencoder -ofps 25 -oac lavc $input -ovc lavc -lavcopts vcodec=mpeg2video:vbitrate=$bitrate:acodec=mp2:abitrate=128:keyint=25:aspect=4/3 -o ${nev}2.avi $subopts -srate 44100 -channels 2 $vfopts
#splitting
mplayer -dumpvideo -dumpfile $nev.m2v ${nev}2.avi
mplayer -dumpaudio -dumpfile $nev.mp2 ${nev}2.avi
rm ${nev}2.avi
echo "maxFileSize = $cdmeret" > template
$tcbin -i $nev.m2v $tcopt $nev.mp2 -o $nev.mpg -m s -F template
rm template
rm $nev.m2v $nev.mp2
#creating images
for i in $nev*mpg ; do
nev2=`basename $i .mpg`
vcdimager -t svcd -c $nev2.cue -b $nev2.bin $i
done
rm $nev*mpg
More information about the MPlayer-felhasznalok
mailing list