X-Git-Url: http://git.pippins.net/embedvideo/.git/static/gitweb.js?a=blobdiff_plain;f=rip_dvd;h=c0de21f53d55e811377582495099e5a7e0466e77;hb=c041ccc3808563b9a1d53fcf0edecb19b7dd1aae;hp=afa9aa853f90e2544151c14a9436477c3ef180c0;hpb=a3b48d5a629b43baf5a894edbddbcd102c7d077b;p=rip_dvd%2F.git diff --git a/rip_dvd b/rip_dvd index afa9aa8..c0de21f 100755 --- a/rip_dvd +++ b/rip_dvd @@ -395,7 +395,7 @@ function encode_vob_file { if [ "$profile" == "xvid" ] || [ "$profile" == "xvidhq" ] || [ "$profile" == "xvidvhq" ]; then found_profile=1 final_output_file="$dest/$dvdname.avi" - mencoder_general_opts="-quiet $lang_opts $passlogfile_opt" + mencoder_general_opts="$lang_opts $passlogfile_opt" mencoder_output_opts="-ofps 30000/1001 -ffourcc DIVX" mencoder_video_filter_opts="-vf pullup,softskip,hqdn3d=2:1:2$CROP$SCALE" mencoder_video_encoder_opts="-ovc xvid -xvidencopts $pass_opt" @@ -452,7 +452,7 @@ function encode_vob_file { if [ "$profile" == "mp4" ] || [ "$profile" == "mp4hq" ] || [ "$profile" == "mp4vhq" ]; then found_profile=1 final_output_file="$dest/$dvdname.mp4" - mencoder_general_opts="-quiet $lang_opts $passlogfile_opt" + mencoder_general_opts="$lang_opts $passlogfile_opt" mencoder_output_opts="-ofps 30000/1001 -sws 9 -of lavf -lavfopts format=mp4" mencoder_video_filter_opts="-vf harddup$CROP$SCALE"; mencoder_video_encoder_opts="-ovc x264 -x264encopts $pass_opt" @@ -531,7 +531,7 @@ function encode_vob_file { SCALE=",dsize=320:240:0,scale=-8:-8" fi final_output_file="$dest/$dvdname.mp4" - mencoder_general_opts="-quiet $lang_opts $passlogfile_opt" + mencoder_general_opts="$lang_opts $passlogfile_opt" mencoder_output_opts="-ofps 30000/1001 -sws 9 -of lavf -lavfopts format=mp4" mencoder_video_filter_opts="-vf harddup$CROP$SCALE"; mencoder_video_encoder_opts="-ovc x264 -x264encopts $pass_opt" @@ -592,7 +592,7 @@ function encode_vob_file { fi # Concatenate the encode log to our main log file, greping out unwanted lines - cat $encodelog | grep -v "Pos:" >> "$logfile" + cat $encodelog | grep -v "^Pos:" | grep -v "duplicate" >> "$logfile" done }