Update Gpt4oDemo.py
Browse files- Gpt4oDemo.py +2 -2
Gpt4oDemo.py
CHANGED
@@ -135,7 +135,7 @@ def process_video(video_path, seconds_per_frame=2, target_width=320, target_heig
|
|
135 |
video.release()
|
136 |
|
137 |
# Extract audio from video
|
138 |
-
audio_path = f"./
|
139 |
clip = VideoFileClip(video_path)
|
140 |
clip.audio.write_audiofile(audio_path, bitrate="32k")
|
141 |
clip.audio.close()
|
@@ -199,7 +199,7 @@ def handle_video(video=None):
|
|
199 |
|
200 |
if video is None:
|
201 |
# Load example video
|
202 |
-
video = "./
|
203 |
|
204 |
base64Frames, audio_path = process_video(video, seconds_per_frame=1, target_width=320, target_height=180)
|
205 |
chat_history.append({
|
|
|
135 |
video.release()
|
136 |
|
137 |
# Extract audio from video
|
138 |
+
audio_path = f"./TakeOff.mp3"
|
139 |
clip = VideoFileClip(video_path)
|
140 |
clip.audio.write_audiofile(audio_path, bitrate="32k")
|
141 |
clip.audio.close()
|
|
|
199 |
|
200 |
if video is None:
|
201 |
# Load example video
|
202 |
+
video = "./TakeOff.mp4"
|
203 |
|
204 |
base64Frames, audio_path = process_video(video, seconds_per_frame=1, target_width=320, target_height=180)
|
205 |
chat_history.append({
|