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