summaryrefslogtreecommitdiff
path: root/localvideowebencode
blob: acbcca55d7aa413026be7f3e13e88122b3ebb6f6 (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. # Recommends: moreutils vpx-tools vorbis-tools opus-tools
  20. #
  21. # TODO:
  22. # * Offer to skip rendering again if an output file exist already.
  23. # * Support --width and --height, resolving the other part from input
  24. # or forced aspect ratio.
  25. # * Drop $melt_recent flag when melt 0.9.2 is stable.
  26. # * Check and fail if all needed tools are not available.
  27. # * Test if beneficial to apply real_time=-2.
  28. # * Normalize each infile separately when xml fed as infile keeps sync.
  29. # Maybe as workaround re-feed audio separately from xml, as done at
  30. # <http://bernaerts.dyndns.org/linux/74-ubuntu/214-ubuntu-stabilize-video-melt>.
  31. # * Resolve flash player to use.
  32. # * Make choice of encoders configurable.
  33. # * Figure out how to apply application option when using opusenc.
  34. set -e
  35. PRG=$(basename "$0")
  36. showhelp() {
  37. cat <<EOF
  38. Usage: $PRG [OPTION...] [--] [ARG=VALUE...] INPUTFILE... [ARG=VALUE...]
  39. Encode video file in multiple web-optimized formats, and provide sample
  40. html favoring open formats with optional non-JavaScript Flash fallback.
  41. --video Video style:
  42. ref-bpp
  43. talkinghead 0.1
  44. action 0.15
  45. (default: none)
  46. -p, --profile Video frame size and optional rate, delimited by @
  47. except "p" labels: e.g. 848x480@25 480p25 wvga@25
  48. -s, --size Set video frame size:
  49. [modulus 16]
  50. 320x240 qvga
  51. 640x480 vga 480p 848x480 wvga
  52. 576p 1024x576 wsvga
  53. 1024x768 xga hd 720p 1280x720 wxga
  54. [modulus 8]
  55. 240p 424x240 wqvga
  56. 480x360 hvga nhd 360p 640x360
  57. 800x600 svga
  58. (default: use input size)
  59. -a, --aspect Display Aspect Ratio in melt format: e.g. @16/9
  60. (default: no aspect hinting)
  61. -r, --rate Video framerate: e.g. 25 1001/30000
  62. (default: use input framerate)
  63. --refbpp Bitrate reference: Bits-per-pixel for 360p30 H.264
  64. (default: 0.12)
  65. --formats Containers and codecs to use, comma-separated:
  66. [container] [video codec] [audio codec]
  67. theora ogg Ogg Theora Vorbis
  68. vp8 webm WebM VP8 Vorbis
  69. vp9 WebM VP9 Opus
  70. h264 mp4 MPEG-4 H.264 AAC
  71. (default: webm,vp9,mp4)
  72. --audio Audio style:
  73. [channels] [limit] [Vorbis] [Opus] [AAC]
  74. music max 2 64k 64k audio 96k
  75. hqspeech 1 48k 32k voip 64k
  76. speech 1 X 48k 32k voip 64k
  77. silence 0
  78. (default: none - use channel count of first input)
  79. --audioprefilter Add audio filter before loudness
  80. --loudness Add EBU R128 loudness filter
  81. --loudness-data Add loudness filter, with precomputed results
  82. (default: none - compute results on-the-fly)
  83. --filter Add filter
  84. --stem Stem of output filenames, optionally with path
  85. (default: basename of first input)
  86. -t, --title Title used in html fallback graphics
  87. (default: stem)
  88. --sample Create only a 150 frames long sample
  89. --sample-start Create sample, starting at a specific frame
  90. (default: start at first frame)
  91. --sample-length Create sample of specified length, in frames
  92. (default: 150 frames i.e. approx. 5s)
  93. --compression Optimize for quality or speed: normal dirty hq
  94. (default: normal)
  95. -h, --help This help text
  96. Examples:
  97. $PRG -s qvga -t "Funny guy" intro.dv myvideo.dv
  98. $PRG -p 480p15 --filter "grain noise=20" myvideo.dv
  99. Recommendations for best results:
  100. * Use square pixels, modulus 16, max. 480 width (qvga vga 480p 720p).
  101. * Try lower --ref-bpp while visually acceptable, or raise to max. 0.2.
  102. * Expand and compress noisy speech with ladspa.1075 and ladspa.1916.
  103. More info:
  104. <http://camendesign.com/code/video_for_everybody>
  105. <http://www.streaminglearningcenter.com/articles/configuring-your-streaming-video-(for-newbies).html>
  106. <http://en.wikipedia.org/wiki/HTML5_video>
  107. <http://www.penguinproducer.com/2012/01/ladspa-noise-removal/>
  108. <http://theproaudiofiles.com/mixing-vocals-dynamics-compression-limiting>
  109. <http://www.internetmarketingnotes.com/2010/07/free-embeddable-flash-video-flv-players-for-commercial-use/>
  110. EOF
  111. }
  112. exit1() {
  113. response="${1:+Error: }${1:-Internal error!}"
  114. echo >&2 "$response"
  115. exit 1
  116. }
  117. # defaults
  118. formats=webm,vp9,mp4
  119. samplestart=0
  120. samplelength=150
  121. compression=normal
  122. # VP8 is rumored to compress ~20% worse than H.264
  123. factor_vp8=120/100
  124. # VP9 compresses natural video ~27% worse than H.264 (i.e. excluding animation)
  125. # <http://infoscience.epfl.ch/record/200925/files/article-vp9-submited-v2.pdf>
  126. factor_vp9=127/100
  127. # Mimic ReplayGain level when loudness is enabled (EBU R128: -23LUFS)
  128. # <https://auphonic.com/blog/2013/01/07/loudness-targets-mobile-audio-podcasts-radio-tv/>
  129. lufs=-18
  130. # parse cmdline options
  131. TEMP="`getopt -s sh -o hp:s:a:r:b:t: -l help,profile:,size:,aspect:,rate:,video:,refbpp:,formats:,audio:,audioprefilter:,loudness,loudness-data:,filter:,stem:,title:,sample,sample-start:,sample-length:,compression: -n "$PRG" -- "$@"`" || exit1 "Internal getopt error."
  132. eval set -- "$TEMP"
  133. while true ; do
  134. case "$1" in
  135. -h|--help) showhelp; exit;;
  136. -p|--profile) profile="$2"; shift 2;;
  137. -s|--size) size="$2"; shift 2;;
  138. -a|--aspect) aspect="$2"; shift 2;;
  139. -r|--rate) framerate="$2"; shift 2;;
  140. --video) video="$2"; shift 2;;
  141. --refbpp) refbpp="$2"; shift 2;;
  142. --formats) formats="$2"; shift 2;;
  143. --audio) audio="$2"; shift 2;;
  144. --audioprefilter) audioprefilters="${audioprefilters:+$audioprefilters }-filter $2"; shift 2;;
  145. --loudness) loudness=yes; shift;;
  146. --loudness-data) loudness=yes; loudness_data="$2"; shift 2;;
  147. --filter) filters="${filters:+$filters }-filter $2"; shift 2;;
  148. --stem) stem="$2"; shift 2;;
  149. -t|--title) title="$2"; shift 2;;
  150. --sample) sample=yes; shift;;
  151. --sample-start) sample=yes; samplestart="$2"; shift 2;;
  152. --sample-length) sample=yes; samplelength="$2"; shift 2;;
  153. --compression) compression="$2"; shift 2;;
  154. --) shift; break;;
  155. *) exit1 "Internal error resolving options.";;
  156. esac
  157. done
  158. # Resolve if system has many CPU cores
  159. processors=$(nproc)
  160. [ $processors -gt 2 ] || processors=
  161. # Resolve if melt is version 0.9.2 or newer
  162. melt_recent=$(melt -query filter=loudness | grep -qi R128 && echo yes)
  163. # sanitize infiles
  164. infiles=$*
  165. infile_first=$(perl -e 'print shift @ARGV' $infiles)
  166. [ -e "$infile_first" ] || exit1 "Cannot read first input file \"$infile_first\"!"
  167. # resolve stem and title (if not explicitly set)
  168. stem=${stem:-$(basename "$infile_first" | perl -pe 's/\.[^.]*//')}
  169. title=${title:-$stem}
  170. # Use vpxenc for VP8 and VP9: CRF is apparently broken with libav
  171. #use_avconv_vp8=yes
  172. #use_avconv_vp9=yes
  173. use_vpxenc=yes
  174. #use_oggenc=yes
  175. #use_opusenc=yes
  176. # resolve quality/speed hints
  177. multipass=yes
  178. qscale_theora=5
  179. crf_vp8=30
  180. cpu_vp8=2
  181. crf_vp9=30
  182. cpu_vp9=5
  183. crf_h264=23
  184. speedpreset_h264=medium
  185. case "$compression" in
  186. normal) :;;
  187. dirty)
  188. qscale_theora=1
  189. crf_vp8=63
  190. cpu_vp8=5
  191. crf_vp9=63
  192. crf_h264=51
  193. ;;
  194. hq)
  195. qscale_theora=6
  196. cpu_vp8=0
  197. cpu_vp9=0
  198. speedpreset_h264=veryslow
  199. ;;
  200. *) exit1 "Unknown compression mode \"$compression\".";;
  201. esac
  202. [ -n "$multipass" ] || singlepass=yes
  203. # parse/resolve size and framerate
  204. case "$profile" in
  205. '') :;;
  206. *@*)
  207. while read s r foo; do
  208. profilesize="${size:-$s}"
  209. framerate="${framerate:-$r}"
  210. done << EOF
  211. $(echo "$profile" | perl -F@ -anE 'say join " ", @F')
  212. EOF
  213. ;;
  214. *p*)
  215. while read s r foo; do
  216. profilesize="${size:-${s}p}"
  217. framerate="${framerate:-$r}"
  218. done << EOF
  219. $(echo "$profile" | perl -Fp -anE 'say join " ", @F')
  220. EOF
  221. ;;
  222. *)
  223. profilesize="$profile"
  224. ;;
  225. esac
  226. size=${size:-$profilesize}
  227. case "$size" in
  228. qvga) size=320x240;;
  229. hvga) size=480x360;;
  230. vga) size=640x480;;
  231. svga) size=800x600;;
  232. xga) size=1024x768;;
  233. 240p|wqvga) size=424x240;;
  234. 360p|nhd) size=640x360;;
  235. 480p|wvga) size=848x480;;
  236. 576p|wsvga) size=1024x576;;
  237. 720p|wxga|hd) size=1280x720;;
  238. esac
  239. if [ -n "$size" ]; then
  240. while read w h foo; do
  241. width="${width:-$w}"
  242. height="${height:-$h}"
  243. done << EOF
  244. $(echo "$size" | perl -Fx -anE 'say join " ", @F')
  245. EOF
  246. if [ -z "$width" ] || [ -z "$height" ]; then
  247. exit1 "Failed to parse size \"$size\"."
  248. fi
  249. fi
  250. case "$framerate" in
  251. */*)
  252. while read n d foo; do
  253. framerate_num="${framerate_num:-$n}"
  254. framerate_den="${framerate_den:-$d}"
  255. done << EOF
  256. $(echo "$framerate" | perl -F/ -anE 'say join " ", @F')
  257. EOF
  258. ;;
  259. ?*)
  260. framerate_num="$framerate"
  261. framerate_den=1
  262. ;;
  263. esac
  264. # resolve input size and framerate (needed for computing bitrate)
  265. while read w h r s foo; do
  266. width_in="${width_in:-$w}"
  267. height_in="${height_in:-$h}"
  268. framerate_in="${framerate_in:-$r}"
  269. scantype_in="${scantype_in:-$s}"
  270. done << EOF
  271. $(mediainfo --Inform="Video;%Width% %Height% %FrameRate% %ScanType%" \
  272. "$infile_first")
  273. EOF
  274. [ Progressive = "$scantype_in" ] || do_deinterlace=yes
  275. case "$video" in
  276. talkinghead)
  277. refbpp="${refbpp:-0.1}"
  278. x264tune=film
  279. ;;
  280. action)
  281. refbpp="${refbpp:-0.15}"
  282. x264tune=film
  283. ;;
  284. '')
  285. refbpp="${refbpp:-0.12}"
  286. ;;
  287. *) exit1 "Unknown video style \"$video\".";;
  288. esac
  289. for format in $(echo "$formats" | sed -e 's/,/ /g'); do
  290. case $format in
  291. theora|ogg) ogg=yes;;
  292. h264|mp4) mp4=yes;;
  293. vp8|webm) webm=yes;;
  294. vp9) vp9=yes;;
  295. *) exit1 "Unknown format \"$format\".";;
  296. esac
  297. done
  298. _width="${width:-$width_in}"
  299. _height="${height:-$height_in}"
  300. if [ -n "$_width" ] && [ -n "$_height" ]; then
  301. _pixels="$(($_width*$_height))"
  302. fi
  303. _frames="${framerate:-$framerate_in}"
  304. sizepreset_vpx=libvpx-360p
  305. webm_qmin=0
  306. webm_qmax=63
  307. webm_lag=16
  308. webm_tokenparts_log2=0
  309. if [ -n "$_pixels" ] && [ $_pixels -ge $((1024*768)) ]; then
  310. sizepreset_vpx=libvpx-720p
  311. webm_qmin=11
  312. web_qmax=51
  313. webm_tokenparts_log2=2
  314. if [ -n "$_frames" ] && [ $_frames -gt 40 ]; then
  315. sizepreset_vpx=libvpx-720p50_60
  316. webm_lag=25
  317. fi
  318. fi
  319. # compute average bitrate from reference data and "power of .75" rule
  320. bitrate_vp8="$bitrate"
  321. bitrate_vp9="$bitrate"
  322. if [ -n "$_pixels" ] && [ -n "$_frames" ]; then
  323. bitrate=$(perl -E '$refsize=640*360;' \
  324. -E "say int( +(($_pixels/\$refsize)**0.75*\$refsize*$_frames*$refbpp) )")
  325. bitrate_vp8=$(perl -E "say int( +($bitrate*$factor_vp8) )") #"
  326. bitrate_vp9=$(perl -E "say int( +($bitrate*$factor_vp9) )") #"
  327. fi
  328. # default per-codec-channel bitrates
  329. quality_vorbis=3
  330. bitrate_opus=48
  331. bitrate_aac=64
  332. case "$audio" in
  333. music)
  334. opusapp=audio
  335. ;;
  336. hqspeech)
  337. stereo=yes
  338. quality_vorbis=1
  339. bitrate_opus=32
  340. opusapp=voip
  341. ;;
  342. speech)
  343. mono=yes
  344. quality_vorbis=1
  345. bitrate_opus=32
  346. compress=yes
  347. [ -z "$melt_recent" ] || _melt_loudness="$loudness_data"
  348. limit=yes
  349. opusapp=voip
  350. ;;
  351. silence)
  352. silence=yes
  353. ;;
  354. '')
  355. :
  356. ;;
  357. *) exit1 "Unknown audio style \"$audio\".";;
  358. esac
  359. channels=$(avprobe -v warning -show_streams "$infile_first" \
  360. | perl -ne 's/channels=// and print $_' || echo -1)
  361. # adapt channel count and flags to reflect actual downmix/silence need
  362. if [ -n "$stereo" ]; then
  363. if [ $channels -gt 2 ]; then
  364. channels=2
  365. else
  366. stereo=
  367. fi
  368. elif [ -n "$mono" ]; then
  369. if [ $channels -gt 1 ]; then
  370. channels=1
  371. else
  372. mono=
  373. fi
  374. elif [ -n "$silence" ]; then
  375. if [ $channels -gt 0 ]; then
  376. channels=0
  377. else
  378. silence=
  379. fi
  380. fi
  381. [ -z "$silence" ] || channels=
  382. if [ -n "$stereo$mono" ]; then
  383. # melt cannot downmix with (stereo?) filters applied (bug#763911)
  384. if [ -n "$audioprefilters$compress$loudness$limit$filters" ]; then
  385. if [ -z "${webm:+$use_oggenc}${webm_vp9:+$use_opusenc}" ]; then
  386. downmix_avconv=yes
  387. else
  388. downmix_oggenc=yes
  389. downmix_oggenc=yes
  390. fi
  391. else
  392. downmix_melt=yes
  393. fi
  394. fi
  395. # generic options
  396. melt="melt -progress"
  397. avconv="avconv -threads auto -y -v info -stats"
  398. avconv_chained="avconv -threads auto -y -v warning"
  399. vpxenc_chained="vpxenc --quiet ${processors:+-t $((processors-1))}"
  400. oggenc="oggenc"
  401. opusenc="opusenc"
  402. _melt_sample="$infile_first ${sample:+in=$((samplestart)) out=$((samplestart + samplelength))}"
  403. # filter options
  404. _melt_video="progressive=1${framerate:+ frame_rate_num="$framerate_num" frame_rate_den="$framerate_den"}${size:+ s=${width:+$width}x${height:+$height}}${aspect:+ aspect=$aspect}"
  405. _avconv_video="${do_deinterlace:+-filter:v yadif}${framerate:+ -r $framerate_num/$framerate_den}${size:+ -s ${width:+$width}x${height:+$height}}${aspect:+ -aspect $aspect}"
  406. _melt_downmix="${downmix_melt:+ac=$channels}"
  407. _avconv_downmix="${downmix_avconv:+-ac $channels}"
  408. # FIXME: how to downmix to stereo?
  409. _oggenc_downmix="${downmix_oggenc:+${mono:+--downmix}}"
  410. _opusenc_downmix="${downmix_opusenc:+${stereo:+--downmix-stereo}${mono:+--downmix-mono}}"
  411. # limit (i.e. avoid peaks "clipping")
  412. _melt_postfilters_audio="${limit:+-filter ladspa.1077}"
  413. # codec options
  414. _melt_theora="vcodec=libtheora${bitrate:+ vb=$bitrate} qscale=$qscale_theora"
  415. _melt_vp8="vcodec=libvpx vpreset=$sizepreset_vpx${bitrate_vp8:+ vb=$bitrate_vp8 minrate=$((bitrate_vp8/20)) maxrate=$((bitrate_vp8*12))} crf=$crf_vp8 cpu-used=$cpu_vp8"
  416. _avconv_vp8="-c:v libvpx -pre:v $sizepreset_vpx${bitrate_vp8:+ -b:v $bitrate_vp8 -minrate $((bitrate_vp8/20)) -maxrate $((bitrate_vp8*12))} -crf $crf_vp8 -cpu-used $cpu_vp8"
  417. _vpxenc_vpx="--min-q=$webm_qmin --max-q=$webm_qmax${multipass:+ --minsection-pct=5 --maxsection-pct=1200} --kf-max-dist=120 --auto-alt-ref=1 --lag-in-frames=$webm_lag --arnr-maxframes=7 --arnr-strength=5 --arnr-type=3"
  418. _vpxenc_vp8="--codec=vp8${bitrate_vp8:+ --target-bitrate=$bitrate_vp8} --good --end-usage=cq --cq-level=$crf_vp8 --cpu-used=$cpu_vp8 $_vpxenc_vpx --token-parts=$webm_tokenparts_log2"
  419. _melt_vp9="vcodec=libvpx-vp9 vpreset=$sizepreset_vpx${bitrate_vp9:+ vb=$bitrate_vp9 minrate=$((bitrate_vp9/20)) maxrate=$((bitrate_vp9*12))} crf=$crf_vp9 cpu-used=$cpu_vp9"
  420. _avconv_vp9="-c:v libvpx-vp9 -pre:v $sizepreset_vpx${bitrate_vp9:+ -b:v $bitrate_vp9 -minrate $((bitrate_vp9/20)) -maxrate $((bitrate_vp9*12))} -crf $crf_vp9 -cpu-used $cpu_vp9"
  421. _vpxenc_vp9="--codec=vp9${bitrate_vp9:+ --target-bitrate=$bitrate_vp9} --good --end-usage=cq --cq-level=$crf_vp9 --cpu-used=$cpu_vp9 $_vpxenc_vpx --tile-columns=$webm_tokenparts_log2 --tile-rows=$webm_tokenparts_log2"
  422. _melt_h264="vcodec=libx264 vpreset=$speedpreset_h264 vprofile=baseline${x264tune:+ tune=$x264tune} threads=0 movflags=+faststart crf=$crf_h264"
  423. _melt_vorbis="$_melt_downmix acodec=libvorbis aq=$quality_vorbis"
  424. _avconv_vorbis="$_avconv_downmix -c:a libvorbis -aq $quality_vorbis"
  425. _oggenc_vorbis="$_oggenc_downmix -q $quality_vorbis"
  426. _melt_opus="$_melt_downmix acodec=libopus ab=$(($channels*$bitrate_opus))k${opusapp:+ application=$opusapp}"
  427. _avconv_opus="$_avconv_downmix -c:a libopus -b:a $(($channels*$bitrate_opus))k${opusapp:+ -application $opusapp}"
  428. _opusenc_opus="$_opusenc_downmix --bitrate $((channels*bitrate_opus))"
  429. _melt_aac="$_melt_downmix acodec=aac ab=$(($channels*$bitrate_aac))k"
  430. # container options
  431. _melt_yuv4mpeg2="f=yuv4mpegpipe $_melt_video pix_fmt=yuv420p an=1 audio_off=1"
  432. _avconv_yuv4mpeg2_in="-f yuv4mpegpipe"
  433. _avconv_rawvideo="-f rawvideo"
  434. _melt_wav="f=wav $_melt_downmix vn=1 video_off=1"
  435. _avconv_wav_in="-f wav"
  436. _oggenc_wav_in=
  437. _opusenc_wav_in=
  438. _melt_ogg="f=ogg $_melt_video $_melt_theora ${silence:+an=1 audio_off=1}${channels:+$_melt_vorbis}"
  439. _avconv_ogg_in="-f ogg"
  440. _avconv_ogg_vorbis="-f ogg -vn $_avconv_vorbis"
  441. _avconv_ogg_opus="-f ogg -vn $_avconv_opus"
  442. _melt_webm="f=webm $_melt_video $_melt_vp8 ${silence:+an=1 audio_off=1}${channels:+$_melt_vorbis}"
  443. _avconv_webm="-f webm $_avconv_video $_avconv_vp8 ${silence:+-an}${channels:+ $_avconv_vorbis}"
  444. _avconv_webm_in="-f webm"
  445. _avconv_webm_onlyvideo="-f webm $_avconv_video $_avconv_vp8 -an}"
  446. _avconv_webm_keepvideo="-f webm $_avconv_video -c:v copy ${silence:+-an}${channels:+$_avconv_vorbis}"
  447. _avconv_webm_keepvideo_opus="-f webm $_avconv_video -c:v copy ${silence:+-an}${channels:+$_avconv_opus}"
  448. _melt_webm_vp9="f=webm $_melt_video $_melt_vp9 ${silence:+an=1 audio_off=1}${channels:+$_melt_opus}"
  449. _avconv_webm_vp9="-f webm $_avconv_video $_avconv_vp9 ${silence:+-an}${channels:+$_avconv_opus}"
  450. _avconv_webm_onlyvideo_vp9="-f webm $_avconv_video $_avconv_vp9 -an}"
  451. _melt_mp4="f=mp4 $_melt_video $_melt_h264 ${silence:+an=1 audio_off=1}${channels:+$_melt_aac}"
  452. _melt_img="f=image2 $_melt_video"
  453. [ -n "$silence" ] || [ -z "$loudness" ] || [ -n "$_melt_loudness" ] || do_loudness=yes
  454. if [ -n "$multipass" ] && [ -n "$webm$vp9" ]; then
  455. echo "Analyzing video complexity${do_loudness:+ and audio dynamics}..."
  456. if [ -n "$use_vpxenc" ]; then
  457. $melt ${_melt_sample:-$infiles} \
  458. ${do_loudness:+$audioprefilters -filter loudness} \
  459. $filters \
  460. ${do_loudness:+-consumer xml:$stem.xml video_off=1 all=1} \
  461. -consumer avformat:pipe:1 $_melt_yuv4mpeg2 \
  462. | pee \
  463. ${webm:+"$vpxenc_chained - $_vpxenc_vp8 \
  464. -p 2 --pass=1 --fpf=${stem}_vp8.log -o /dev/null"} \
  465. ${vp9:+"$vpxenc_chained - $_vpxenc_vp9 \
  466. -p 2 --pass=1 --fpf=${stem}_vp9.log -o /dev/null"}
  467. else
  468. $melt ${_melt_sample:-$infiles} \
  469. ${do_loudness:+$audioprefilters -filter loudness} \
  470. $filters \
  471. ${do_loudness:+-consumer xml:$stem.xml video_off=1 all=1} \
  472. -consumer avformat:pipe:1 $_melt_yuv4mpeg2 \
  473. | $avconv_chained $_avconv_yuv4mpeg2_in -i pipe:0 \
  474. ${webm:+$_avconv_rawvideo $_avconv_vp8 -an \
  475. -pass 1 -passlogfile ${stem}_vp8 /dev/null} \
  476. ${vp9:+$_avconv_rawvideo $_avconv_vp9 -an \
  477. -pass 1 -passlogfile ${stem}_vp9 /dev/null}
  478. [ -z "$webm" ] || [ -n "$use_avconv_vp8" ] || mv -f ${stem}_vp8-*.log ${stem}_vp8_2pass.log
  479. [ -z "$vp9" ] || [ -n "$use_avconv_vp9" ] || mv -f ${stem}_vp9-*.log ${stem}_vp9_2pass.log
  480. fi
  481. if [ -n "$do_loudness" ]; then
  482. _melt_loudness="$(perl -n \
  483. -e 'm!<(property) name="results">([^<]+)</\1>! and print $2' \
  484. $stem.xml)"
  485. echo "Loudness data: $_melt_loudness"
  486. fi
  487. fi
  488. if [ -n "$use_oggenc$use_opusenc$use_vpxenc" ] && [ -n "$webm$vp9" ]; then
  489. echo "Encoding video${channels:+ and extracting audio...}"
  490. $melt ${_melt_sample:-$infiles} \
  491. ${channels:+$audioprefilters \
  492. ${_melt_loudness:+-filter loudness program=$lufs \
  493. results="$_melt_loudness"}} \
  494. $filters${channels:+ $_melt_postfilters_audio} \
  495. ${ogg:+-consumer avformat:$stem.ogv $_melt_ogg} \
  496. ${mp4:+-consumer avformat:$stem.mp4 $_melt_mp4} \
  497. ${channels:+-consumer avformat:$stem.wav $_melt_wav} \
  498. -consumer avformat:pipe:1 $_melt_yuv4mpeg2 \
  499. | pee \
  500. ${webm:+${use_avconv_vp8:+"$avconv_chained \
  501. $_avconv_yuv4mpeg2_in -i pipe:0 \
  502. $_avconv_webm_onlyvideo \
  503. ${multipass:+-pass 2 -passlogfile ${stem}_vp8} \
  504. ${stem}${channels:+_silent}.webm"}} \
  505. ${webm:+${use_vpxenc:+"$vpxenc_chained - $_vpxenc_vp8 \
  506. ${singlepass:+-p 1} \
  507. ${multipass:+-p 2 --pass=2 --fpf=${stem}_vp8.log} \
  508. -o ${stem}${channels:+_silent}.webm"}} \
  509. ${vp9:+${use_avconv_vp9:+"$avconv_chained \
  510. $_avconv_yuv4mpeg2_in -i pipe:0 \
  511. $_avconv_webm_onlyvideo_vp9 \
  512. ${multipass:+-pass 2 -passlogfile ${stem}_vp9} \
  513. ${stem}_vp9${channels:+_silent}.webm"}} \
  514. ${vp9:+${use_vpxenc:+"$vpxenc_chained - $_vpxenc_vp9 \
  515. ${singlepass:+-p 1} \
  516. ${multipass:+-p 2 --pass=2 --fpf=${stem}_vp9.log} \
  517. -o ${stem}_vp9${channels:+_silent}.webm"}}
  518. if [ -n "$webm" ] && [ -n "$channels" ]; then
  519. echo "Encoding Vorbis audio and muxing with VP8 video..."
  520. if [ -n "$use_oggenc" ]; then
  521. $oggenc $_oggenc_wav_in $_oggenc_vorbis -o - $stem.wav \
  522. | $avconv_chained \
  523. $_avconv_webm_in -i ${stem}_silent.webm \
  524. $_avconv_ogg_in -i pipe:0 \
  525. $_avconv_webm_keepvideo $stem.webm
  526. else
  527. $avconv $_avconv_webm_in -i ${stem}_silent.webm \
  528. $_avconv_wav_in -i $stem.wav \
  529. $_avconv_webm_keepvideo ${stem}.webm
  530. fi
  531. fi
  532. if [ -n "$vp9" ] && [ -n "$channels" ]; then
  533. echo "Encoding Opus audio and muxing with WebM/VP9 video..."
  534. if [ -n "$use_opusenc" ]; then
  535. $opusenc $_opusenc_wav_in $_opusenc_opus -o - $stem.wav \
  536. | $avconv_chained \
  537. $_avconv_webm_in -i ${stem}_vp9_silent.webm \
  538. $_avconv_ogg_in -i pipe:0 \
  539. $_avconv_webm_keepvideo_opus ${stem}_vp9.webm
  540. else
  541. $avconv $_avconv_webm_in -i ${stem}_vp9_silent.webm \
  542. $_avconv_wav_in -i $stem.wav \
  543. $_avconv_webm_keepvideo_opus ${stem}_vp9.webm
  544. fi
  545. fi
  546. elif [ -n "$use_avconv_vp8$use_avconv_vp9" ] && [ -n "$webm$vp9" ]; then
  547. echo "Encoding video..."
  548. $melt ${_melt_sample:-$infiles} \
  549. ${channels:+$audioprefilters \
  550. ${_melt_loudness:+-filter loudness program=$lufs \
  551. results="$_melt_loudness"}} \
  552. $filters${channels:+ $_melt_postfilters_audio} \
  553. ${ogg:+-consumer avformat:$stem.ogv $_melt_ogg} \
  554. ${mp4:+-consumer avformat:$stem.mp4 $_melt_mp4} \
  555. ${channels:+-consumer avformat:$stem.wav $_melt_wav} \
  556. -consumer avformat:pipe:1 $_melt_yuv4mpeg2 \
  557. | pee \
  558. ${webm:+${use_avconv_vp8:+"$avconv_chained \
  559. $_avconv_yuv4mpeg2_in -i pipe:0 \
  560. $_avconv_webm \
  561. ${multipass:+-pass 2 -passlogfile ${stem}_vp8} \
  562. ${stem}.webm"}} \
  563. ${vp9:+${use_avconv_vp9:+"$avconv_chained \
  564. $_avconv_yuv4mpeg2_in -i pipe:0 \
  565. $_avconv_webm_vp9 \
  566. ${multipass:+-pass 2 -passlogfile ${stem}_vp9} \
  567. ${stem}_vp9.webm"}}
  568. else
  569. echo "Encoding video..."
  570. $melt ${_melt_sample:-$infiles} \
  571. ${channels:+$audioprefilters \
  572. ${_melt_loudness:+-filter loudness program=$lufs \
  573. results="$_melt_loudness"}} \
  574. $filters${channels:+ $_melt_postfilters_audio} \
  575. ${ogg:+-consumer avformat:$stem.ogv $_melt_ogg} \
  576. ${webm:+-consumer avformat:$stem.webm $_melt_webm \
  577. ${multipass:+pass=2 passlogfile=${stem}_vp8}} \
  578. ${vp9:+-consumer avformat:${stem}_vp9.webm $_melt_webm_vp9 \
  579. ${multipass:+pass=2 passlogfile=${stem}_vp9}} \
  580. ${mp4:+-consumer avformat:$stem.mp4 $_melt_mp4}
  581. fi
  582. if [ -n "$mp4" ] && [ -z "$melt_recent" ]; then
  583. mv "$stem.mp4" "$stem.mp4"~
  584. qt-faststart "$stem.mp4"~ "$stem.mp4"
  585. [ -f "$stem.mp4" ] && rm "$stem.mp4"~ || mv -f "$stem.mp4"~ "$stem.mp4"
  586. fi
  587. # cleanup encoding cruft
  588. rm -f $stem.xml $stem.wav ${stem}_*.log ${stem}_*silent.webm
  589. # JPEG preview
  590. $melt $infile_first in=0 out=0 \
  591. -group $filters \
  592. -consumer avformat:$stem.jpg $_melt_img
  593. __width="${_width:+ width=\"$_width\"}"
  594. __height="${_height:+ height=\"$_height\"}"
  595. # Flash object needs extra space for controllers
  596. __heightplus=${_height:+ height=\"$(($_height+4))\"}
  597. _source_ogg="<source src=\"$stem.ogv\" type=\"video/ogg\" />"
  598. _source_webm="<source src=\"$stem.webm\" type=\"video/webm\" />"
  599. _source_vp9="<source src=\"${stem}_vp9.webm\" type='video/ogg; codecs=\"vp9, opus\"' />"
  600. _source_mp4="<source src=\"$stem.mp4\" type=\"video/mp4\" />"
  601. [ -z "$flashplayer" ] || flash=yes
  602. [ -n "$mp4" ] || [ -z "$flash" ] || error1 "Cannot enable flash when mp4 format is disabled."
  603. _object_flash="<object$__width$__heightplus type=\"application/x-shockwave-flash\" data=\"$flashplayer.swf\">"
  604. _param_name="<param name=\"movie\" value=\"$flashplayer.swf\" />"
  605. _param_flashvars="<param name=\"flashvars\" value=\"image=$stem.jpg&amp;file=$stem.mp4\" />"
  606. __oggfile=${ogg:+open format <a href=\"$stem.ogv\">Ogg</a>}
  607. __webmfile=${webm:+open format <a href=\"$stem.webm\">WebM (VP8)</a>}
  608. __vp9file=${vp9:+open format <a href=\"${stem}_vp9.webm\">WebM (VP9/Opus)</a>}
  609. __mp4file=${mp4:+closed format <a href=\"$stem.mp4\">MPEG-4</a>}
  610. cat >"$stem.html" <<EOF
  611. <!-- Video for Everybody, Kroc Camen of Camen Design -->
  612. <video$__width$__height preload controls>
  613. ${mp4:+$_source_mp4
  614. }${vp9:+$_source_vp9
  615. }${webm:+$_source_webm
  616. }${ogg:+$_source_ogg
  617. }${flash:+$_object_flash
  618. $_param_name
  619. $_param_flashvars
  620. }<img src="$stem.jpg"$__width$__height alt="$title"
  621. title="No video playback capabilities, please download the video below" />
  622. ${flash:+</object>
  623. }</video>
  624. <p><strong>Download Video:</strong><ul>
  625. ${vp9:+<li>$__vp9file
  626. }${webm:+<li>$__webmfile
  627. }${ogg:+<li>$__oggfile
  628. }${mp4:+<li>$__mp4file
  629. }</ul></p>
  630. EOF