JaMugen commited on
Commit
257b22e
·
1 Parent(s): 54d5c6b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -15,7 +15,7 @@ if __name__ == "__main__":
15
  # Title
16
  st.title("Translate YouTube Video to French with Hugging Face")
17
  url = st.text_input("Enter YouTube Video URL")
18
- captions = download_video_transcript(url)
19
  if captions:
20
  st.write(captions)
21
  else:
 
15
  # Title
16
  st.title("Translate YouTube Video to French with Hugging Face")
17
  url = st.text_input("Enter YouTube Video URL")
18
+ captions = functions.download_video_transcript(url)
19
  if captions:
20
  st.write(captions)
21
  else: