前提・実現したいこと
pythonのみでWebにして動画をアップロードしてもらいその動画を加工してかえす(表示も)サイトを作りたいです。
発生している問題・エラーメッセージ
まず加工せずにそのまま受けとった動画を表示したいのですが動画が表示されないのと何があっているかすらわかりません
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <h1>自動モザイクアプリ</h1> <h2>動画をアップロードしてね</h2> <form method="post" action="/send" enctype="multipart/form-data"> <input type="file" accept="video/*" name="img_file" id="img_file"> <input type="submit" value="送信"> </form> <p></p> <video src='{{ url_for(video1)}}', type="video/mp4", loop="loop"></video> </body> </html>### 該当のソースコード from flask import Flask, render_template, request import flask # HTTPサーバーを起動 app = flask.Flask(__name__) @app.route('/', methods=['GET', 'POST']) def upload_file(): if request.method == 'GET': return render_template('index.html') if request.method == 'POST': return render_template('index.html') @app.route('/send', methods=['POST']) def video_view(): video_file = request.files['img_file'] return render_template('index.html',video1=video_file) def main(): # app.debug = True app.run(host='localhost', port=8080) if __name__ == '__main__': main() ```python index.html
試したこと
補足情報(FW/ツールのバージョンなど)
動画以外のhtmlは表示されてます。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/10/28 13:55
2019/10/29 07:46
2019/10/29 09:10