summaryrefslogtreecommitdiff
path: root/localvideowebencode
blob: c3b96d61e586925cc343a1d14565385c52d0f18d (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 vainfo vpx-tools vorbis-tools opus-tools
  20. #
  21. # TODO:
  22. # * improve workflow
  23. # + check initially and fail if all needed tools are not available
  24. # + offer to skip rendering again if an output file exist already
  25. # + maybe support extracting keyframes to aid in picking cover image
  26. # <https://video.stackexchange.com/questions/26066/dump-keyframes-of-a-livestream>
  27. # <https://video.stackexchange.com/questions/21970/speed-up-a-video-30x-using-only-key-frames-with-ffmpeg>
  28. # + offer to produce a full ladder at once
  29. # <https://developers.google.com/media/vp9/settings/vod>
  30. # <https://developer.apple.com/documentation/http_live_streaming/hls_authoring_specification_for_apple_devices>
  31. # * improve configurability
  32. # + support --width and --height,
  33. # resolving other dimension from (explicit or source) aspect ratio
  34. # + make choice of encoders configurable
  35. # + warn if inferior containers are used, e.g. non-WebM for VP8/VP9
  36. # <https://trac.ffmpeg.org/ticket/1171#comment:2>
  37. # * tune defaults
  38. # + adapt VP8/VP9 quantizer based on frame size
  39. # <https://developers.google.com/media/vp9/settings/vod#quality>
  40. # + maybe pass option real_time=-2 to melt
  41. # <https://www.reddit.com/r/kdenlive/comments/ka0aak/kdenlive_gpucpu_use_threads_mlt_and_ffmpeg_tips/>
  42. # + maybe reduce threads to "spend" total available cores only once
  43. # <https://blog.maxwellgale.com/2021/01/30/streaming-video-over-webrtc-using-ffmpeg/>
  44. # + apply application option when using opusenc
  45. # + use joint stereo for low-bitrate Opus speech
  46. # + maybe refine audio bandwidth algorithms
  47. # <http://trac.ffmpeg.org/wiki/Encode/HighQualityAudio>
  48. # + change VP8/VP9 bandwidth algorithm
  49. # <https://developers.google.com/media/vp9/settings/vod/>
  50. # + tune VP8 parameters:
  51. # <http://www.webmproject.org/docs/encoder-parameters/
  52. # + tune VP9 parameters
  53. # <https://sites.google.com/a/webmproject.org/wiki/ffmpeg/vp9-encoding-guide>
  54. # + maybe use High profile for H.264
  55. # <https://stackoverflow.com/questions/21120717/h-264-video-wont-play-on-ios#comment43963026_21121914>
  56. # + compute (or hardcode) html5 codec types, e.g. using mp4v2-utils
  57. # <http://stackoverflow.com/a/16365526>
  58. # + generalize GOP handling to use "Closed GOPs",
  59. # with default "normal" option of 200f@25fps or 240f@30fps (both 8s)
  60. # and "low-latency" option of 48f (1.92s at 25fps or 1.6s at 30fps)
  61. # <https://streaminglearningcenter.com/articles/open-and-closed-gops-all-you-need-to-know.html>
  62. # <https://stackoverflow.com/questions/30979714/how-to-change-keyframe-interval-in-ffmpeg/41735741#41735741>
  63. # <http://anton.lindstrom.io/gop-size-calculator/>
  64. # <https://docs.unified-streaming.com/best-practice/content-preparation.html#recommended-fragment-boundaries-are-aligned-across-all-tracks-audio-video-text>
  65. # * players
  66. # + disable flash player by default
  67. # + support HLS player, when HLS is supported
  68. # <https://github.com/video-dev/hls.js>
  69. # * normalize each infile separately when xml fed as infile keeps sync
  70. # maybe as workaround re-feed audio separately from xml, as done at
  71. # <http://bernaerts.dyndns.org/linux/74-ubuntu/214-ubuntu-stabilize-video-melt>
  72. # * support DASH
  73. # <https://sites.google.com/a/webmproject.org/wiki/adaptive-streaming/instructions-to-playback-adaptive-webm-using-dash>
  74. # * support watermark
  75. # * support superstable live streaming, e.g. (maybe faked) endless source
  76. # + lipsync may require single stream of equally chunked tracks
  77. # <https://sites.google.com/a/webmproject.org/wiki/adaptive-streaming/instructions-to-do-webm-live-streaming-via-dash>
  78. # * support adaptive streaming
  79. # + compute ladder from mathematical model
  80. # as in "Optimal design of encoding profiles for ABR streaming"
  81. # <http://www.reznik.org/publications.html>
  82. # * support low-latency streaming a.k.a. "LL", i.e. 3-5s latency
  83. # + LL-HLS
  84. # <https://stackoverflow.com/questions/56700705/how-to-enable-lhls-in-ffmpeg-4-1>
  85. # + CMAF, using either fmpeg or (when released) GPAC
  86. # <https://github.com/FFmpeg/FFmpeg/commit/cc929ce>
  87. # <https://github.com/gpac/gpac/commit/4529c60>
  88. # * support realtime streaming a.k.a. "ULL", i.e. less than 0.5s latency
  89. # <https://blog.maxwellgale.com/2021/01/30/streaming-video-over-webrtc-using-ffmpeg/>
  90. set -e
  91. PRG=$(basename "$0")
  92. showhelp() {
  93. cat <<EOF
  94. Usage: $PRG [OPTION...] [--] [ARG=VALUE...] INPUTFILE... [ARG=VALUE...]
  95. Encode video file in multiple web-optimized formats, and provide sample
  96. html favoring open formats with optional non-JavaScript Flash fallback.
  97. --video Video style:
  98. [refbpp]
  99. talkinghead 0.1
  100. action 0.15
  101. (default: none)
  102. -p, --profile Video frame size and optional rate, delimited by @
  103. except "p" labels: e.g. 848x480@25 480p25 wvga@25
  104. -s, --size Set video frame size:
  105. [modulus 16]
  106. 320x240 qvga
  107. 640x480 vga 480p 848x480 wvga
  108. 576p 1024x576 wsvga
  109. 1024x768 xga hd 720p 1280x720 wxga
  110. [modulus 8]
  111. 240p 424x240 wqvga
  112. 480x360 hvga nhd 360p 640x360
  113. 800x600 svga
  114. (default: use input size)
  115. -a, --aspect Display Aspect Ratio in melt format: e.g. @16/9
  116. (default: no aspect hinting)
  117. -r, --rate Video framerate: e.g. 25 1001/30000
  118. (default: use input framerate)
  119. --refbpp Bitrate reference: Bits-per-pixel for 360p30 H.264
  120. (default: 0.12)
  121. --formats Container and media formats to use, comma-separated:
  122. [container] [video] [audio]
  123. theora ogg Ogg Theora Vorbis
  124. vp8 webm WebM VP8 Vorbis
  125. vp9 WebM VP9 Opus
  126. avc h264 mp4 MPEG-4 H.264/AVC AAC-LC
  127. (default: vp8,vp9,avc)
  128. --audio Audio style:
  129. [channels] [bitrate per channel]
  130. music max. 2 ~48-64k
  131. speech 1 ~32-64k
  132. silence 0
  133. (default: channel count of first input, ~48-64k)
  134. --audioprefilter Add audio filter before loudness
  135. --loudness Add EBU R128 loudness filter
  136. --loudness-data Add loudness filter, with precomputed results
  137. (default: none - compute results on-the-fly)
  138. --filter Add filter
  139. --stem Stem of output filenames, optionally with path
  140. (default: basename of first input)
  141. -t, --title Title used in html fallback graphics
  142. (default: stem)
  143. --still-frame Frame used as still picture
  144. (default: 0)
  145. --sample Create only a 150 frames long sample
  146. --sample-start Create sample, starting at a specific frame
  147. (default: start at first frame)
  148. --sample-length Create sample of specified length, in frames
  149. (default: 150 frames i.e. approx. 5s)
  150. --compression Prioritize quality, size or render time:
  151. [quality] [bitrate] [speed] [method]
  152. dirty fast CQ
  153. normal medium average medium CQ
  154. hq high exact slow 2xCQ¹
  155. exact medium exact slow 2xCQ¹
  156. quality medium vary medium Q²
  157. ¹ theora uses CBR, avc uses 1-pass
  158. ² vp8 uses "soft-CQ" (CQ with very high bitrate)
  159. (default: normal)
  160. --quality Quality rate factor: auto [integer] none
  161. suggested, avc: 19 23 27 31 35 39
  162. suggested, vp8/vp9: 27 33 39 45 51 57
  163. (default: auto - 23 for avc, 33 for vp8/vp9)
  164. --gpu Use hardware acceleration: none auto vaapi qsv
  165. (default: auto when compression=dirty, else none)
  166. --gpudevice Device used for hardware acceleration
  167. (default: /dev/dri/renderD128)
  168. -h, --help This help text
  169. Examples:
  170. $PRG -s qvga -t "Funny guy" intro.dv myvideo.dv
  171. $PRG -p 480p15 --filter "grain noise=20" myvideo.dv
  172. Recommendations for best results:
  173. * Use square pixels, modulus 16, max. 480 width (qvga vga 480p 720p).
  174. * Try lower --refbpp while visually acceptable, or raise to max. 0.2.
  175. * Expand and compress noisy speech with ladspa.1075 and ladspa.1916.
  176. More info:
  177. <http://camendesign.com/code/video_for_everybody>
  178. <http://www.streaminglearningcenter.com/articles/configuring-your-streaming-video-(for-newbies).html>
  179. <http://en.wikipedia.org/wiki/HTML5_video>
  180. <https://web.archive.org/web/20121101044854/http://www.penguinproducer.com/2012/01/ladspa-noise-removal/>
  181. <http://theproaudiofiles.com/mixing-vocals-dynamics-compression-limiting>
  182. <http://www.internetmarketingnotes.com/2010/07/free-embeddable-flash-video-flv-players-for-commercial-use/>
  183. EOF
  184. }
  185. exit1() {
  186. response="${1:+Error: }${1:-Internal error!}"
  187. echo >&2 "$response"
  188. exit 1
  189. }
  190. # defaults
  191. formats=vp8,vp9,avc
  192. stillframe=0
  193. samplestart=0
  194. samplelength=150
  195. compression=normal
  196. # establish/verify rendering settings for reference codec
  197. #
  198. # 1) pick reference frame:encoding format: 360p30:h.264
  199. # 2) pick reference codec (incl. normal settings)
  200. # 3) render reference frame format with --compression=quality
  201. # * check that bpp is near "refbpp" of 0.12
  202. # (otherwise adapt settings or do research and update refbpp)
  203. # 4) render misc. frame formats (esp. modulus 16) with --compression=quality
  204. # * check that bpp derives from refbpp by "rule of .75"
  205. # (otherwise adapt settings and/or do research and update rule)
  206. # 5) render misc. frame formats with --compression=normal
  207. # * check that bpp derives from refbpp by "rule of .75"
  208. # 6) optionally pick dirty/hq settings
  209. # * check that --compression=quality has filesize similar as normal
  210. # establish/verify rendering settings for non-reference codec
  211. #
  212. # 1) pick normal settings
  213. # 2) render reference frame format with --compression=quality
  214. # * check that this "codec-bpp" deviates reasonably from refbpp
  215. # 3) render misc. frame formats (esp. modulus 16) with --compression=quality
  216. # * check that bpp derives from codec-bpp by "rule of .75"
  217. # (otherwise adapt settings and/or extend rule)
  218. # 4) render misc. frame formats with --compression=normal
  219. # * check that bpp derives from codec-bpp by "rule of .75"
  220. # 5) optionally pick dirty/hq settings
  221. # * check that --compression=quality has similar filesize as normal
  222. # Theora seems to compress ~100% worse than H.264
  223. # (reportedly 76% worse in 2010, and libtheora has not improved since)
  224. # <http://compression.ru/video/codec_comparison/h264_2010/>
  225. factor_theora=200/100
  226. # VP8 is rumored to compress ~20% worse than H.264
  227. factor_vp8=120/100
  228. # VP9 compresses ~30% better than H.264 for practical use-cases
  229. # <https://engineering.fb.com/2018/04/10/video-engineering/av1-beats-x264-and-libvpx-vp9-in-practical-use-case/>
  230. factor_vp9=70/100
  231. # Mimic ReplayGain level when loudness is enabled (EBU R128: -23LUFS)
  232. # <https://auphonic.com/blog/2013/01/07/loudness-targets-mobile-audio-podcasts-radio-tv/>
  233. lufs=-18
  234. # parse cmdline options
  235. 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:,quality:,gpu:,gpudevice: -n "$PRG" -- "$@"`" || exit1 "Internal getopt error."
  236. eval set -- "$TEMP"
  237. while true ; do
  238. case "$1" in
  239. -h|--help) showhelp; exit;;
  240. -p|--profile) profile="$2"; shift 2;;
  241. -s|--size) size="$2"; shift 2;;
  242. -a|--aspect) aspect="$2"; shift 2;;
  243. -r|--rate) framerate="$2"; shift 2;;
  244. --video) video="$2"; shift 2;;
  245. --refbpp) refbpp="$2"; shift 2;;
  246. --formats) formats="$2"; shift 2;;
  247. --audio) audio="$2"; shift 2;;
  248. --audioprefilter) audioprefilters="${audioprefilters:+$audioprefilters }-filter $2"; shift 2;;
  249. --loudness) loudness=yes; shift;;
  250. --loudness-data) loudness=yes; loudness_data="$2"; shift 2;;
  251. --filter) filters="${filters:+$filters }-filter $2"; shift 2;;
  252. --stem) stem="$2"; shift 2;;
  253. -t|--title) title="$2"; shift 2;;
  254. --still-frame) stillframe="$2"; shift 2;;
  255. --sample) sample=yes; shift;;
  256. --sample-start) sample=yes; samplestart="$2"; shift 2;;
  257. --sample-length) sample=yes; samplelength="$2"; shift 2;;
  258. --compression) compression="$2"; shift 2;;
  259. --quality) quality="$2"; shift 2;;
  260. --gpu) gpu="$2"; shift 2;;
  261. --gpudevice) gpudevice="$2"; shift 2;;
  262. --) shift; break;;
  263. *) exit1 "Internal error resolving options.";;
  264. esac
  265. done
  266. [ -n "$sample" ] || notsample=yes
  267. # Resolve if system has many CPU cores
  268. processors=$(nproc)
  269. [ $processors -gt 2 ] || processors=
  270. # sanitize infiles
  271. infiles=$*
  272. infile_first=$(perl -e 'print shift @ARGV' $infiles)
  273. [ -e "$infile_first" ] || exit1 "Cannot read first input file \"$infile_first\"!"
  274. # resolve stem and title (if not explicitly set)
  275. stem=${stem:-$(basename "$infile_first" | perl -pe 's/\.[^.]*//')}
  276. title=${title:-$stem}
  277. #use_ffmpeg_theora=yes
  278. #use_ffmpeg_vp8=yes
  279. #use_ffmpeg_vp9=yes
  280. #use_ffmpeg_avc=yes
  281. #use_ffmpeg2theora=yes # TODO...
  282. #use_vpxenc=yes
  283. # Avoid discrete audio encoders if possible: may cause sync problems
  284. #use_oggenc=yes
  285. #use_opusenc=yes
  286. # Avoid AAC: Lame arguably better than any free AAC encoder
  287. # Argument for AAC: Safari possibly lacks mp3 support in video container
  288. #use_mp3=yes
  289. [ -n "$use_mp3" ] || use_aac=yes
  290. # Avoid MP3 VBR but seems ABR is fine: Set to CBR for strict correctnes
  291. #use_lame_cbr=yes
  292. [ -n "$use_lame_cbr" ] || use_lame_abr=yes
  293. # resolve quality/speed hints
  294. qkey_theora=q
  295. qkey_vp8=crf
  296. qkey_vp9=crf
  297. qkey_avc=crf
  298. q_theora=6
  299. q_vp8=33
  300. cpu_vp8=2
  301. q_vp9=33
  302. cpu_vp9=2
  303. q_avc=23
  304. preset_avc=medium
  305. profile_vp8=0
  306. profile_vp9=0
  307. profile_avc=main
  308. case "$compression" in
  309. normal) :;;
  310. dirty)
  311. gpu=${gpu:-auto}
  312. cpu_vp8=4
  313. cpu_vp9=4
  314. preset_avc=veryfast
  315. ;;
  316. hq)
  317. multipass=yes
  318. no_q_theora=yes
  319. no_multipass_avc=yes
  320. cpu_vp8=0
  321. cpu_vp9=1
  322. preset_avc=veryslow
  323. ;;
  324. exact)
  325. multipass=yes
  326. no_multipass_avc=yes
  327. ;;
  328. quality)
  329. no_bitrate=yes
  330. ;;
  331. *) exit1 "Unknown compression mode \"$compression\".";;
  332. esac
  333. case "$quality" in
  334. auto|'') :;;
  335. none) no_q=yes;;
  336. *) q=$quality;;
  337. esac
  338. gpudevice=${gpudevice:-/dev/dri/renderD128}
  339. if [ auto = "$gpu" ]; then
  340. vainfo=$(vainfo --display drm --device "$gpudevice" 2>/dev/null | grep -Po 'Driver version:\s*\K.*')
  341. case "$vainfo" in
  342. '') gpu=;;
  343. *)
  344. for vformat in theora vp8 vp9 avc; do
  345. eval "no_gpu_decoder_$vformat=yes"
  346. eval "no_gpu_encoder_$vformat=yes"
  347. done
  348. case $(vainfo --display drm --device "$gpudevice" 2>/dev/null | grep -Po 'VAProfile\S+\s*:\s*VAEntrypointVLD') in
  349. *VAProfileVP8Version0_3*) no_gpu_decoder_vp8=;;
  350. *VAProfileVP9Profile0*) no_gpu_decoder_vp9=;;
  351. *VAProfileH264Main*) no_gpu_decoder_avc=;;
  352. esac
  353. case $(vainfo --display drm --device "$gpudevice" 2>/dev/null | grep -Po 'VAProfile\S+\s*:\s*VAEntrypointEncSlice') in
  354. *VAProfileVP8Version0_3*) no_gpu_encoder_vp8=;;
  355. *VAProfileVP9Profile0*) no_gpu_encoder_vp9=;;
  356. *VAProfileH264Main*) no_gpu_encoder_avc=;;
  357. esac
  358. if [ -n "$no_gpu_decoder_vp8$no_gpu_decoder_vp9$no_gpu_decoder_avc" ]; then
  359. case "$vainfo" in
  360. # TODO *"Intel iHD driver"*) gpu=qsv;;
  361. *) gpu=vaapi;;
  362. esac
  363. fi
  364. esac
  365. fi
  366. case "$gpu" in
  367. none|'') gpu=;;
  368. qsv)
  369. multipass=
  370. preset_vp8=medium
  371. preset_vp9=medium
  372. preset_avc=
  373. qkey_avc=qp
  374. ;;
  375. vaapi)
  376. multipass=
  377. preset_avc=
  378. qkey_avc=qp
  379. case "$compression" in
  380. dirty)
  381. preset_avc=
  382. ;;
  383. esac
  384. ;;
  385. *) exit1 "Unknown GPU type \"$gpu\".";;
  386. esac
  387. [ -z "$gpu" ] && no_gpu=yes || eval "gpu_$gpu=yes"
  388. # parse/resolve size and framerate
  389. case "$profile" in
  390. '') :;;
  391. *@*)
  392. while read s r foo; do
  393. profilesize="${size:-$s}"
  394. framerate="${framerate:-$r}"
  395. done << EOF
  396. $(echo "$profile" | perl -F@ -anE 'say join " ", @F')
  397. EOF
  398. ;;
  399. *p*)
  400. while read s r foo; do
  401. profilesize="${size:-${s}p}"
  402. framerate="${framerate:-$r}"
  403. done << EOF
  404. $(echo "$profile" | perl -Fp -anE 'say join " ", @F')
  405. EOF
  406. ;;
  407. *)
  408. profilesize="$profile"
  409. ;;
  410. esac
  411. size=${size:-$profilesize}
  412. case "$size" in
  413. qvga) size=320x240;;
  414. hvga) size=480x360;;
  415. vga) size=640x480;;
  416. svga) size=800x600;;
  417. xga) size=1024x768;;
  418. 240p|wqvga) size=424x240;;
  419. 360p|nhd) size=640x360;;
  420. 480p|wvga) size=848x480;;
  421. 576p|wsvga) size=1024x576;;
  422. 720p|wxga|hd) size=1280x720;;
  423. esac
  424. if [ -n "$size" ]; then
  425. while read w h foo; do
  426. width="${width:-$w}"
  427. height="${height:-$h}"
  428. done << EOF
  429. $(echo "$size" | perl -Fx -anE 'say join " ", @F')
  430. EOF
  431. if [ -z "$width" ] || [ -z "$height" ]; then
  432. exit1 "Failed to parse size \"$size\"."
  433. fi
  434. fi
  435. case "$framerate" in
  436. */*)
  437. while read n d foo; do
  438. framerate_num="${framerate_num:-$n}"
  439. framerate_den="${framerate_den:-$d}"
  440. done << EOF
  441. $(echo "$framerate" | perl -F/ -anE 'say join " ", @F')
  442. EOF
  443. ;;
  444. ?*)
  445. framerate_num="$framerate"
  446. framerate_den=1
  447. ;;
  448. esac
  449. # resolve input size and framerate (needed for computing bitrate)
  450. while read w h r s foo; do
  451. width_in="${width_in:-$w}"
  452. height_in="${height_in:-$h}"
  453. framerate_in="${framerate_in:-$r}"
  454. scantype_in="${scantype_in:-$s}"
  455. done << EOF
  456. $(mediainfo --Inform="Video;%Width% %Height% %FrameRate% %ScanType%" \
  457. "$infile_first")
  458. EOF
  459. [ Progressive = "$scantype_in" ] || do_deinterlace=yes
  460. case "$video" in
  461. talkinghead)
  462. refbpp="${refbpp:-0.1}"
  463. x264tune=film
  464. ;;
  465. action)
  466. refbpp="${refbpp:-0.15}"
  467. x264tune=film
  468. ;;
  469. '')
  470. refbpp="${refbpp:-0.12}"
  471. ;;
  472. *) exit1 "Unknown video style \"$video\".";;
  473. esac
  474. for format in $(echo "$formats" | sed -e 's/,/ /g'); do
  475. case $format in
  476. theora|ogg) ogv=yes;;
  477. avc|h264|mp4) mp4=yes;;
  478. vp8|webm) webm=yes;;
  479. vp9) webm_vp9=yes;;
  480. *) exit1 "Unknown format \"$format\".";;
  481. esac
  482. done
  483. _width="${width:-$width_in}"
  484. _height="${height:-$height_in}"
  485. if [ -n "$_width" ] && [ -n "$_height" ]; then
  486. _pixels="$((_width*_height))"
  487. fi
  488. _frames="${framerate:-$framerate_in}"
  489. qmin_vp8=0
  490. qmin_vp9=0
  491. qmax_vp8=63
  492. qmax_vp9=63
  493. lag_vp8=16
  494. lag_vp9=16
  495. tokenparts_log2_vp8=0
  496. tokenparts_log2_vp9=0
  497. if [ -n "$_pixels" ] && [ $_pixels -ge $((1024*768)) ]; then
  498. qmin_vp8=11
  499. qmin_vp9=11
  500. qmax_vp8=51
  501. qmax_vp9=51
  502. tokenparts_log2_vp8=2
  503. tokenparts_log2_vp9=2
  504. if [ -n "$_frames" ] && [ $_frames -gt 40 ]; then
  505. lag_vp8=25
  506. lag_vp9=25
  507. profile_vp8=1
  508. profile_vp9=1
  509. fi
  510. fi
  511. # compute average bitrate from reference data and "power of .75" rule
  512. if [ -n "$_pixels" ] && [ -n "$_frames" ]; then
  513. bitrate_avc=$(perl -E '$refsize=640*360;' \
  514. -E "say int( +(($_pixels/\$refsize)**0.75*\$refsize*$_frames*$refbpp) )")
  515. bitrate_theora=$(perl -E "say int( +($bitrate_avc*$factor_theora) )") #"
  516. bitrate_vp8=$(perl -E "say int( +($bitrate_avc*$factor_vp8) )") #"
  517. bitrate_vp9=$(perl -E "say int( +($bitrate_avc*$factor_vp9) )") #"
  518. fi
  519. # default per-codec-channel bitrates
  520. quality_vorbis=3
  521. bitrate_opus=48
  522. quality_lame=6
  523. bitrate_lame=64
  524. bitrate_aac=64
  525. case "$audio" in
  526. music)
  527. opusapp=audio
  528. ;;
  529. speech)
  530. mono=yes
  531. quality_vorbis=2
  532. bitrate_opus=32
  533. quality_lame=7
  534. bitrate_lame=48
  535. opusapp=voip
  536. ;;
  537. silence)
  538. silence=yes
  539. ;;
  540. '')
  541. :
  542. ;;
  543. *) exit1 "Unknown audio style \"$audio\".";;
  544. esac
  545. which ffprobe > /dev/null && ffprobe=ffprobe || ffprobe=avprobe
  546. channels=$($ffprobe -v warning -show_streams "$infile_first" \
  547. | perl -ne 's/channels=// and print $_' || echo -1)
  548. # adapt channel count and flags to reflect actual downmix/silence need
  549. if [ -n "$stereo" ]; then
  550. if [ $channels -gt 2 ]; then
  551. channels=2
  552. else
  553. stereo=
  554. fi
  555. elif [ -n "$mono" ]; then
  556. if [ $channels -gt 1 ]; then
  557. channels=1
  558. else
  559. mono=
  560. fi
  561. elif [ -n "$silence" ]; then
  562. if [ $channels -gt 0 ]; then
  563. channels=0
  564. else
  565. silence=
  566. fi
  567. fi
  568. [ -z "$silence" ] || channels=
  569. if [ -n "$stereo$mono" ]; then
  570. # melt cannot downmix with (stereo?) filters applied (bug#763911)
  571. if [ -n "$audioprefilters$compress$loudness$limit$filters" ]; then
  572. if [ -z "${webm:+$use_oggenc}${webm_vp9:+$use_opusenc}" ]; then
  573. downmix_ffmpeg=yes
  574. else
  575. downmix_oggenc=yes
  576. downmix_oggenc=yes
  577. fi
  578. else
  579. downmix_melt=yes
  580. fi
  581. fi
  582. encoder_vp8=libvpx
  583. encoder_vp9=libvpx-vp9
  584. encoder_avc=libx264
  585. for vformat in theora vp8 vp9 avc; do
  586. [ -z "$no_bitrate" ] || eval "no_bitrate_$vformat=yes"
  587. eval "[ -n \"$no_bitrate\$no_bitrate_$vformat\" ] || do_bitrate_$vformat=yes"
  588. eval "[ -z \"$no_q\$no_q_$vformat\" ] || q_$vformat="
  589. [ -z "$q" ] || eval "q_$vformat=$q"
  590. eval "[ -n \"\$q_$vformat\" ] || no_q_$vformat=yes"
  591. [ -z "$gpu" ] || eval "[ -n \"\$no_gpu_encoder_$vformat\" ] || encoder_$vformat=${vformat}_$gpu"
  592. [ avc = "$vformat" ] || eval "[ -n \"$use_vpxenc\$use_ffmpeg_$vformat\" ] || use_melt_$vformat=yes"
  593. [ -z "$multipass" ] || eval "[ -n \"\$no_multipass_$vformat\" ] || multipass_$vformat=yes"
  594. eval "[ -n \"\$multipass_$vformat\" ] || singlepass_$vformat=yes"
  595. done
  596. if [ -n "$use_ffmpeg_theora$use_ffmpeg_vp8$use_ffmpeg_vp9$use_vpxenc" ]; then
  597. [ -n "$use_oggenc" ] || use_ffmpeg_vorbis=yes
  598. [ -n "$use_opusenc" ] || use_ffmpeg_opus=yes
  599. [ -z "$use_oggenc$use_opusenc" ] || use_wav=yes
  600. [ -z "$use_ffmpeg_vorbis$use_ffmpeg_opus" ] || use_matroska=yes
  601. fi
  602. if [ -n "$use_ffmpeg_avc" ]; then
  603. use_matroska=yes
  604. else
  605. use_melt_avc=yes
  606. fi
  607. use_melt_any="${ogv:+$use_melt_theora}${webm:+$use_melt_vp8}${webm_vp9:+$use_melt_vp9}${mp4:+$use_melt_avc}"
  608. use_ffmpeg_any="${ogv:+$use_ffmpeg_theora}${webm:+$use_ffmpeg_vp8}${webm_vp9:+$use_ffmpeg_vp9}${mp4:+$use_ffmpeg_avc}"
  609. use_vpxenc_any="${webm:+$use_vpxenc}${webm_vp9:+$use_vpxenc}"
  610. use_opusenc_any="${webm:+$use_oggenc}${webm_vp9:+$use_opusenc}"
  611. use_oggenc_any="${ogv:+$use_oggenc}${webm:+$use_oggenc}${webm_vp9:+$use_opusenc}"
  612. [ -z "$use_ffmpeg_any$use_vpxenc_any" ] || use_any_nomelt_video=yes
  613. [ -z "$gpu" ] || echo >&2 "GPU platform enabled: $gpu"
  614. # gpu options
  615. _melt_gpu_init=${gpu:+ ${gpu}_device=$gpudevice}
  616. _ffmpeg_gpu_vaapi_init="-${gpu}_device $gpudevice"
  617. _ffmpeg_gpu_qsv_init="-init_hw_device qsv=hw:$gpudevice -filter_hw_device hw"
  618. _ffmpeg_gpu_init="${gpu_vaapi:+ ${_ffmpeg_gpu_vaapi_init}}${gpu_qsv:+ ${_ffmpeg_gpu_qsv_init}}"
  619. _ffmpeg_gpu_vaapi_filter="-vf 'format=nv12|$gpu,hwupload'"
  620. _ffmpeg_gpu_qsv_filter="-vf 'hwupload=extra_hw_frames=64,format=qsv'"
  621. _ffmpeg_gpu_filter="${gpu_vaapi:+ ${_ffmpeg_gpu_vaapi_filter}}${gpu_qsv:+ ${_ffmpeg_gpu_qsv_filter}}"
  622. # generic options
  623. which ffmpeg > /dev/null && ffmpeg=ffmpeg || ffmpeg=avconv
  624. _melt_infiles="${notsample:+$infiles}${sample:+$infile_first in=$((samplestart)) out=$((samplestart + samplelength))}"
  625. render() {
  626. engine=$1; shift
  627. chained=
  628. echo=
  629. unchained=yes
  630. case "$engine" in
  631. ffmpeg-chained) engine=ffmpeg; chained=yes;;
  632. vpxenc-chained) engine=vpxenc; chained=yes;;
  633. ffmpeg-chained-echo) engine=ffmpeg; chained=yes; echo=yes;;
  634. vpxenc-chained-echo) engine=vpxenc; chained=yes; echo=yes;;
  635. esac
  636. [ -z "$chained" ] || unchained=
  637. case "$engine" in
  638. melt)
  639. set -- -progress$_melt_gpu_init "$@"
  640. ;;
  641. ffmpeg)
  642. engine=$ffmpeg
  643. set -- -threads auto -y -hide_banner -v ${unchained:+info -stats}${chained:+warning}$_ffmpeg_gpu_init "$@"
  644. ;;
  645. vpxenc)
  646. set -- --quiet ${processors:+-t $((processors-1))} "$@"
  647. ;;
  648. oggenc)
  649. set -- "$@"
  650. ;;
  651. opusenc)
  652. set -- "$@"
  653. ;;
  654. *) exit1 "Unknown render engine \"$engine\".";;
  655. esac
  656. ${echo:+echo }"$engine" "$@"
  657. }
  658. # filter options
  659. _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}"
  660. _ffmpeg_video="${no_gpu:+${do_deinterlace:+-filter:v yadif}${framerate:+ -r $framerate_num/$framerate_den}${size:+ -s ${width:+$width}x${height:+$height}}${aspect:+ -aspect $aspect}}"
  661. _melt_downmix="${downmix_melt:+ac=$channels}"
  662. _ffmpeg_downmix="${downmix_ffmpeg:+-ac $channels}"
  663. # FIXME: how to downmix to stereo?
  664. _oggenc_downmix="${downmix_oggenc:+${mono:+--downmix}}"
  665. _opusenc_downmix="${downmix_opusenc:+${stereo:+--downmix-stereo}${mono:+--downmix-mono}}"
  666. # limit (i.e. avoid peaks "clipping")
  667. _melt_postfilters_audio="${limit:+-filter ladspa.1077}"
  668. # format bitrate options
  669. _melt_bitrate_theora="${do_bitrate_theora:+ vb=$bitrate_theora}"
  670. _ffmpeg_bitrate_theora="${do_bitrate_theora:+ -b:v $bitrate_theora}"
  671. _melt_bitrate_vp8="${do_bitrate_vp8:+ vb=$bitrate_vp8 minrate=$((bitrate_vp8/20)) maxrate=$((bitrate_vp8*12))}"
  672. _ffmpeg_bitrate_vp8="${do_bitrate_vp8:+ -b:v $bitrate_vp8 -minrate $((bitrate_vp8/20)) -maxrate $((bitrate_vp8*12))}"
  673. _vpxenc_bitrate_vp8="${do_bitrate_vp8:+ --target-bitrate=$((bitrate_vp8/1000))${multipass_vp8:+ --minsection-pct=5 --maxsection-pct=1200}}"
  674. _melt_bitrate_vp9="${do_bitrate_vp9:+ vb=$bitrate_vp9 minrate=$((bitrate_vp9/20)) maxrate=$((bitrate_vp9*12))}"
  675. _ffmpeg_bitrate_vp9="${do_bitrate_vp9:+ -b:v $bitrate_vp9 -minrate $((bitrate_vp9/20)) -maxrate $((bitrate_vp9*12))}"
  676. _vpxenc_bitrate_vp9="${do_bitrate_vp9:+ --target-bitrate=$((bitrate_vp9/1000))${multipass_vp9:+ --minsection-pct=5 --maxsection-pct=1200}}"
  677. _melt_bitrate_avc="${do_bitrate_avc:+ maxrate=$bitrate_avc${no_gpu:+ bufsize=$((bitrate_avc*2))}}"
  678. _ffmpeg_bitrate_avc="${do_bitrate_avc:+ -maxrate $bitrate_avc${no_gpu:+ -bufsize $((bitrate_avc*2))}}"
  679. # format low-level options
  680. _melt_misc_vp8=" qmin=$qmin_vp8 qmax=$qmax_vp8 g=120 deadline=good cpu-used=$cpu_vp8${profile_vp8:+ vprofile=$profile_vp8} auto-alt-ref=1 lag-in-frames=$lag_vp8 arnr-maxframes=7 arnr-strength=5 arnr-type=centered"
  681. _ffmpeg_misc_vp8=" -qmin $qmin_vp8 -qmax $qmax_vp8 -g 120 -deadline good -cpu-used $cpu_vp8${profile_vp8:+ -profile:v $profile_vp8} -auto-alt-ref 1 -lag-in-frames $lag_vp8 -arnr-maxframes 7 -arnr-strength 5 -arnr-type centered"
  682. _vpxenc_misc_vp8=" --passes=${singlepass_vp8:+1}${multipass_vp8:+2} --min-q=$qmin_vp8 --max-q=$qmax_vp8 --kf-max-dist=120 --good --cpu-used=$cpu_vp8${profile_vp8:+ --profile=$profile_vp8} --token-parts=$tokenparts_log2_vp8 --auto-alt-ref=1 --lag-in-frames=$lag_vp8 --arnr-maxframes=7 --arnr-strength=5 --arnr-type=3"
  683. _melt_misc_vp9=" qmin=$qmin_vp9 qmax=$qmax_vp9 g=120 deadline=good cpu-used=$cpu_vp9${profile_vp9:+ vprofile=$profile_vp9} auto-alt-ref=1 lag-in-frames=$lag_vp9 arnr-maxframes=7 arnr-strength=5 arnr-type=centered"
  684. _ffmpeg_misc_vp9=" -qmin $qmin_vp9 -qmax $qmax_vp9 -g 120 -deadline good -cpu-used $cpu_vp9${profile_vp9:+ -profile:v $profile_vp9} -auto-alt-ref 1 -lag-in-frames $lag_vp9 -arnr-maxframes 7 -arnr-strength 5 -arnr-type centered"
  685. _vpxenc_misc_vp9=" --passes=${singlepass_vp9:+1}${multipass_vp9:+2} --min-q=$qmin_vp9 --max-q=$qmax_vp9 --kf-max-dist=120 --good --cpu-used=$cpu_vp9${profile_vp9:+ --profile=$profile_vp9} --tile-columns=$tokenparts_log2_vp9 --tile-rows=$tokenparts_log2_vp9 --auto-alt-ref=1 --lag-in-frames=$lag_vp9 --arnr-maxframes=7 --arnr-strength=5 --arnr-type=3"
  686. _melt_misc_avc="${no_gpu:+ movflags=+faststart}"
  687. _ffmpeg_misc_avc="${no_gpu:+ -movflags +faststart}"
  688. # format options
  689. # emulate VP8 Constant Quality using "loose" Constrained Quality
  690. _melt_theora="vcodec=libtheora$_melt_bitrate_theora${q_theora:+ $qkey_theora=$q_theora}"
  691. _ffmpeg_theora="-c:v libtheora$_ffmpeg_bitrate_theora${q_theora:+ -$qkey_theora:v $q_theora}"
  692. _melt_vp8="vcodec=$encoder_vp8${pre_vp8:+ vpreset=$pre_vp8}${preset_vp8:+ preset=$preset_vp8}$_melt_bitrate_vp8${q_vp8:+ ${no_bitrate_vp8:+vb=$((bitrate_vp8*10)) }$qkey_vp8=$q_vp8}$_melt_misc_vp8"
  693. _ffmpeg_vp8="-c:v $encoder_vp8${pre_vp8:+ -vpre $pre_vp8}${preset_vp8:+ preset $preset_vp8}$_ffmpeg_bitrate_vp8${q_vp8:+ ${no_bitrate_vp8:+-b:v $((bitrate_vp8*10)) }-$qkey_vp8 $q_vp8}$_ffmpeg_misc_vp8"
  694. _vpxenc_vp8="--codec=vp8$_vpxenc_bitrate_vp8 --end-usage=${no_q_vp8:+vbr}${q_vp8:+cq --cq-level=$q_vp8}$_vpxenc_misc_vp8"
  695. _melt_vp9="vcodec=$encoder_vp9${pre_vp9:+ vpreset=$pre_vp9}${preset_vp9:+ preset=$preset_vp9}$_melt_bitrate_vp9${q_vp9:+ ${no_bitrate_vp9:+vb=0 }$qkey_vp9=$q_vp9}$_melt_misc_vp9"
  696. _ffmpeg_vp9="-c:v $encoder_vp9${pre_vp9:+ -vpre $pre_vp9}${preset_vp9:+ -preset $preset_vp9}$_ffmpeg_bitrate_vp9${q_vp9:+ ${no_bitrate_vp9:+-b:v 0 }-$qkey_vp9 $q_vp9}$_ffmpeg_misc_vp9"
  697. _vpxenc_vp9="--codec=vp9$_vpxenc_bitrate_vp9 --end-usage=${no_q_vp9:+vbr}${q_vp9:+cq --cq-level=$q_vp9}$_vpxenc_misc_vp9"
  698. _melt_avc="vcodec=$encoder_avc${preset_avc:+ vpreset=$preset_avc}${profile_avc:+ vprofile=$profile_avc}${x264tune:+ tune=$x264tune}$_melt_bitrate_avc${q_avc:+ $qkey_avc=$q_avc} threads=0$_melt_misc_avc"
  699. _ffmpeg_avc="-c:v $encoder_avc${preset_avc:+ -preset $preset_avc}${profile_avc:+ -profile:v $profile_avc}${x264tune:+ -tune $x264tune}$_ffmpeg_bitrate_avc${q_avc:+ -$qkey_avc $q_avc}$_ffmpeg_misc_avc"
  700. _melt_pcm="$_melt_downmix acodec=pcm_s16le"
  701. _melt_vorbis="$_melt_downmix acodec=libvorbis aq=$quality_vorbis"
  702. _ffmpeg_vorbis="$_ffmpeg_downmix -c:a libvorbis -q:a $quality_vorbis"
  703. _oggenc_vorbis="$_oggenc_downmix -q $quality_vorbis"
  704. _melt_opus="$_melt_downmix acodec=libopus ab=$((channels*bitrate_opus))k${opusapp:+ application=$opusapp}"
  705. _ffmpeg_opus="$_ffmpeg_downmix -c:a libopus -b:a $((channels*bitrate_opus))k${opusapp:+ -application $opusapp}"
  706. _opusenc_opus="$_opusenc_downmix --bitrate $((channels*bitrate_opus))"
  707. _melt_mp3="$_melt_downmix acodec=libmp3lame${use_lame_abr:+ aq=$quality_lame}${use_lame_cbr:+ ab=$((channels*bitrate_lame))k}"
  708. _ffmpeg_mp3="$_ffmpeg_downmix -c:a libmp3lame${use_lame_abr:+ -q:a $quality_lame}${use_lame_cbr:+ -b:a $((channels*bitrate_lame))k}"
  709. _melt_aac="$_melt_downmix acodec=aac ab=$((channels*bitrate_aac))k"
  710. _ffmpeg_aac="$_ffmpeg_downmix -c:a aac -b:a $((channels*bitrate_aac))k"
  711. # container options
  712. _melt_stdout="-consumer avformat:pipe:1 f=yuv4mpegpipe $_melt_video pix_fmt=yuv420p an=1 audio_off=1"
  713. _ffmpeg_stdin="-f yuv4mpegpipe -i pipe:0$_ffmpeg_gpu_filter"
  714. _ffmpeg_rawvideo="-f rawvideo"
  715. _melt_wav="f=wav $_melt_pcm vn=1 video_off=1"
  716. _ffmpeg_wav_in="-f wav"
  717. _oggenc_wav_in=
  718. _opusenc_wav_in=
  719. _melt_matroska_pcm="f=matroska $_melt_downmix $_melt_pcm vn=1 video_off=1"
  720. _ffmpeg_matroska_pcm_in="-f matroska"
  721. _melt_ogv="f=ogg $_melt_video $_melt_theora ${silence:+an=1 audio_off=1}${channels:+$_melt_vorbis}"
  722. _ffmpeg_ogv="-f ogg $_ffmpeg_video $_ffmpeg_theora ${silence:+-an}${channels:+ $_ffmpeg_vorbis}"
  723. _ffmpeg_ogv_in="-f ogg"
  724. _ffmpeg_ogv_keepvideo="-f ogg $_ffmpeg_video -c:v copy ${silence:+-an}${channels:+$_ffmpeg_vorbis}"
  725. _ffmpeg_ogg_in="-f ogg"
  726. _ffmpeg_ogv_onlyvideo="-f ogg $_ffmpeg_video $_ffmpeg_theora -an"
  727. _ffmpeg_ogg_vorbis="-f ogg -vn $_ffmpeg_vorbis"
  728. _ffmpeg_ogg_opus="-f ogg -vn $_ffmpeg_opus"
  729. _melt_webm="f=webm $_melt_video $_melt_vp8 ${silence:+an=1 audio_off=1}${channels:+$_melt_vorbis}"
  730. _ffmpeg_webm="-f webm $_ffmpeg_video $_ffmpeg_vp8 ${silence:+-an}${channels:+ $_ffmpeg_vorbis}"
  731. _ffmpeg_webm_in="-f webm"
  732. _ffmpeg_webm_onlyvideo="-f webm $_ffmpeg_video $_ffmpeg_vp8 -an"
  733. _ffmpeg_webm_keepvideo="-f webm $_ffmpeg_video -c:v copy ${silence:+-an}${channels:+$_ffmpeg_vorbis}"
  734. _ffmpeg_webm_keepvideo_opus="-f webm $_ffmpeg_video -c:v copy ${silence:+-an}${channels:+$_ffmpeg_opus}"
  735. _melt_webm_vp9="f=webm $_melt_video $_melt_vp9 ${silence:+an=1 audio_off=1}${channels:+$_melt_opus}"
  736. _ffmpeg_webm_vp9="-f webm $_ffmpeg_video $_ffmpeg_vp9 ${silence:+-an}${channels:+$_ffmpeg_opus}"
  737. _ffmpeg_webm_vp9_onlyvideo="-f webm $_ffmpeg_video $_ffmpeg_vp9 -an"
  738. _melt_mp4="f=mp4 $_melt_video $_melt_avc ${silence:+an=1 audio_off=1}${channels:+${use_mp3:+$_melt_mp3}${use_aac:+$_melt_aac}}"
  739. _ffmpeg_mp4="-f mp4 $_ffmpeg_video $_ffmpeg_avc ${silence:+-an}${channels:+${use_mp3:+$_ffmpeg_mp3}${use_aac:+$_ffmpeg_aac}}"
  740. _ffmpeg_mp4_onlyvideo="-f mp4 $_ffmpeg_video $_ffmpeg_avc -an"
  741. _ffmpeg_mp4_keepvideo="-f mp4 $_ffmpeg_video -c:v copy ${silence:+-an}${channels:+$_ffmpeg_mp3}"
  742. _ffmpeg_mp4_keepvideo_aac="-f mp4 $_ffmpeg_video -c:v copy ${silence:+-an}${channels:+$_ffmpeg_aac}"
  743. _melt_img="f=image2 $_melt_video"
  744. _melt_loudness="$loudness_data"
  745. if [ -n "$loudness" ] && [ -z "$silence$_melt_loudness" ]; then
  746. echo >&2 "Analyzing audio dynamics..."
  747. render melt $_melt_infiles \
  748. $audioprefilters -filter loudness $filters \
  749. -consumer xml:$stem.xml video_off=1 all=1
  750. _melt_loudness="$(perl -n \
  751. -e 'm!<(property) name="results">([^<]+)</\1>! and print $2' \
  752. $stem.xml)"
  753. echo >&2 "Loudness data: $_melt_loudness"
  754. fi
  755. if [ -n "${ogv:+$multipass_theora}${webm:+$multipass_vp8}${webm_vp9:+$multipass_vp9}${mp4:+$multipass_avc}" ]; then
  756. echo >&2 "Analyzing video complexity..."
  757. render melt $_melt_infiles $filters \
  758. ${ogv:+${use_melt_theora:+-consumer avformat:$stem.ogv $_melt_ogv \
  759. pass=1 passlogfile=${stem}_theora}} \
  760. ${webm:+${use_melt_vp8:+-consumer avformat:$stem.webm $_melt_webm \
  761. pass=1 passlogfile=${stem}_vp8}} \
  762. ${webm_vp9:+${use_melt_vp9:+-consumer avformat:${stem}_vp9.webm $_melt_webm_vp9 \
  763. pass=1 passlogfile=${stem}_vp9}} \
  764. ${mp4:+${use_melt_avc:+-consumer avformat:$stem.mp4 $_melt_mp4 \
  765. pass=1 passlogfile=${stem}_avc}} \
  766. ${use_any_nomelt_video:+$_melt_stdout} \
  767. | pee \
  768. ${use_ffmpeg_any:+"$(render ffmpeg-chained-echo $_ffmpeg_stdin \
  769. ${ogv:+${use_ffmpeg_theora:+$_ffmpeg_rawvideo $_ffmpeg_ogv -an \
  770. -pass 1 -passlogfile ${stem}_theora /dev/null}} \
  771. ${webm:+${use_ffmpeg_vp8:+$_ffmpeg_rawvideo $_ffmpeg_vp8 -an \
  772. -pass 1 -passlogfile ${stem}_vp8 /dev/null}} \
  773. ${webm_vp9:+${use_ffmpeg_vp9:+$_ffmpeg_rawvideo $_ffmpeg_vp9 -an \
  774. -pass 1 -passlogfile ${stem}_vp9 /dev/null}} \
  775. ${mp4:+${use_ffmpeg_avc:+$_ffmpeg_rawvideo $_ffmpeg_avc -an \
  776. -pass 1 -passlogfile ${stem}_avc /dev/null}})"} \
  777. ${webm:+${use_vpxenc:+"$(render vpxenc-chained-echo - $_vpxenc_vp8 \
  778. --pass=1 --fpf=${stem}_vp8.log -o /dev/null)"}} \
  779. ${webm_vp9:+${use_vpxenc:+"$(render vpxenc-chained-echo - $_vpxenc_vp9 \
  780. --pass=1 --fpf=${stem}_vp9.log -o /dev/null)"}}
  781. fi
  782. echo >&2 "Encoding video${channels:+ and audio}..."
  783. render melt $_melt_infiles \
  784. ${channels:+$audioprefilters \
  785. ${_melt_loudness:+-filter loudness program=$lufs \
  786. results="$_melt_loudness"}} \
  787. $filters${channels:+ $_melt_postfilters_audio} \
  788. ${ogv:+${use_melt_theora:+-consumer avformat:$stem.ogv $_melt_ogv \
  789. ${multipass_theora:+pass=2 passlogfile=${stem}_theora}}} \
  790. ${webm:+${use_melt_vp8:+-consumer avformat:$stem.webm $_melt_webm \
  791. ${multipass_vp8:+pass=2 passlogfile=${stem}_vp8}}} \
  792. ${webm_vp9:+${use_melt_vp9:+-consumer avformat:${stem}_vp9.webm $_melt_webm_vp9 \
  793. ${multipass_vp9:+pass=2 passlogfile=${stem}_vp9}}} \
  794. ${mp4:+${use_melt_avc:+-consumer avformat:$stem.mp4 $_melt_mp4
  795. ${multipass_avc:+pass=2 passlogfile=${stem}_avc}}} \
  796. ${channels:+${use_wav:+-consumer avformat:$stem.wav \
  797. $_melt_wav}} \
  798. ${channels:+${use_matroska:+-consumer avformat:$stem.mkv \
  799. $_melt_matroska_pcm}} \
  800. ${use_any_nomelt_video:+$_melt_stdout} \
  801. | pee \
  802. ${use_ffmpeg_any:+"$(render ffmpeg-chained-echo $_ffmpeg_stdin \
  803. ${ogv:+${use_ffmpeg_theora:+$_ffmpeg_ogv_onlyvideo \
  804. ${multipass_theora:+-pass 2 -passlogfile ${stem}_theora} \
  805. ${stem}${channels:+_silent}.ogv}} \
  806. ${webm:+${use_ffmpeg_vp8:+$_ffmpeg_webm_onlyvideo \
  807. ${multipass_vp8:+-pass 2 -passlogfile ${stem}_vp8} \
  808. ${stem}${channels:+_silent}.webm}} \
  809. ${webm_vp9:+${use_ffmpeg_vp9:+$_ffmpeg_webm_vp9_onlyvideo \
  810. ${multipass_vp9:+-pass 2 -passlogfile ${stem}_vp9} \
  811. ${stem}_vp9${channels:+_silent}.webm}} \
  812. ${mp4:+${use_ffmpeg_avc:+$_ffmpeg_mp4_onlyvideo \
  813. ${multipass_avc:+-pass 2 -passlogfile ${stem}_avc} \
  814. ${stem}${channels:+_silent}.mp4}})"} \
  815. ${webm:+${use_vpxenc:+"$(render vpxenc-chained-echo - $_vpxenc_vp8 \
  816. ${multipass_vp8:+--pass=2 --fpf=${stem}_vp8.log} \
  817. -o ${stem}${channels:+_silent}.webm)"}} \
  818. ${webm_vp9:+${use_vpxenc:+"$(render vpxenc-chained-echo - $_vpxenc_vp9 \
  819. ${multipass_vp9:+--pass=2 --fpf=${stem}_vp9.log} \
  820. -o ${stem}_vp9${channels:+_silent}.webm)"}}
  821. if [ -n "${ogv:+$use_oggenc$use_ffmpeg_theora}${webm:+$use_vpxenc$use_oggenc}" ] && [ -n "$channels" ]; then
  822. echo >&2 "Encoding Vorbis audio and muxing with video..."
  823. # TODO: Encode once, muxing to containers as needed
  824. if [ -n "$use_oggenc" ]; then
  825. render oggenc $_oggenc_wav_in $_oggenc_vorbis -o - $stem.wav \
  826. | render ffmpeg-chained \
  827. ${ogv:+${use_oggenc:+$_ffmpeg_ogv_in -i ${stem}_silent.ogv \
  828. $_ffmpeg_ogg_in -i pipe:0 \
  829. $_ffmpeg_ogv_keepvideo $stem.ogv}} \
  830. ${webm:+${use_oggenc:+$_ffmpeg_webm_in -i ${stem}_silent.webm \
  831. $_ffmpeg_ogg_in -i pipe:0 \
  832. $_ffmpeg_webm_keepvideo $stem.webm}}
  833. fi
  834. if [ -n "${ogv:+$use_ffmpeg_theora}" ]; then
  835. render ffmpeg $_ffmpeg_ogv_in -i ${stem}_silent.ogv \
  836. $_ffmpeg_matroska_wav_in -i $stem.mkv \
  837. $_ffmpeg_ogv_keepvideo ${stem}.ogv
  838. fi
  839. if [ -n "${webm:+$use_vpxenc}" ]; then
  840. render ffmpeg $_ffmpeg_webm_in -i ${stem}_silent.webm \
  841. $_ffmpeg_matroska_wav_in -i $stem.mkv \
  842. $_ffmpeg_webm_keepvideo ${stem}.webm
  843. fi
  844. fi
  845. if [ -n "${webm_vp9:+$use_vpxenc$use_opusenc}" ] && [ -n "$channels" ]; then
  846. echo >&2 "Encoding Opus audio and muxing with VP9 video..."
  847. if [ -n "$use_opusenc" ]; then
  848. render opusenc $_opusenc_wav_in $_opusenc_opus -o - $stem.wav \
  849. | render ffmpeg-chained \
  850. $_ffmpeg_webm_in -i ${stem}_vp9_silent.webm \
  851. $_ffmpeg_ogg_in -i pipe:0 \
  852. $_ffmpeg_webm_keepvideo_opus ${stem}_vp9.webm
  853. else
  854. render ffmpeg $_ffmpeg_webm_in -i ${stem}_vp9_silent.webm \
  855. $_ffmpeg_matroska_wav_in -i $stem.mkv \
  856. $_ffmpeg_webm_keepvideo_opus ${stem}_vp9.webm
  857. fi
  858. fi
  859. if [ -n "${mp4:+$use_ffmpeg_avc}" ] && [ -n "$channels" ]; then
  860. if [ -n "$use_mp3" ]; then
  861. echo "Encoding MP3 audio and muxing with H.264/AVC video..."
  862. render ffmpeg $_ffmpeg_mp4_in -i ${stem}_silent.mp4 \
  863. $_ffmpeg_matroska_wav_in -i $stem.mkv \
  864. $_ffmpeg_mp4_keepvideo ${stem}.mp4
  865. else
  866. echo "Encoding AAC audio and muxing with H.264/AVC video..."
  867. render ffmpeg $_ffmpeg_mp4_in -i ${stem}_silent.mp4 \
  868. $_ffmpeg_matroska_wav_in -i $stem.mkv \
  869. $_ffmpeg_mp4_keepvideo_aac ${stem}.mp4
  870. fi
  871. fi
  872. # cleanup encoding cruft
  873. rm -f $stem.xml $stem.wav $stem.mkv ${stem}_*.log ${stem}_*silent.webm
  874. # JPEG preview
  875. render melt $infile_first in=$stillframe out=$stillframe \
  876. -group $filters \
  877. -consumer avformat:$stem.jpg $_melt_img
  878. __width="${_width:+ width=\"$_width\"}"
  879. __height="${_height:+ height=\"$_height\"}"
  880. # Flash object needs extra space for controllers
  881. __heightplus=${_height:+ height=\"$((_height+4))\"}
  882. _source_ogv="<source src=\"$stem.ogv\" type='video/ogg; codecs=\"theora, vorbis\"' />"
  883. _source_webm="<source src=\"$stem.webm\" type='video/webm; codecs=\"vp8, vorbis\"' />"
  884. _source_webm_vp9="<source src=\"${stem}_vp9.webm\" type='video/webm; codecs=\"vp9, opus\"' />"
  885. # TODO: add type, with h.264 level inspected after rendering
  886. # <https://stackoverflow.com/questions/16363167/html5-video-tag-codecs-attribute#answer-16365526>
  887. _source_mp4="<source src=\"$stem.mp4\" type=\"video/mp4\" />"
  888. [ -z "$flashplayer" ] || flash=yes
  889. [ -n "$mp4" ] || [ -z "$flash" ] || error1 "Cannot enable flash when mp4 format is disabled."
  890. _object_flash="<object$__width$__heightplus type=\"application/x-shockwave-flash\" data=\"$flashplayer.swf\">"
  891. _param_name="<param name=\"movie\" value=\"$flashplayer.swf\" />"
  892. _param_flashvars="<param name=\"flashvars\" value=\"image=$stem.jpg&amp;file=$stem.mp4\" />"
  893. __ogvfile=${ogv:+open format <a href=\"$stem.ogv\">Ogg/Thera</a>}
  894. __webmfile=${webm:+open format <a href=\"$stem.webm\">WebM/VP8</a>}
  895. __webm_vp9_file=${vp9:+open format <a href=\"${stem}_vp9.webm\">WebM/VP9</a>}
  896. __mp4file=${mp4:+closed format <a href=\"$stem.mp4\">MPEG-4/AVC</a>}
  897. cat >"$stem.html" <<EOF
  898. <!-- Video for Everybody, Kroc Camen of Camen Design -->
  899. <video$__width$__height preload controls>
  900. ${mp4:+$_source_mp4
  901. }${webm_vp9:+$_source_webm_vp9
  902. }${webm:+$_source_webm
  903. }${ogv:+$_source_ogv
  904. }${flash:+$_object_flash
  905. $_param_name
  906. $_param_flashvars
  907. }<img src="$stem.jpg"$__width$__height alt="$title"
  908. title="No video playback capabilities, please download the video below" />
  909. ${flash:+</object>
  910. }</video>
  911. <p><strong>Download Video:</strong><ul>
  912. ${webm_vp9:+<li>$__webm_vp9_file
  913. }${webm:+<li>$__webmfile
  914. }${ogv:+<li>$__ogvfile
  915. }${mp4:+<li>$__mp4file
  916. }</ul></p>
  917. EOF