subprocess4 / app.py
sreepathi-ravikumar's picture
Update app.py
5c45900 verified
raw
history blame
276 Bytes
from flask import Flask, send_file
app = Flask(__name__)
@app.route('/get_video')
def get_video():
return send_file("https://videos.pexels.com/video-files/2098989/2098989-uhd_2560_1440_30fps.mp4", mimetype='video/mp4')
if __name__ == '__main__':
app.run(debug=True)