Created
August 3, 2022 03:48
-
-
Save ganbaaelmer/a45dc42117a0f3d18f336690416fac34 to your computer and use it in GitHub Desktop.
index.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title>Document</title> | |
</head> | |
<body> | |
<h1>Live streaming with flask</h1> | |
<div> | |
<img src="{{ url_for('video') }}" width="55%"/> | |
</div> | |
<img src=""> | |
<div> | |
<audio controls autoplay> | |
<source src="{{ url_for('audio') }}" type="audio/x-wav;codec=pcm"> | |
Your browser does not support the audio element. | |
</audio> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment