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