adiv07 commited on
Commit
98f8d9b
·
verified ·
1 Parent(s): dbf5bd8

Update Gpt4oDemo.py

Browse files
Files changed (1) hide show
  1. Gpt4oDemo.py +29 -2
Gpt4oDemo.py CHANGED
@@ -72,7 +72,34 @@ Video
72
  video_file = None
73
  audio_path=None
74
  base64Frames = []
75
- transcript=""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
76
 
77
  def process_video(video_path, seconds_per_frame=2):
78
  global base64Frames, audio_path
@@ -99,7 +126,7 @@ def process_video(video_path, seconds_per_frame=2):
99
  clip.audio.write_audiofile(audio_path, bitrate="32k")
100
  clip.audio.close()
101
  clip.close()
102
- transcribe_video(audio_path)
103
  print(f"Extracted {len(base64Frames)} frames")
104
  print(f"Extracted audio to {audio_path}")
105
  return base64Frames, audio_path
 
72
  video_file = None
73
  audio_path=None
74
  base64Frames = []
75
+ transcript='''Dialogue: and let's say you say well first this big guy came and got us out of class to learn how to tell stories and we were sitting in the classroom.
76
+ start: 0
77
+ end: 8
78
+
79
+ Dialogue: I was sitting in the classroom with Jared, Jared, and Jacob when all of a sudden, it's about those words, all of a sudden a grizzly bear walked through the door.
80
+ start: 9
81
+ end: 20
82
+
83
+ Dialogue: Would that be a problem?
84
+ start: 22
85
+ end: 23
86
+
87
+ Dialogue: Yeah.
88
+ start: 23
89
+ end: 25
90
+
91
+ Dialogue: Okay.
92
+ start: 25
93
+ end: 26
94
+
95
+ Dialogue: Would that be our
96
+ start: 26
97
+ end: 27
98
+
99
+ Dialogue: Yeah, so what's our takeoff in that story?
100
+ start: 28
101
+ end: 30
102
+ '''
103
 
104
  def process_video(video_path, seconds_per_frame=2):
105
  global base64Frames, audio_path
 
126
  clip.audio.write_audiofile(audio_path, bitrate="32k")
127
  clip.audio.close()
128
  clip.close()
129
+ # transcribe_video(audio_path)
130
  print(f"Extracted {len(base64Frames)} frames")
131
  print(f"Extracted audio to {audio_path}")
132
  return base64Frames, audio_path