- #!/bin/sh
- # Copyright © 2010-2014 Jonas Smedegaard <dr@jones.dk>
- # Description: Recode a video into web-optimized format(s)
- #
- # This program is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation; either version 3, or (at your option)
- # any later version.
- #
- # This program is distributed in the hope that it will be useful, but
- # WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- # General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
- #
- # Depends: libav-tools melt mediainfo ffmpegthumbnailer
- #
- # TODO: offer to skip rendering again if an output file exist already
- # TODO: support --width and --height (resolving the other part from input/forced aspect ratio)
- set -e
- PRG=$(basename "$0")
- showhelp() {
- cat <<EOF
- Usage: $PRG [OPTION...] [--] [ARG=VALUE...] INPUTFILE... [ARG=VALUE...]
- Encode video file in multiple web-optimized formats, and provide sample
- html favoring open formats with optional non-JavaScript Flash fallback.
- --video Video style:
- ref-bpp
- talkinghead 0.1
- action 0.15
- (default: none)
- -p, --profile Video format - size with optional rate suffix,
- delimited by @ (except for widescreen labels):
- e.g. 848x480@25 480p25 wvga@25
- (default: none)
- -s, --size: Video frame size:
- [modulus 16]
- 320x240 qvga
- 640x480 vga 480p 848x480 wvga
- 576p 1024x576 wsvga
- 1024x768 xga hd 720p 1280x720 wxga
- [modulus 8]
- 240p 424x240 wqvga
- 480x360 hvga nhd 360p 640x360
- 800x600 svga
- (default: use input size)
- -a, --aspect Display Aspect Ratio in melt format e.g. @16/9
- (default: no aspect hinting)
- -r, --rate Video framerate - integer or fraction:
- e.g. 15 1001/24000 25 1001/30000
- (default: use input framerate)
- --refbpp Reference bits-per-pixel (relative to 360p30),
- for computing average bitrate when not fixed.
- (default: 0.12)
- -b, --bitrate Fixed video bitrate in bytes: e.g. 768k 1M
- (default: none - use variable bitrate)
- --formats Containers and codecs to use (comma-sparated):
- container video codec audio codec
- ogg Ogg Theora Vorbis
- webm WebM VP8 Vorbis
- vp9 WebM VP9 Opus
- mp4 MPEG-4 H.264 AAC
- (default: webm,vp9,mp4)
- --audio Audio style:
- channels limit
- music max 2
- hqspeech 1
- speech 1 X
- silence 0
- (default: none - use input channel count)
- --audioprefilter Add melt audio filter before loudness.
- --loudness Add EBU R128 loudness filter.
- --loudness-results Add EBU R128 loudness filter, applying
- precomputed analysis results.
- (default: none - compute results on-the-fly)
- --filter Add melt filter (applied to all input files)
- --stem Stem of output filenames, optionally with path
- (default: basename of last input file)
- -t, --title Title used in html fallback graphics
- (default: stem)
- --sample Create only a 150 frames long sample.
- --sample-start Create sample, starting at a specific frame.
- (default: start at first frame)
- --sample-length Create sample, of specified length in frames.
- (default: 150 frames - i.e. approx. 5s)
- -h, --help This help text
- Examples:
- $PRG -s qvga -t "Funny guy" intro.dv myvideo.dv
- $PRG -p 480p --stem funny --filter "grain noise=20" myvideo.dv
- Options before input files are passed to melt producer, and after to
- melt avformat consumer.
- Hints:
- * Use square-pixel max. 480 width (vga 480p) for widest compatibility.
- * Use a modulus 16 profile (qvga vga 480p 720p) for best compression.
- * Try lower reference bits-per-pixel until visual quality is affected.
- * Raise reference bits-per-pixel if needed, but no higher than 0.2.
- (you can inspect actual bits-per-pixel and bitrate with mediainfo)
- More info:
- <http://camendesign.com/code/video_for_everybody>
- <http://www.streaminglearningcenter.com/articles/configuring-your-streaming-video-(for-newbies).html>
- <http://en.wikipedia.org/wiki/HTML5_video>
- <http://www.penguinproducer.com/2012/01/ladspa-noise-removal/>
- <http://www.internetmarketingnotes.com/2010/07/free-embeddable-flash-video-flv-players-for-commercial-use/>
- EOF
- }
- exit1() {
- response="${1:+Error: }${1:-Internal error!}"
- echo >&2 "$response"
- exit 1
- }
- # defaults
- formats=webm,vp9,mp4
- samplestart=0
- samplelength=150
- # parse cmdline options
- TEMP="`getopt -s sh -o hp:s:a:r:b:t: -l help,profile:,size:,aspect:,rate:,video:,refbpp:,bitrate:,formats:,audio:,audioprefilter:,loudness,loudness-results:,filter:,stem:,title:,sample,sample-start:,sample-length: -n "$PRG" -- "$@"`" || exit1 "Internal getopt error."
- eval set -- "$TEMP"
- while true ; do
- case "$1" in
- -h|--help) showhelp; exit;;
- -p|--profile) profile="$2"; shift 2;;
- -s|--size) size="$2"; shift 2;;
- -a|--aspect) aspect="$2"; shift 2;;
- -r|--rate) framerate="$2"; shift 2;;
- --video) video="$2"; shift 2;;
- --refbpp) refbpp="$2"; shift 2;;
- -b|--bitrate) bitrate="$2"; bitrate_fixed=yes; shift 2;;
- --formats) formats="$2"; shift 2;;
- --audio) audio="$2"; shift 2;;
- --audioprefilter) audioprefilters="${audioprefilters:+$audioprefilters }-filter $2"; shift 2;;
- --loudness) loudness=yes; shift;;
- --loudness-results) loudness=yes; loudness_results="$2"; shift 2;;
- --filter) filters="${filters:+$filters }-filter $2"; shift 2;;
- --stem) stem="$2"; shift 2;;
- -t|--title) title="$2"; shift 2;;
- --sample) sample=yes; shift;;
- --sample-start) sample=yes; samplestart="$2"; shift 2;;
- --sample-length) sample=yes; samplelength="$2"; shift 2;;
- --) shift; break;;
- *) exit1 "Internal error resolving options.";;
- esac
- done
- # Resolve if melt is version 0.9.2 or newer
- # TODO: drop when melt 0.9.2 is stable
- melt_recent=$(melt -query filter=loudness | grep -qi R128 && echo yes)
- while [ $# -gt 0 ] ; do
- case "$1" in
- *=*) _melt_in="${_melt_in:+$_melt_in }$1"; shift;;
- *) break;;
- esac
- done
- while [ $# -gt 0 ] ; do
- case "$1" in
- *=*) _melt_out="${_melt_out:+$_melt_out }$1"; shift;;
- *) infiles="${infiles:+$infiles }$1"; shift;;
- esac
- done
- if [ -z "$infiles" ]; then
- showhelp
- exit1 "Too few parameters!"
- fi
- # input filename (mandatory)
- infile_first=$(perl -e 'print pop @ARGV' $infiles)
- [ -e "$infile_first" ] || exit1 "Input file missing!"
- # resolve stem and title (if not explicitly set)
- stem=${stem:-$(basename "$infile_first" | perl -pe 's/\.[^.]*//')}
- title=${title:-$stem}
- case "$profile" in
- *@*)
- while read s r foo; do
- size="${size:-$s}"
- framerate="${framerate:-$r}"
- done << EOF
- $(echo "$profile" | perl -F@ -anE 'say join " ", @F')
- EOF
- ;;
- *p*)
- while read s r foo; do
- size="${size:-${s}p}"
- framerate="${framerate:-$r}"
- done << EOF
- $(echo "$profile" | perl -Fp -anE 'say join " ", @F')
- EOF
- ;;
- *)
- size="$profile"
- ;;
- esac
- case "$size" in
- qvga) size=320x240;;
- hvga) size=480x360;;
- vga) size=640x480;;
- svga) size=800x600;;
- xga) size=1024x768;;
- 240p|wqvga) size=424x240;;
- 360p|nhd) size=640x360;;
- 480p|wvga) size=848x480;;
- 576p|wsvga) size=1024x576;;
- 720p|wxga|hd) size=1280x720;;
- esac
- if [ -n "$size" ]; then
- while read w h foo; do
- width="${width:-$w}"
- height="${height:-$h}"
- done << EOF
- $(echo "$size" | perl -Fx -anE 'say join " ", @F')
- EOF
- if [ -z "$width" ] || [ -z "$height" ]; then
- exit1 "Failed to parse size \"$size\"."
- fi
- fi
- case "$framerate" in
- */*)
- while read d n foo; do
- framerate_den="${framerate_den:-$d}"
- framerate_num="${framerate_num:-$n}"
- done << EOF
- $(echo "$framerate" | perl -Fx -anE 'say join " ", @F')
- EOF
- ;;
- ?*)
- framerate_den=1
- framerate_num="$framerate"
- ;;
- esac
- while read w h r foo; do
- width_in="${width_in:-$w}"
- height_in="${height_in:-$h}"
- framerate_in="${framerate_in:-$r}"
- done << EOF
- $(mediainfo --Inform="Video;%Width% %Height% %FrameRate%" "$infile_first")
- EOF
- case "$video" in
- talkinghead)
- refbpp="${refbpp:-0.1}"
- x264tune=film
- ;;
- action)
- refbpp="${refbpp:-0.15}"
- x264tune=film
- ;;
- '')
- refbpp="${refbpp:-0.12}"
- ;;
- *) exit1 "Unknown video style \"$video\".";;
- esac
- for format in $(echo "$formats" | sed -e 's/,/ /g'); do
- case $format in
- ogg) ogg=yes;;
- mp4) mp4=yes;;
- webm) webm=yes;;
- vp9) vp9=yes;;
- *) exit1 "Unknown format \"$format\".";;
- esac
- done
- _width="${width:-$width_in}"
- _height="${height:-$height_in}"
- if [ -n "$_width" ] && [ -n "$_height" ]; then
- _pixels="$(($_width*$_height))"
- fi
- _frames="${framerate:-$framerate_in}"
- webmpreset=360p
- if [ -n "$_pixels" ] && [ $_pixels -ge $((1024*768)) ]; then
- webmpreset=720p
- if [ -n "$_frames" ] && [ $_frames -gt 40 ]; then
- webmpreset=720p50_60
- fi
- fi
- # compute average bitrate from reference data and "power of .75" rule
- if [ -z "$bitrate" ] && [ -n "$_pixels" ] && [ -n "$_frames" ]; then
- bitrate=$(perl -E '$refsize=640*360;' \
- -E "say int( +(($_pixels/\$refsize)**0.75*\$refsize*$_frames*$refbpp) )")
- bitrate_half=$(perl -E "say int( $bitrate/2 )") #"
- fi
- # default per-codec-channel bitrates
- bitrate_vorbis=64
- bitrate_opus=64
- bitrate_aac=96
- case "$audio" in
- music)
- channels=2
- ;;
- hqspeech)
- channels=1
- bitrate_vorbis=48
- bitrate_opus=32
- bitrate_aac=64
- ;;
- speech)
- channels=1
- bitrate_vorbis=48
- bitrate_opus=32
- bitrate_aac=64
- compress=yes
- [ -z "$melt_recent" ] || _melt_loudness="$loudness_results"
- limit=yes
- ;;
- silence)
- channels=0
- ;;
- '')
- channels=$(avprobe -v warning -show_streams "$infile_first" | perl -ne 's/channels=// and print $_')
- ;;
- *) exit1 "Unknown audio style \"$audio\".";;
- esac
- [ $channels -le 2 ] || channels=2
- [ $channels -gt 0 ] || channels=
- # TODO: Check and fail if all needed tools are not available
- # TODO: When verified beneficial, add option real_time=-2
- melt="melt -progress"
- _melt_in="${_melt_in:+$_melt_in }${sample:+in=${samplestart:-0} out=$((${samplestart:-0} + samplelength))}"
- _melt_video="progressive=1${framerate:+ frame_rate_den="$framerate_den" frame_rate_num="$framerate_num"}${size:+ s=${width:+$width}x${height:+$height}}${aspect:+ aspect=$aspect}"
- _melt_ogg="$_melt_video f=ogg vcodec=libtheora${bitrate:+ vb=$bitrate}${bitrate_fixed:- qscale=5}"
- _melt_h264="$_melt_video f=mp4 vcodec=libx264${bitrate:+ vb=$bitrate} threads=0 movflags=+faststart vpre=baseline${x264tune:+ tune=$x264tune}${bitrate_fixed:- crf=23}"
- _melt_webm="$_melt_video f=webm vcodec=libvpx${bitrate:+ vb=$bitrate} vpre=libvpx-$webmpreset${bitrate_fixed:- crf=10} cpu-used=3"
- # CRF ignored with libvpx 1.3
- _melt_vp9="$_melt_video f=webm vcodec=libvpx-vp9${bitrate:+ vb=$bitrate_half} vpre=libvpx-$webmpreset${bitrate_fixed:- crf=10} cpu-used=5"
- _melt_audio="${channels:+ac=$channels}"
- # limit (i.e. avoid peaks "clipping")
- _melt_postfilters_audio="${limit:+-filter ladspa.1077}"
- _melt_vorbis="$_melt_audio acodec=libvorbis ab=$(($channels*$bitrate_vorbis))k"
- _melt_opus="$_melt_audio acodec=libopus ab=$(($channels*$bitrate_opus))k"
- _melt_aac="$_melt_audio acodec=aac ab=$(($channels*$bitrate_aac))k"
- # resolve EBU R128 audio normalizing
- # TODO: normalize each infile separately when xml fed as infile keeps sync
- if [ -n "$loudness" ] && [ -z "$_melt_loudness" ]; then
- $melt -group $_melt_in $infiles -group $audioprefilters -filter loudness -consumer xml:$stem.xml $_melt_audio video_off=1 all=1
- _melt_loudness="$(perl -ne 'm!<property name="results">([^<]+)</property>! and print $1' $stem.xml)"
- fi
- if [ -n "$mp4" ] && [ -n "$bitrate_fixed" ]; then
- $melt -group $_melt_in $infiles -group $filters \
- -consumer avformat:/dev/null pass=1 fastfirstpass=1 an=1 audio_off=1 $_melt_h264 $_melt_out
- fi
- # TODO: always use two-pass for webm when supported by melt
- $melt -group $_melt_in $infiles \
- -group ${channels:+$audioprefilters${_melt_loudness:+ -filter loudness results="$_melt_loudness"}} \
- $filters${channels:+ $_melt_postfilters_audio} \
- ${ogg:+-consumer avformat:$stem.ogv $_melt_ogg $_melt_vorbis $_melt_out} \
- ${mp4:+-consumer avformat:$stem.mp4 ${bitrate_fixed:+pass=2} $_melt_h264 $_melt_aac $_melt_out} \
- ${webm:+-consumer avformat:$stem.webm $_melt_webm $_melt_vorbis $_melt_out} \
- ${vp9:+-consumer avformat:${stem}_vp9.webm $_melt_vp9 $_melt_opus $_melt_out}
- if [ -n "$mp4" ] && [ -z "$melt_recent" ]; then
- mv "$stem.mp4" "$stem.mp4"~
- qt-faststart "$stem.mp4"~ "$stem.mp4"
- [ -f "$stem.mp4" ] && rm "$stem.mp4"~ || mv -f "$stem.mp4"~ "$stem.mp4"
- fi
- # cleanup audio normalize hinting
- rm -f $stem.xml
- ## JPEG preview
- ffmpegthumbnailer -s0 -i "$stem.mp4" -o "$stem.jpg"
- __width="${_width:+ width=\"$_width\"}"
- __height="${_height:+ height=\"$_height\"}"
- # Flash object needs extra space for controllers
- __heightplus=${_height:+ height=\"$(($_height+4))\"}
- _source_ogg="<source src=\"$stem.ogv\" type=\"video/ogg\" />"
- _source_webm="<source src=\"$stem.webm\" type=\"video/webm\" />"
- _source_vp9="<source src=\"${stem}_vp9.webm\" type='video/ogg; codecs=\"vp9, opus\"' />"
- _source_mp4="<source src=\"$stem.mp4\" type=\"video/mp4\" />"
- # TODO: resolve flash player to use
- [ -z "$flashplayer" ] || flash=yes
- [ -n "$mp4" ] || [ -z "$flash" ] || error1 "Cannot enable flash when mp4 format is disabled."
- _object_flash="<object$__width$__heightplus type=\"application/x-shockwave-flash\" data=\"$flashplayer.swf\">"
- _param_name="<param name=\"movie\" value=\"$flashplayer.swf\" />"
- _param_flashvars="<param name=\"flashvars\" value=\"image=$stem.jpg&file=$stem.mp4\" />"
- __oggfile=${ogg:+open format <a href=\"$stem.ogv\">Ogg</a>}
- __webmfile=${webm:+open format <a href=\"$stem.webm\">WebM (VP8)</a>}
- __vp9file=${vp9:+open format <a href=\"${stem}_vp9.webm\">WebM (VP9/Opus)</a>}
- __mp4file=${mp4:+closed format <a href=\"$stem.mp4\">MPEG-4</a>}
- cat >"$stem.html" <<EOF
- <!-- Video for Everybody, Kroc Camen of Camen Design -->
- <video$__width$__height preload controls>
- ${mp4:+$_source_mp4
- }${vp9:+$_source_vp9
- }${webm:+$_source_webm
- }${ogg:+$_source_ogg
- }${flash:+$_object_flash
- $_param_name
- $_param_flashvars
- }<img src="$stem.jpg"$__width$__height alt="$title"
- title="No video playback capabilities, please download the video below" />
- ${flash:+</object>
- }</video>
- <p><strong>Download Video:</strong><ul>
- ${vp9:+<li>$__vp9file
- }${webm:+<li>$__webmfile
- }${ogg:+<li>$__oggfile
- }${mp4:+<li>$__mp4file
- }</ul></p>
- EOF
|