Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -41,7 +41,7 @@ def main():
|
|
| 41 |
df['Translated'] = trimmed_translated_captions
|
| 42 |
|
| 43 |
st.write(df[['Timestamp', 'Original','Translated']])
|
| 44 |
-
|
| 45 |
st.video(video_path)
|
| 46 |
else:
|
| 47 |
st.write("No video found for the given URL")
|
|
|
|
| 41 |
df['Translated'] = trimmed_translated_captions
|
| 42 |
|
| 43 |
st.write(df[['Timestamp', 'Original','Translated']])
|
| 44 |
+
if video_path:
|
| 45 |
st.video(video_path)
|
| 46 |
else:
|
| 47 |
st.write("No video found for the given URL")
|