scripts/encode_{mp4,webm}.sh: simplify for reuse

This commit is contained in:
Astro 2012-09-09 09:49:14 +02:00
parent a38dfcc337
commit caeb426aef
2 changed files with 40 additions and 40 deletions

View File

@ -1,33 +1,34 @@
#!/bin/sh
#!/bin/sh -e
if=$1
of=`basename "$1"`".mp4"
schedtool -De \
ffmpeg -i "$if" \
# No. CPU cores:
threads=2
# Video bitrate:
vb=400k
# Audio bitrate:
ab=96k
ffmpeg -i "$if" \
-f mp4 \
-an \
-threads 4 \
-deinterlace \
-threads $threads \
-vcodec libx264 \
-vpre libx264-ipod640 \
-b:v 400k \
-b:v $vb \
-pass 1 \
-passlogfile "$of.ffmpeg2pass" \
-y \
/dev/null && \
schedtool -De \
ffmpeg -i "$if" \
-y /dev/null
ffmpeg -i "$if" \
-f mp4 \
-acodec libmp3lame \
-ab 96k \
-threads 4 \
-deinterlace \
-acodec libfaac \
-ab $ab \
-threads $threads \
-vcodec libx264 \
-vpre libx264-ipod640 \
-b:v 400k \
-b:v $vb \
-pass 2 \
-passlogfile "$of.ffmpeg2pass" \
-y \
"$of"
-y "$of"

View File

@ -1,34 +1,33 @@
#!/bin/sh
#!/bin/sh -e
if=$1
of=`basename "$1"`".webm"
if [ ! -f "$of.ffmpeg2pass-0.log" ]; then
schedtool -De \
ffmpeg -i "$if" \
-threads 4 \
-f webm \
-an \
-vcodec libvpx \
-deinterlace \
-b:v 400k \
-pass 1 \
-passlogfile "$of.ffmpeg2pass" \
-y \
/dev/null || exit 1
fi
schedtool -De \
ffmpeg -i "$if" \
-threads 4 \
# No. CPU cores:
threads=2
# Video bitrate:
vb=400k
# Audio bitrate:
ab=96k
ffmpeg -i "$if" \
-threads $threads \
-f webm \
-an \
-vcodec libvpx \
-b:v $vb \
-pass 1 \
-passlogfile "$of.ffmpeg2pass" \
-y /dev/null
ffmpeg -i "$if" \
-threads $threads \
-f webm \
-acodec libvorbis \
-ab 96k \
-ab $ab \
-vcodec libvpx \
-deinterlace \
-b:v 400k \
-b:v $vb \
-pass 2 \
-passlogfile "$of.ffmpeg2pass" \
-y \
"$of" || exit 1
-y "$of"