summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAlex Xu <alex_y_xu@yahoo.ca>2014-01-22 09:30:59 -0500
committerAlex Xu <alex_y_xu@yahoo.ca>2014-01-22 09:30:59 -0500
commit5e8257aca57b5952e0cff830a2da2ec23182c965 (patch)
treee3c5a29f0d867dd576229203a3494cb0f0dfec57 /Makefile
parenta17e2dfe7a2ed9b033ce8ee224395fdaea21bdfe (diff)
downloadhtml5ks-5e8257aca57b5952e0cff830a2da2ec23182c965.tar.xz
html5ks-5e8257aca57b5952e0cff830a2da2ec23182c965.zip
Stuff.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 9d9ac11..3c8c77c 100644
--- a/Makefile
+++ b/Makefile
@@ -29,10 +29,16 @@ CVIDEO := $(MP4) $(WEBM) $(OGV)
video: $(CVIDEO)
+%.y4m: %.mkv
+ $(FFMPEG) -i $< -c:a copy $@
+
%.mp4: %.mkv
$(FFMPEG) -i $< -c:v libx264 -preset slower -tune animation -c:a libfdk_aac $@
%.webm: %.mkv
+ $(FFMPEG) -i $< -strict -2 -c:v libvpx -crf 10 -b:v 1M -c:a copy $@
+
+%.vp9.webm: %.mkv
$(FFMPEG) -i $< -strict -2 -c:v libvpx-vp9 -crf 8 -b:v 1M -c:a copy $@
%.ogv: %.mkv