openfree commited on
Commit
02b5ca9
Β·
verified Β·
1 Parent(s): 065b521

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +56 -6
app.py CHANGED
@@ -589,7 +589,7 @@ def analyze_scenario(scenario):
589
  response = client.chat.completions.create(
590
  model="gpt-4-1106-preview",
591
  messages=messages,
592
- max_tokens=500,
593
  temperature=0.7
594
  )
595
 
@@ -697,13 +697,63 @@ def combine_videos(video_paths, output_path):
697
 
698
  def merge_section_videos(section1, section2, section3, section4, section5):
699
  """μ„Ήμ…˜ λΉ„λ””μ˜€λ“€μ„ ν•˜λ‚˜λ‘œ κ²°ν•©"""
700
- videos = [section1, section2, section3, section4, section5]
701
 
702
- if not all(videos):
703
- raise gr.Error("λͺ¨λ“  μ„Ήμ…˜μ˜ μ˜μƒμ΄ λ¨Όμ € μƒμ„±λ˜μ–΄μ•Ό ν•©λ‹ˆλ‹€.")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
704
 
705
- output_path = tempfile.mktemp(suffix=".mp4")
706
- return combine_videos(videos, output_path)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
707
 
708
 
709
  # Gradio Interface Definition
 
589
  response = client.chat.completions.create(
590
  model="gpt-4-1106-preview",
591
  messages=messages,
592
+ max_tokens=1000,
593
  temperature=0.7
594
  )
595
 
 
697
 
698
  def merge_section_videos(section1, section2, section3, section4, section5):
699
  """μ„Ήμ…˜ λΉ„λ””μ˜€λ“€μ„ ν•˜λ‚˜λ‘œ κ²°ν•©"""
700
+ videos = []
701
 
702
+ # 각 μ„Ήμ…˜ λΉ„λ””μ˜€ 확인 및 처리
703
+ for i, video_path in enumerate([section1, section2, section3, section4, section5], 1):
704
+ if video_path:
705
+ if os.path.exists(video_path):
706
+ try:
707
+ # λΉ„λ””μ˜€ 파일 검증
708
+ cap = cv2.VideoCapture(video_path)
709
+ if cap.isOpened():
710
+ videos.append(video_path)
711
+ cap.release()
712
+ else:
713
+ raise gr.Error(f"μ„Ήμ…˜ {i}의 μ˜μƒ 파일이 μ†μƒλ˜μ—ˆκ±°λ‚˜ 읽을 수 μ—†μŠ΅λ‹ˆλ‹€.")
714
+ except Exception as e:
715
+ raise gr.Error(f"μ„Ήμ…˜ {i} μ˜μƒ 처리 쀑 였λ₯˜: {str(e)}")
716
+ else:
717
+ raise gr.Error(f"μ„Ήμ…˜ {i}의 μ˜μƒ νŒŒμΌμ„ 찾을 수 μ—†μŠ΅λ‹ˆλ‹€.")
718
+ else:
719
+ raise gr.Error(f"μ„Ήμ…˜ {i}의 μ˜μƒμ΄ μ—†μŠ΅λ‹ˆλ‹€.")
720
 
721
+ if not videos:
722
+ raise gr.Error("κ²°ν•©ν•  μ˜μƒμ΄ μ—†μŠ΅λ‹ˆλ‹€.")
723
+
724
+ try:
725
+ output_path = tempfile.mktemp(suffix=".mp4")
726
+
727
+ # 첫 번째 λΉ„λ””μ˜€μ˜ 속성 κ°€μ Έμ˜€κΈ°
728
+ cap = cv2.VideoCapture(videos[0])
729
+ fps = int(cap.get(cv2.CAP_PROP_FPS))
730
+ width = int(cap.get(cv2.CAP_PROP_FRAME_WIDTH))
731
+ height = int(cap.get(cv2.CAP_PROP_FRAME_HEIGHT))
732
+ cap.release()
733
+
734
+ # 좜λ ₯ λΉ„λ””μ˜€ μ„€μ •
735
+ fourcc = cv2.VideoWriter_fourcc(*'mp4v')
736
+ out = cv2.VideoWriter(output_path, fourcc, fps, (width, height))
737
+
738
+ # 각 λΉ„λ””μ˜€ 순차적으둜 κ²°ν•©
739
+ for video_path in videos:
740
+ cap = cv2.VideoCapture(video_path)
741
+ while True:
742
+ ret, frame = cap.read()
743
+ if not ret:
744
+ break
745
+ # ν”„λ ˆμž„ 크기가 λ‹€λ₯Έ 경우 λ¦¬μ‚¬μ΄μ¦ˆ
746
+ if frame.shape[:2] != (height, width):
747
+ frame = cv2.resize(frame, (width, height))
748
+ out.write(frame)
749
+ cap.release()
750
+
751
+ out.release()
752
+ print(f"Successfully merged {len(videos)} videos")
753
+ return output_path
754
+
755
+ except Exception as e:
756
+ raise gr.Error(f"λΉ„λ””μ˜€ κ²°ν•© 쀑 였λ₯˜ λ°œμƒ: {e}")
757
 
758
 
759
  # Gradio Interface Definition