diff options
author | Alex Xu <alex_y_xu@yahoo.ca> | 2014-01-22 09:30:59 -0500 |
---|---|---|
committer | Alex Xu <alex_y_xu@yahoo.ca> | 2014-01-22 09:30:59 -0500 |
commit | 5e8257aca57b5952e0cff830a2da2ec23182c965 (patch) | |
tree | e3c5a29f0d867dd576229203a3494cb0f0dfec57 /Makefile | |
parent | a17e2dfe7a2ed9b033ce8ee224395fdaea21bdfe (diff) | |
download | html5ks-5e8257aca57b5952e0cff830a2da2ec23182c965.tar.xz html5ks-5e8257aca57b5952e0cff830a2da2ec23182c965.zip |
Stuff.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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 |