adding multiple clients can stream feature
This commit is contained in:
parent
738c8a8783
commit
ff4844914c
30
main.py
30
main.py
|
@ -1,26 +1,38 @@
|
||||||
#Modified by smartbuilds.io
|
#Modified by smartbuilds.io
|
||||||
#Date: 27.09.20
|
#Date: 27.09.20
|
||||||
#Desc: This scrtipt script..
|
#Desc: This web application serves a motion JPEG stream
|
||||||
# main.py
|
# main.py
|
||||||
|
|
||||||
# import the necessary packages
|
# import the necessary packages
|
||||||
from flask import Flask, render_template, Response
|
from flask import Flask, render_template, Response, request
|
||||||
from camera import VideoCamera
|
from camera import VideoCamera
|
||||||
|
import time
|
||||||
|
import threading
|
||||||
|
import os
|
||||||
|
|
||||||
|
pi_camera = VideoCamera(flip=False) # flip pi camera if upside down.
|
||||||
|
|
||||||
|
# App Globals (do not edit)
|
||||||
app = Flask(__name__)
|
app = Flask(__name__)
|
||||||
|
|
||||||
@app.route('/')
|
@app.route('/')
|
||||||
def index():
|
def index():
|
||||||
# rendering webpage
|
return render_template('index.html') #you can customze index.html here
|
||||||
return render_template('index.html')
|
|
||||||
def gen(camera):
|
def gen(camera):
|
||||||
|
#get camera frame
|
||||||
while True:
|
while True:
|
||||||
#get camera frame
|
|
||||||
frame = camera.get_frame()
|
frame = camera.get_frame()
|
||||||
yield (b'--frame\r\n'
|
yield (b'--frame\r\n'
|
||||||
b'Content-Type: image/jpeg\r\n\r\n' + frame + b'\r\n\r\n')
|
b'Content-Type: image/jpeg\r\n\r\n' + frame + b'\r\n\r\n')
|
||||||
|
|
||||||
@app.route('/video_feed')
|
@app.route('/video_feed')
|
||||||
def video_feed():
|
def video_feed():
|
||||||
return Response(gen(VideoCamera()),
|
return Response(gen(pi_camera),
|
||||||
mimetype='multipart/x-mixed-replace; boundary=frame')
|
mimetype='multipart/x-mixed-replace; boundary=frame')
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
# defining server ip address and port
|
|
||||||
app.run(host='0.0.0.0',port='5000', debug=False)
|
app.run(host='0.0.0.0', debug=False)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -150,19 +150,6 @@ body {
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<form method = "post">
|
|
||||||
|
|
||||||
<div class="camera-movement">
|
|
||||||
|
|
||||||
<a href=# id=center>
|
|
||||||
<button>
|
|
||||||
<i class="fa fa-camera fa-3x" style="color: white" aria-hidden="true"></i>
|
|
||||||
</button>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
@ -182,6 +169,7 @@ button.onclick = function() {
|
||||||
div.style.display = 'block';
|
div.style.display = 'block';
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Reference in New Issue