Initial import

This works for streaming mp4 from rtsp. But only to the first client as
it is unable to recognize discrete frames correctly. It needs further
work.
This commit is contained in:
Will Storey
2016-12-31 13:12:45 -08:00
commit 7f16d84882
7 changed files with 1758 additions and 0 deletions

21
index.html Normal file
View File

@@ -0,0 +1,21 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Now playing</title>
<meta name="viewport" content="width=device-width, user-scalable=no">
<style>
video {
max-width: 100%;
}
</style>
<h1>Now playing</h1>
<!--src="http://127.0.0.1:8081/stream" -->
<!-- src="out.mp4" -->
<video
src="http://127.0.0.1:8081/stream"
autoplay
controls
></video>