Update app.py
Browse files
app.py
CHANGED
|
@@ -30,12 +30,6 @@ def process_video(video_file, progress=gr.Progress()):
|
|
| 30 |
}
|
| 31 |
)
|
| 32 |
|
| 33 |
-
frames_view = pxt.create_view(
|
| 34 |
-
"gong_demo.frames",
|
| 35 |
-
calls_table,
|
| 36 |
-
iterator=FrameIterator.create(video=calls_table.video, fps=1)
|
| 37 |
-
)
|
| 38 |
-
|
| 39 |
# Create computed columns to store transformations and persist outputs
|
| 40 |
calls_table['audio'] = extract_audio(calls_table.video, format='mp3')
|
| 41 |
calls_table['metadata'] = get_metadata(calls_table.audio)
|
|
|
|
| 30 |
}
|
| 31 |
)
|
| 32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
# Create computed columns to store transformations and persist outputs
|
| 34 |
calls_table['audio'] = extract_audio(calls_table.video, format='mp3')
|
| 35 |
calls_table['metadata'] = get_metadata(calls_table.audio)
|