summaryrefslogtreecommitdiff
path: root/localvideowebencode
blob: 7586d08576afe5775916c28ed1e7af1d451a467e (plain)
  1. #!/bin/sh
  2. # Copyright © 2010-2014 Jonas Smedegaard <dr@jones.dk>
  3. # Description: Recode a video into web-optimized format(s)
  4. #
  5. # This program is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 3, or (at your option)
  8. # any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful, but
  11. # WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. # General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. #
  18. # Depends: libav-tools melt mediainfo
  19. #
  20. # TODO: offer to skip rendering again if an output file exist already
  21. # TODO: support --width and --height (resolving the other part from input/forced aspect ratio)
  22. set -e
  23. PRG=$(basename "$0")
  24. showhelp() {
  25. cat <<EOF
  26. Usage: $PRG [OPTION...] [--] [ARG=VALUE...] INPUTFILE... [ARG=VALUE...]
  27. Encode video file in multiple web-optimized formats, and provide sample
  28. html favoring open formats with optional non-JavaScript Flash fallback.
  29. --video Video style:
  30. ref-bpp
  31. talkinghead 0.1
  32. action 0.15
  33. (default: none)
  34. -p, --profile Video format - size with optional rate suffix,
  35. delimited by @ (except for widescreen labels):
  36. e.g. 848x480@25 480p25 wvga@25
  37. (default: none)
  38. -s, --size: Video frame size:
  39. [modulus 16]
  40. 320x240 qvga
  41. 640x480 vga 480p 848x480 wvga
  42. 576p 1024x576 wsvga
  43. 1024x768 xga hd 720p 1280x720 wxga
  44. [modulus 8]
  45. 240p 424x240 wqvga
  46. 480x360 hvga nhd 360p 640x360
  47. 800x600 svga
  48. (default: use input size)
  49. -a, --aspect Display Aspect Ratio in melt format e.g. @16/9
  50. (default: no aspect hinting)
  51. -r, --rate Video framerate - integer or fraction:
  52. e.g. 15 1001/24000 25 1001/30000
  53. (default: use input framerate)
  54. --refbpp Reference bits-per-pixel (relative to 360p30),
  55. for computing average bitrate when not fixed.
  56. (default: 0.12)
  57. -b, --bitrate Fixed video bitrate in bytes: e.g. 768k 1M
  58. (default: none - use variable bitrate)
  59. --formats Containers and codecs to use (comma-sparated):
  60. container video codec audio codec
  61. ogg Ogg Theora Vorbis
  62. webm WebM VP8 Vorbis
  63. vp9 WebM VP9 Opus
  64. mp4 MPEG-4 H.264 AAC
  65. (default: webm,vp9,mp4)
  66. --audio Audio style:
  67. channels limit Vorbis Opus AAC
  68. music max 2 64k 64k audio 96k
  69. hqspeech 1 48k 32k voip 64k
  70. speech 1 X 48k 32k voip 64k
  71. silence 0
  72. (default: none - use channel count of 1st input)
  73. --audioprefilter Add melt audio filter before loudness.
  74. --loudness Add EBU R128 loudness filter.
  75. --loudness-results Add EBU R128 loudness filter, applying
  76. precomputed analysis results.
  77. (default: none - compute results on-the-fly)
  78. --filter Add melt filter (applied to all input files)
  79. --stem Stem of output filenames, optionally with path
  80. (default: basename of last input file)
  81. -t, --title Title used in html fallback graphics
  82. (default: stem)
  83. --sample Create only a 150 frames long sample.
  84. --sample-start Create sample, starting at a specific frame.
  85. (default: start at first frame)
  86. --sample-length Create sample, of specified length in frames.
  87. (default: 150 frames - i.e. approx. 5s)
  88. -h, --help This help text
  89. Examples:
  90. $PRG -s qvga -t "Funny guy" intro.dv myvideo.dv
  91. $PRG -p 480p --stem funny --filter "grain noise=20" myvideo.dv
  92. Recommendations for best results:
  93. * Use square-pixel max. 480 width (vga 480p).
  94. * Use a modulus 16 profile (qvga vga 480p 720p).
  95. * Adjust --video or --ref-bpp until visual unacceptable.
  96. More info:
  97. <http://camendesign.com/code/video_for_everybody>
  98. <http://www.streaminglearningcenter.com/articles/configuring-your-streaming-video-(for-newbies).html>
  99. <http://en.wikipedia.org/wiki/HTML5_video>
  100. <http://www.penguinproducer.com/2012/01/ladspa-noise-removal/>
  101. <http://www.internetmarketingnotes.com/2010/07/free-embeddable-flash-video-flv-players-for-commercial-use/>
  102. EOF
  103. }
  104. exit1() {
  105. response="${1:+Error: }${1:-Internal error!}"
  106. echo >&2 "$response"
  107. exit 1
  108. }
  109. # defaults
  110. formats=webm,vp9,mp4
  111. samplestart=0
  112. samplelength=150
  113. # parse cmdline options
  114. 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."
  115. eval set -- "$TEMP"
  116. while true ; do
  117. case "$1" in
  118. -h|--help) showhelp; exit;;
  119. -p|--profile) profile="$2"; shift 2;;
  120. -s|--size) size="$2"; shift 2;;
  121. -a|--aspect) aspect="$2"; shift 2;;
  122. -r|--rate) framerate="$2"; shift 2;;
  123. --video) video="$2"; shift 2;;
  124. --refbpp) refbpp="$2"; shift 2;;
  125. -b|--bitrate) bitrate="$2"; bitrate_fixed=yes; shift 2;;
  126. --formats) formats="$2"; shift 2;;
  127. --audio) audio="$2"; shift 2;;
  128. --audioprefilter) audioprefilters="${audioprefilters:+$audioprefilters }-filter $2"; shift 2;;
  129. --loudness) loudness=yes; shift;;
  130. --loudness-results) loudness=yes; loudness_results="$2"; shift 2;;
  131. --filter) filters="${filters:+$filters }-filter $2"; shift 2;;
  132. --stem) stem="$2"; shift 2;;
  133. -t|--title) title="$2"; shift 2;;
  134. --sample) sample=yes; shift;;
  135. --sample-start) sample=yes; samplestart="$2"; shift 2;;
  136. --sample-length) sample=yes; samplelength="$2"; shift 2;;
  137. --) shift; break;;
  138. *) exit1 "Internal error resolving options.";;
  139. esac
  140. done
  141. # Resolve if melt is version 0.9.2 or newer
  142. # TODO: drop when melt 0.9.2 is stable
  143. melt_recent=$(melt -query filter=loudness | grep -qi R128 && echo yes)
  144. infiles=$*
  145. if [ -z "$infiles" ]; then
  146. showhelp
  147. exit1 "Too few parameters!"
  148. fi
  149. # input filename (mandatory)
  150. infile_first=$(perl -e 'print pop @ARGV' $infiles)
  151. [ -e "$infile_first" ] || exit1 "Input file missing!"
  152. # resolve stem and title (if not explicitly set)
  153. stem=${stem:-$(basename "$infile_first" | perl -pe 's/\.[^.]*//')}
  154. title=${title:-$stem}
  155. case "$profile" in
  156. *@*)
  157. while read s r foo; do
  158. size="${size:-$s}"
  159. framerate="${framerate:-$r}"
  160. done << EOF
  161. $(echo "$profile" | perl -F@ -anE 'say join " ", @F')
  162. EOF
  163. ;;
  164. *p*)
  165. while read s r foo; do
  166. size="${size:-${s}p}"
  167. framerate="${framerate:-$r}"
  168. done << EOF
  169. $(echo "$profile" | perl -Fp -anE 'say join " ", @F')
  170. EOF
  171. ;;
  172. *)
  173. size="$profile"
  174. ;;
  175. esac
  176. case "$size" in
  177. qvga) size=320x240;;
  178. hvga) size=480x360;;
  179. vga) size=640x480;;
  180. svga) size=800x600;;
  181. xga) size=1024x768;;
  182. 240p|wqvga) size=424x240;;
  183. 360p|nhd) size=640x360;;
  184. 480p|wvga) size=848x480;;
  185. 576p|wsvga) size=1024x576;;
  186. 720p|wxga|hd) size=1280x720;;
  187. esac
  188. if [ -n "$size" ]; then
  189. while read w h foo; do
  190. width="${width:-$w}"
  191. height="${height:-$h}"
  192. done << EOF
  193. $(echo "$size" | perl -Fx -anE 'say join " ", @F')
  194. EOF
  195. if [ -z "$width" ] || [ -z "$height" ]; then
  196. exit1 "Failed to parse size \"$size\"."
  197. fi
  198. fi
  199. case "$framerate" in
  200. */*)
  201. while read d n foo; do
  202. framerate_den="${framerate_den:-$d}"
  203. framerate_num="${framerate_num:-$n}"
  204. done << EOF
  205. $(echo "$framerate" | perl -Fx -anE 'say join " ", @F')
  206. EOF
  207. ;;
  208. ?*)
  209. framerate_den=1
  210. framerate_num="$framerate"
  211. ;;
  212. esac
  213. while read w h r foo; do
  214. width_in="${width_in:-$w}"
  215. height_in="${height_in:-$h}"
  216. framerate_in="${framerate_in:-$r}"
  217. done << EOF
  218. $(mediainfo --Inform="Video;%Width% %Height% %FrameRate%" "$infile_first")
  219. EOF
  220. case "$video" in
  221. talkinghead)
  222. refbpp="${refbpp:-0.1}"
  223. x264tune=film
  224. ;;
  225. action)
  226. refbpp="${refbpp:-0.15}"
  227. x264tune=film
  228. ;;
  229. '')
  230. refbpp="${refbpp:-0.12}"
  231. ;;
  232. *) exit1 "Unknown video style \"$video\".";;
  233. esac
  234. for format in $(echo "$formats" | sed -e 's/,/ /g'); do
  235. case $format in
  236. ogg) ogg=yes;;
  237. mp4) mp4=yes;;
  238. webm) webm=yes;;
  239. vp9) vp9=yes;;
  240. *) exit1 "Unknown format \"$format\".";;
  241. esac
  242. done
  243. _width="${width:-$width_in}"
  244. _height="${height:-$height_in}"
  245. if [ -n "$_width" ] && [ -n "$_height" ]; then
  246. _pixels="$(($_width*$_height))"
  247. fi
  248. _frames="${framerate:-$framerate_in}"
  249. webmpreset=360p
  250. if [ -n "$_pixels" ] && [ $_pixels -ge $((1024*768)) ]; then
  251. webmpreset=720p
  252. if [ -n "$_frames" ] && [ $_frames -gt 40 ]; then
  253. webmpreset=720p50_60
  254. fi
  255. fi
  256. # compute average bitrate from reference data and "power of .75" rule
  257. bitrate_vp9="$bitrate"
  258. if [ -z "$bitrate" ] && [ -n "$_pixels" ] && [ -n "$_frames" ]; then
  259. bitrate=$(perl -E '$refsize=640*360;' \
  260. -E "say int( +(($_pixels/\$refsize)**0.75*\$refsize*$_frames*$refbpp) )")
  261. bitrate_vp9=$(perl -E "say int( $bitrate/2 )") #"
  262. fi
  263. # default per-codec-channel bitrates
  264. bitrate_vorbis=64
  265. bitrate_opus=64
  266. bitrate_aac=96
  267. channels=-1
  268. maxchannels=2
  269. case "$audio" in
  270. music)
  271. opusapp=audio
  272. ;;
  273. hqspeech)
  274. channels=1
  275. bitrate_vorbis=48
  276. bitrate_opus=32
  277. bitrate_aac=64
  278. opusapp=voip
  279. ;;
  280. speech)
  281. channels=1
  282. bitrate_vorbis=48
  283. bitrate_opus=32
  284. bitrate_aac=64
  285. compress=yes
  286. [ -z "$melt_recent" ] || _melt_loudness="$loudness_results"
  287. limit=yes
  288. opusapp=voip
  289. ;;
  290. silence)
  291. channels=0
  292. ;;
  293. '')
  294. :
  295. ;;
  296. *) exit1 "Unknown audio style \"$audio\".";;
  297. esac
  298. [ $channels -ge 0 ] || channels=$(avprobe -v warning -show_streams "$infile_first" | perl -ne 's/channels=// and print $_' || echo -1)
  299. [ $channels -le $maxchannels ] || channels=$maxchannels
  300. [ $channels -gt 0 ] || channels=
  301. # TODO: Check and fail if all needed tools are not available
  302. # TODO: When verified beneficial, add option real_time=-2
  303. melt="melt -progress"
  304. _melt_in="${_melt_in:+$_melt_in }${sample:+in=${samplestart:-0} out=$((${samplestart:-0} + samplelength))}"
  305. _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}"
  306. _melt_ogg="$_melt_video f=ogg vcodec=libtheora${bitrate:+ vb=$bitrate}${bitrate_fixed:- qscale=5}"
  307. _melt_h264="$_melt_video f=mp4 vcodec=libx264 vpre=medium vprofile=baseline${x264tune:+ tune=$x264tune}${bitrate_fixed:+ vb=$bitrate} threads=0 movflags=+faststart${bitrate_fixed:- crf=23}"
  308. _melt_webm="$_melt_video f=webm vcodec=libvpx vpre=libvpx-$webmpreset${bitrate:+ vb=$bitrate}${bitrate_fixed:+ minrate=$bitrate maxrate=$bitrate}{bitrate_fixed:- crf=10} cpu-used=3"
  309. _melt_img="$_melt_video f=image2"
  310. # CRF ignored with libvpx 1.3
  311. _melt_vp9="$_melt_video f=webm vcodec=libvpx-vp9 vpre=libvpx-$webmpreset${bitrate_vp9:+ vb=$bitrate_vp9}${bitrate_fixed:+ minrate=$bitrate_vp9 maxrate=$bitrate_vp9}${bitrate_fixed:- crf=10} cpu-used=5"
  312. _melt_audio="${channels:+ac=$channels}"
  313. # limit (i.e. avoid peaks "clipping")
  314. _melt_postfilters_audio="${limit:+-filter ladspa.1077}"
  315. _melt_vorbis="$_melt_audio acodec=libvorbis${channels:+ ab=$(($channels*$bitrate_vorbis))k}"
  316. _melt_opus="$_melt_audio acodec=libopus${channels:+ ab=$(($channels*$bitrate_opus))k}${bitrate_fixed:+ vbr=constrained}${opusapp:+ application=$opusapp}"
  317. _melt_aac="$_melt_audio acodec=aac${channels:+ ab=$(($channels*$bitrate_aac))k}"
  318. avconv="avconv -threads auto -y -v warning"
  319. _avconv_vp8="-c:v libvpx -pre:v libvpx-$webmpreset${bitrate:+ -b:v $bitrate}${bitrate_fixed:+ -minrate $bitrate -maxrate $bitrate}${bitrate_fixed:- -crf 10} -cpu-used 3"
  320. _avconv_vp9="-c:v libvpx-vp9 -pre:v libvpx-$webmpreset${bitrate_vp9:+ -b:v $bitrate_vp9}${bitrate_fixed:+ -minrate $bitrate_vp9 -maxrate $bitrate_vp9}${bitrate_fixed:- -crf 10} -cpu-used 5"
  321. # resolve EBU R128 audio normalizing
  322. # TODO: normalize each infile separately when xml fed as infile keeps sync
  323. if [ -n "$loudness" ] && [ -z "$_melt_loudness" ]; then
  324. $melt -group $_melt_in $infiles -group $audioprefilters -filter loudness -consumer xml:$stem.xml $_melt_audio video_off=1 all=1
  325. _melt_loudness="$(perl -ne 'm!<property name="results">([^<]+)</property>! and print $1' $stem.xml)"
  326. fi
  327. if [ -n "$mp4" ] && [ -n "$bitrate_fixed" ]; then
  328. $melt -group $_melt_in $infiles -group $filters \
  329. -consumer avformat:/dev/null pass=1 fastfirstpass=1 an=1 audio_off=1 $_melt_h264 $_melt_out
  330. fi
  331. if [ -n "$webm$vp9" ]; then
  332. $melt -group $_melt_in $infiles -group $filters \
  333. -consumer avformat:pipe:1 $_melt_video f=yuv4mpegpipe pix_fmt=yuv420p \
  334. | $avconv -i pipe:0 \
  335. ${webm:+-f rawvideo $_avconv_vp8 -an -pass 1 -passlogfile ${stem}_vp8 /dev/null} \
  336. ${vp9:+-f rawvideo $_avconv_vp9 -an -pass 1 -passlogfile ${stem}_vp9 /dev/null}
  337. [ -z "$webm" ] || mv -f ${stem}_vp8-*.log ${stem}_vp8_2pass.log
  338. [ -z "$vp9" ] || mv -f ${stem}_vp9-*.log ${stem}_vp9_2pass.log
  339. fi
  340. $melt -group $_melt_in $infiles \
  341. -group ${channels:+$audioprefilters${_melt_loudness:+ -filter loudness results="$_melt_loudness"}} \
  342. $filters${channels:+ $_melt_postfilters_audio} \
  343. ${ogg:+-consumer avformat:$stem.ogv $_melt_ogg $_melt_vorbis $_melt_out} \
  344. ${mp4:+-consumer avformat:$stem.mp4${bitrate_fixed:+ pass=2} $_melt_h264 $_melt_aac $_melt_out} \
  345. ${webm:+-consumer avformat:$stem.webm $_melt_webm$ pass=2 passlogfile=${stem}_vp8 $_melt_vorbis $_melt_out} \
  346. ${vp9:+-consumer avformat:${stem}_vp9.webm pass=2 passlogfile=${stem}_vp9 $_melt_vp9 $_melt_opus $_melt_out}
  347. if [ -n "$mp4" ] && [ -z "$melt_recent" ]; then
  348. mv "$stem.mp4" "$stem.mp4"~
  349. qt-faststart "$stem.mp4"~ "$stem.mp4"
  350. [ -f "$stem.mp4" ] && rm "$stem.mp4"~ || mv -f "$stem.mp4"~ "$stem.mp4"
  351. fi
  352. # cleanup audio normalize hinting
  353. rm -f $stem.xml
  354. ## JPEG preview
  355. $melt -group in=0 out=0 $infiles \
  356. -group $filters \
  357. -consumer avformat:$stem.jpg $_melt_img $_melt_out
  358. __width="${_width:+ width=\"$_width\"}"
  359. __height="${_height:+ height=\"$_height\"}"
  360. # Flash object needs extra space for controllers
  361. __heightplus=${_height:+ height=\"$(($_height+4))\"}
  362. _source_ogg="<source src=\"$stem.ogv\" type=\"video/ogg\" />"
  363. _source_webm="<source src=\"$stem.webm\" type=\"video/webm\" />"
  364. _source_vp9="<source src=\"${stem}_vp9.webm\" type='video/ogg; codecs=\"vp9, opus\"' />"
  365. _source_mp4="<source src=\"$stem.mp4\" type=\"video/mp4\" />"
  366. # TODO: resolve flash player to use
  367. [ -z "$flashplayer" ] || flash=yes
  368. [ -n "$mp4" ] || [ -z "$flash" ] || error1 "Cannot enable flash when mp4 format is disabled."
  369. _object_flash="<object$__width$__heightplus type=\"application/x-shockwave-flash\" data=\"$flashplayer.swf\">"
  370. _param_name="<param name=\"movie\" value=\"$flashplayer.swf\" />"
  371. _param_flashvars="<param name=\"flashvars\" value=\"image=$stem.jpg&amp;file=$stem.mp4\" />"
  372. __oggfile=${ogg:+open format <a href=\"$stem.ogv\">Ogg</a>}
  373. __webmfile=${webm:+open format <a href=\"$stem.webm\">WebM (VP8)</a>}
  374. __vp9file=${vp9:+open format <a href=\"${stem}_vp9.webm\">WebM (VP9/Opus)</a>}
  375. __mp4file=${mp4:+closed format <a href=\"$stem.mp4\">MPEG-4</a>}
  376. cat >"$stem.html" <<EOF
  377. <!-- Video for Everybody, Kroc Camen of Camen Design -->
  378. <video$__width$__height preload controls>
  379. ${mp4:+$_source_mp4
  380. }${vp9:+$_source_vp9
  381. }${webm:+$_source_webm
  382. }${ogg:+$_source_ogg
  383. }${flash:+$_object_flash
  384. $_param_name
  385. $_param_flashvars
  386. }<img src="$stem.jpg"$__width$__height alt="$title"
  387. title="No video playback capabilities, please download the video below" />
  388. ${flash:+</object>
  389. }</video>
  390. <p><strong>Download Video:</strong><ul>
  391. ${vp9:+<li>$__vp9file
  392. }${webm:+<li>$__webmfile
  393. }${ogg:+<li>$__oggfile
  394. }${mp4:+<li>$__mp4file
  395. }</ul></p>
  396. EOF