We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22da7d5 commit d76de36Copy full SHA for d76de36
tasks/diarize.py
@@ -7,5 +7,8 @@
7
@task
8
def diarize_meeting(meeting: Meeting):
9
video_file = download_video(f"{meeting.meeting}_{meeting.date}", str(meeting.video))
10
- run_diarization(video_file)
+ if video_file:
11
+ run_diarization(video_file)
12
+ else:
13
+ print("Video file not found")
14
# TODO: Update meeting with transcript location
0 commit comments