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