SpyC0der77 commited on
Commit
d1e9c89
·
verified ·
1 Parent(s): ffcdb51

update compression

Browse files
Files changed (1) hide show
  1. app.py +16 -14
app.py CHANGED
@@ -27,10 +27,10 @@ except Exception as e:
27
  raft_model = None
28
  gr.Warning("Falling back to OpenCV Farneback optical flow.")
29
 
30
- def compress_video(video_file, compression_factor, progress=gr.Progress(), progress_offset=0.0, progress_scale=0.2, output_file=None):
31
  """
32
- Compresses the video by resizing each frame to a lower resolution.
33
- The new resolution is (original_width * compression_factor, original_height * compression_factor).
34
  Updates progress from progress_offset to progress_offset+progress_scale.
35
  """
36
  start_time = time.time()
@@ -38,12 +38,12 @@ def compress_video(video_file, compression_factor, progress=gr.Progress(), progr
38
  if not cap.isOpened():
39
  raise gr.Error("Could not open video file for compression.")
40
 
41
- original_width = int(cap.get(cv2.CAP_PROP_FRAME_WIDTH))
42
- original_height = int(cap.get(cv2.CAP_PROP_FRAME_HEIGHT))
43
- new_width = max(1, int(original_width * compression_factor))
44
- new_height = max(1, int(original_height * compression_factor))
45
  fps = cap.get(cv2.CAP_PROP_FPS)
46
 
 
 
 
 
47
  if output_file is None:
48
  temp_file = tempfile.NamedTemporaryFile(delete=False, suffix='.mp4')
49
  output_file = temp_file.name
@@ -59,12 +59,12 @@ def compress_video(video_file, compression_factor, progress=gr.Progress(), progr
59
  ret, frame = cap.read()
60
  if not ret:
61
  break
62
- # Resize frame to new resolution
63
  compressed_frame = cv2.resize(frame, (new_width, new_height))
64
  out.write(compressed_frame)
65
  if frame_idx % 10 == 0 or frame_idx == total_frames:
66
  print(f"[INFO] Compressed frame {frame_idx}/{total_frames}")
67
- progress(progress_offset + (frame_idx/total_frames)*progress_scale, desc="Compressing Video")
68
  frame_idx += 1
69
 
70
  cap.release()
@@ -250,10 +250,10 @@ def stabilize_video_using_csv(video_file, csv_file, zoom=1.0, vertical_only=Fals
250
  print(f"[INFO] Stabilized video saved to: {output_file} in {elapsed:.2f} seconds")
251
  return output_file
252
 
253
- def process_video_ai(video_file, zoom, vertical_only, compress_mode, compression_factor, progress=gr.Progress(track_tqdm=True)):
254
  """
255
  Gradio interface function:
256
- - Optionally compresses the video if compress_mode is True.
257
  - Generates motion data from the (possibly compressed) video.
258
  - Stabilizes the video based on the generated motion data.
259
  - If vertical_only is True, only vertical stabilization is applied.
@@ -273,7 +273,7 @@ def process_video_ai(video_file, zoom, vertical_only, compress_mode, compression
273
  if compress_mode:
274
  gr.Info("Compressing video before processing...")
275
  # Compression phase uses progress 0 to 0.2
276
- video_file = compress_video(video_file, compression_factor, progress=progress, progress_offset=0.0, progress_scale=0.2)
277
  gr.Info("Video compression complete.")
278
  # Set new progress offsets for subsequent phases.
279
  motion_offset = 0.2
@@ -300,6 +300,7 @@ with gr.Blocks() as demo:
300
  gr.Markdown("# AI-Powered Video Stabilization")
301
  gr.Markdown(
302
  "Upload a video, select a zoom factor, choose whether to apply only vertical stabilization, and optionally compress the video before processing. "
 
303
  "The system will generate motion data using an AI model (RAFT if available) and then stabilize the video with live progress updates and alerts."
304
  )
305
 
@@ -309,7 +310,8 @@ with gr.Blocks() as demo:
309
  zoom_slider = gr.Slider(minimum=1.0, maximum=2.0, step=0.1, value=1.0, label="Zoom Factor")
310
  vertical_checkbox = gr.Checkbox(label="Vertical Stabilization Only", value=False)
311
  compress_checkbox = gr.Checkbox(label="Compress Video Before Processing", value=False)
312
- compression_slider = gr.Slider(minimum=0.1, maximum=1.0, step=0.1, value=0.5, label="Compression Factor (Scale)")
 
313
  process_button = gr.Button("Process Video")
314
  with gr.Column():
315
  original_video = gr.Video(label="Original Video")
@@ -318,7 +320,7 @@ with gr.Blocks() as demo:
318
 
319
  process_button.click(
320
  fn=process_video_ai,
321
- inputs=[video_input, zoom_slider, vertical_checkbox, compress_checkbox, compression_slider],
322
  outputs=[original_video, stabilized_video, logs_output]
323
  )
324
 
 
27
  raft_model = None
28
  gr.Warning("Falling back to OpenCV Farneback optical flow.")
29
 
30
+ def compress_video(video_file, target_width, target_height, progress=gr.Progress(), progress_offset=0.0, progress_scale=0.2, output_file=None):
31
  """
32
+ Compresses the video by resizing each frame to the specified target resolution.
33
+ The new resolution is exactly (target_width, target_height).
34
  Updates progress from progress_offset to progress_offset+progress_scale.
35
  """
36
  start_time = time.time()
 
38
  if not cap.isOpened():
39
  raise gr.Error("Could not open video file for compression.")
40
 
 
 
 
 
41
  fps = cap.get(cv2.CAP_PROP_FPS)
42
 
43
+ # Use the target resolution directly.
44
+ new_width = int(target_width)
45
+ new_height = int(target_height)
46
+
47
  if output_file is None:
48
  temp_file = tempfile.NamedTemporaryFile(delete=False, suffix='.mp4')
49
  output_file = temp_file.name
 
59
  ret, frame = cap.read()
60
  if not ret:
61
  break
62
+ # Resize frame to target resolution
63
  compressed_frame = cv2.resize(frame, (new_width, new_height))
64
  out.write(compressed_frame)
65
  if frame_idx % 10 == 0 or frame_idx == total_frames:
66
  print(f"[INFO] Compressed frame {frame_idx}/{total_frames}")
67
+ progress(progress_offset + (frame_idx / total_frames) * progress_scale, desc="Compressing Video")
68
  frame_idx += 1
69
 
70
  cap.release()
 
250
  print(f"[INFO] Stabilized video saved to: {output_file} in {elapsed:.2f} seconds")
251
  return output_file
252
 
253
+ def process_video_ai(video_file, zoom, vertical_only, compress_mode, target_width, target_height, progress=gr.Progress(track_tqdm=True)):
254
  """
255
  Gradio interface function:
256
+ - Optionally compresses the video if compress_mode is True, resizing it to the chosen resolution.
257
  - Generates motion data from the (possibly compressed) video.
258
  - Stabilizes the video based on the generated motion data.
259
  - If vertical_only is True, only vertical stabilization is applied.
 
273
  if compress_mode:
274
  gr.Info("Compressing video before processing...")
275
  # Compression phase uses progress 0 to 0.2
276
+ video_file = compress_video(video_file, target_width, target_height, progress=progress, progress_offset=0.0, progress_scale=0.2)
277
  gr.Info("Video compression complete.")
278
  # Set new progress offsets for subsequent phases.
279
  motion_offset = 0.2
 
300
  gr.Markdown("# AI-Powered Video Stabilization")
301
  gr.Markdown(
302
  "Upload a video, select a zoom factor, choose whether to apply only vertical stabilization, and optionally compress the video before processing. "
303
+ "If compressing, specify the target resolution (width and height) for the compressed video. "
304
  "The system will generate motion data using an AI model (RAFT if available) and then stabilize the video with live progress updates and alerts."
305
  )
306
 
 
310
  zoom_slider = gr.Slider(minimum=1.0, maximum=2.0, step=0.1, value=1.0, label="Zoom Factor")
311
  vertical_checkbox = gr.Checkbox(label="Vertical Stabilization Only", value=False)
312
  compress_checkbox = gr.Checkbox(label="Compress Video Before Processing", value=False)
313
+ target_width = gr.Number(label="Target Width (px)", value=640)
314
+ target_height = gr.Number(label="Target Height (px)", value=360)
315
  process_button = gr.Button("Process Video")
316
  with gr.Column():
317
  original_video = gr.Video(label="Original Video")
 
320
 
321
  process_button.click(
322
  fn=process_video_ai,
323
+ inputs=[video_input, zoom_slider, vertical_checkbox, compress_checkbox, target_width, target_height],
324
  outputs=[original_video, stabilized_video, logs_output]
325
  )
326