aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--index.html3
-rw-r--r--scripts/video_export.sh9
2 files changed, 10 insertions, 2 deletions
diff --git a/index.html b/index.html
index ee64d49..c93d443 100644
--- a/index.html
+++ b/index.html
@@ -31,8 +31,9 @@
</p>
<video controls preload width="842" height="518" class="margin-left-neg-12.5%">
- <source src="/assets/DomeKey-Screencast.mp4" type="video/mp4" />
+ <source src="/assets/DomeKey-Screencast.h264.mp4" type="video/mp4" />
<source src="/assets/DomeKey-Screencast.webm" type="video/webm" />
+ <source src="/assets/DomeKey-Screencast.mpeg4.mp4" type="video/mp4" />
<p>
<a href="/assets/DomeKey-Screencast.mp4">Demo video</a>
diff --git a/scripts/video_export.sh b/scripts/video_export.sh
index 7313c93..b345bd6 100644
--- a/scripts/video_export.sh
+++ b/scripts/video_export.sh
@@ -16,4 +16,11 @@ ffmpeg \
-acodec aac \
-strict \
-2 \
- DomeKey-Screencast.mp4
+ DomeKey-Screencast.h264.mp4
+
+ffmpeg \
+ -i Screencast.mov \
+ -c:v mpeg4 \
+ -q:v 5 \
+ -acodec aac \
+ DomeKey-Screencast.mpeg4.mp4