RandomPersonRR commited on
Commit
8ac2232
·
verified ·
1 Parent(s): bc44fc5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +63 -55
app.py CHANGED
@@ -1,75 +1,83 @@
1
- from flask import Flask, render_template, request, send_file, jsonify
2
  import os
3
  import tempfile
4
  import subprocess
5
- from zipfile import ZipFile
6
 
7
- # Initialize the Flask app, setting the template folder to current directory
8
  app = Flask(__name__, template_folder='.')
9
 
10
- # Ensure FFmpeg is accessible and executable
11
- ffmpeg_path = "ffmpeg" # Adjust if ffmpeg is not on PATH
12
-
13
  @app.route('/')
14
  def home():
15
- return render_template('html.html')
16
 
17
  @app.route('/process', methods=['POST'])
18
  def process_video():
19
- try:
20
- video_file = request.files['video']
21
- action = request.form['action']
22
- format_option = request.form.get('format')
23
- copy_streams = 'copy_streams' in request.form
24
 
25
- # Save the uploaded video to a temporary file
26
- temp_file = tempfile.NamedTemporaryFile(delete=False, suffix='.mp4')
27
- video_file.save(temp_file.name)
28
 
29
- output_path = tempfile.mktemp(suffix=f".{format_option or 'mp4'}")
30
-
31
- # Prepare ffmpeg command based on action
32
- command = [ffmpeg_path, '-y', '-i', temp_file.name]
33
 
34
- if action == 'Convert Format' and format_option:
35
- command.extend(['-c', 'copy' if copy_streams else '', output_path])
36
- elif action == 'Trim Video':
37
- start_time = request.form.get('start_time')
38
- duration = request.form.get('duration')
39
- command.extend(['-ss', start_time, '-t', duration, '-c', 'copy' if copy_streams else 'libx264', output_path])
40
- elif action == 'Resize Video':
41
- width = request.form.get('width')
42
- height = request.form.get('height')
43
- command.extend(['-vf', f'scale={width}:{height}', '-c:a', 'copy', output_path])
44
- elif action == 'Extract Audio':
45
- output_path = tempfile.mktemp(suffix=".mp3")
46
- command.extend(['-vn', '-acodec', 'mp3', output_path])
47
- elif action == 'Extract Frames':
48
- frame_output_dir = tempfile.mkdtemp()
49
- command.extend(['-vf', 'fps=1', f'{frame_output_dir}/frame_%03d.png'])
50
 
51
- # Run the ffmpeg command
52
- result = subprocess.run(command, capture_output=True, text=True)
 
 
 
 
 
 
 
53
 
54
- if result.returncode != 0:
55
- return jsonify({"error": f"Processing failed: {result.stderr}"}), 500
56
-
57
- # Handle response
58
- if action == 'Extract Frames':
59
- zip_path = os.path.join(tempfile.gettempdir(), "frames.zip")
60
- with ZipFile(zip_path, 'w') as zipf:
61
- for frame_file in os.listdir(frame_output_dir):
62
- zipf.write(os.path.join(frame_output_dir, frame_file), frame_file)
63
- return send_file(zip_path, as_attachment=True, download_name="frames.zip")
64
  else:
65
- return send_file(output_path, as_attachment=True)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
 
67
- finally:
68
- os.remove(temp_file.name)
69
- if os.path.exists(output_path):
70
- os.remove(output_path)
 
71
 
72
- # Run the app using waitress (adjust port as needed for Hugging Face Spaces)
73
  if __name__ == '__main__':
74
- from waitress import serve
75
- serve(app, host='0.0.0.0', port=7860)
 
1
+ from flask import Flask, render_template, request, send_file
2
  import os
3
  import tempfile
4
  import subprocess
5
+ import zipfile
6
 
7
+ # Initialize the Flask app
8
  app = Flask(__name__, template_folder='.')
9
 
 
 
 
10
  @app.route('/')
11
  def home():
12
+ return render_template('html.html') # Loads the HTML interface
13
 
14
  @app.route('/process', methods=['POST'])
15
  def process_video():
16
+ video_file = request.files['video']
17
+ action = request.form['action']
 
 
 
18
 
19
+ # Save the uploaded video to a temporary file
20
+ temp_file = tempfile.NamedTemporaryFile(delete=False)
21
+ video_file.save(temp_file.name)
22
 
23
+ # Determine the output path based on selected action
24
+ output_path = tempfile.NamedTemporaryFile(delete=False, suffix='.mp4').name # Default output format is mp4
 
 
25
 
26
+ # Process video based on action
27
+ if action == 'Convert Format':
28
+ # Get the selected format from the form
29
+ selected_format = request.form['format']
30
+ output_path = tempfile.NamedTemporaryFile(delete=False, suffix=f'.{selected_format}').name
 
 
 
 
 
 
 
 
 
 
 
31
 
32
+ # Check if "Copy Streams" option is enabled
33
+ if 'copy_streams' in request.form:
34
+ # Attempt to copy streams
35
+ result = subprocess.run(['ffmpeg', '-y', '-i', temp_file.name, '-c', 'copy', output_path])
36
+ if result.returncode != 0: # If copying fails, re-encode without specifying a codec
37
+ subprocess.run(['ffmpeg', '-y', '-i', temp_file.name, output_path])
38
+ else:
39
+ # Re-encode without specifying a codec
40
+ subprocess.run(['ffmpeg', '-y', '-i', temp_file.name, output_path])
41
 
42
+ elif action == 'Trim Video':
43
+ start_time = request.form['start_time']
44
+ duration = request.form['duration']
45
+ if 'copy_streams' in request.form:
46
+ result = subprocess.run(['ffmpeg', '-y', '-i', temp_file.name, '-ss', start_time, '-t', duration, '-c', 'copy', output_path])
47
+ if result.returncode != 0:
48
+ subprocess.run(['ffmpeg', '-y', '-i', temp_file.name, '-ss', start_time, '-t', duration, output_path])
 
 
 
49
  else:
50
+ subprocess.run(['ffmpeg', '-y', '-i', temp_file.name, '-ss', start_time, '-t', duration, output_path])
51
+
52
+ elif action == 'Resize Video':
53
+ width = request.form['width']
54
+ height = request.form['height']
55
+ subprocess.run(['ffmpeg', '-y', '-i', temp_file.name, '-vf', f'scale={width}:{height}', output_path])
56
+
57
+ elif action == 'Extract Audio':
58
+ output_path = tempfile.NamedTemporaryFile(delete=False, suffix='.mp3').name
59
+ subprocess.run(['ffmpeg', '-y', '-i', temp_file.name, '-vn', '-acodec', 'mp3', output_path])
60
+
61
+ elif action == 'Extract Frames':
62
+ frames_folder = tempfile.mkdtemp()
63
+ subprocess.run(['ffmpeg', '-y', '-i', temp_file.name, '-an', f'{frames_folder}/frame_%04d.png'])
64
+
65
+ # Create a zip file for the frames
66
+ output_path = tempfile.NamedTemporaryFile(delete=False, suffix='.zip').name
67
+ with zipfile.ZipFile(output_path, 'w') as zipf:
68
+ for root, _, files in os.walk(frames_folder):
69
+ for file in files:
70
+ zipf.write(os.path.join(root, file), arcname=file)
71
+
72
+ elif action == 'Change Video Speed':
73
+ speed_factor = request.form['speed_factor']
74
+ subprocess.run(['ffmpeg', '-y', '-i', temp_file.name, '-filter:v', f'setpts={1/float(speed_factor)}*PTS', output_path])
75
 
76
+ # Send the processed file back if successful
77
+ if os.path.exists(output_path):
78
+ return send_file(output_path, as_attachment=True)
79
+ else:
80
+ return "Error: Processing failed", 500
81
 
 
82
  if __name__ == '__main__':
83
+ app.run(debug=True)