anonstream/anonstream/templates/nojs_stream.html

25 行
450 B
HTML
Raw 通常表示 履歴

<!doctype html>
<html>
<head>
<meta charset="utf-8">
2022-03-03 19:38:55 +09:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
html {
height: 100%;
}
body {
height: 100%;
margin: 0;
overflow: hidden;
}
#stream {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<video id="stream" src="{{ url_for('stream', token=user.token) }}" autoplay controls></video>
</body>
</html>