Spaces:
Running
Running
Update app.py
Browse files
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=
|
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 = [
|
701 |
|
702 |
-
|
703 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
704 |
|
705 |
-
|
706 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|