diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2014-07-17 13:47:36 (GMT) |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2014-07-17 13:47:36 (GMT) |
commit | 0a8517326c0bfb3416997aa24c525e9ce92fdd84 (patch) | |
tree | 7471ad64e7545b791cf9041908bf00edcce15aaa /stp-playback.html | |
parent | ba9064de9af710f1215cf8ad0c7094d190dbfade (diff) | |
download | soup-transcoding-proxy-0a8517326c0bfb3416997aa24c525e9ce92fdd84.zip soup-transcoding-proxy-0a8517326c0bfb3416997aa24c525e9ce92fdd84.tar.gz |
stp-playback: Set autoplay
The file never plays if autoplay isn't set. Our seek hack still works.
Diffstat (limited to 'stp-playback.html')
-rw-r--r-- | stp-playback.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stp-playback.html b/stp-playback.html index 00b1eb0..452b136 100644 --- a/stp-playback.html +++ b/stp-playback.html @@ -21,7 +21,7 @@ </script> </head> <body> - <video id="rt-video" preload="none"> + <video id="rt-video" preload="none" autoplay> <source src="http://localhost:8000/somepath" type="video/webm"/> </video> </body> |