Spaces:
Sleeping
Sleeping
Update 01_🎥_Input_YouTube_Link.py
Browse files
01_🎥_Input_YouTube_Link.py
CHANGED
@@ -23,6 +23,7 @@ def load_lottieurl(url: str):
|
|
23 |
return None
|
24 |
return r.json()
|
25 |
|
|
|
26 |
col1, col2 = st.columns([1, 3])
|
27 |
with col1:
|
28 |
lottie = load_lottieurl("https://assets8.lottiefiles.com/packages/lf20_jh9gfdye.json")
|
@@ -33,8 +34,8 @@ with col2:
|
|
33 |
## Sema-Titles
|
34 |
##### Input a YouTube video link and get a video with subtitles.
|
35 |
###### ➠ If you want to transcribe the video in its original language, select the task as "Transcribe"
|
36 |
-
###### ➠ If you want to translate the subtitles
|
37 |
-
######
|
38 |
|
39 |
|
40 |
@st.cache(allow_output_mutation=True)
|
@@ -287,4 +288,4 @@ def main():
|
|
287 |
|
288 |
if __name__ == "__main__":
|
289 |
main()
|
290 |
-
|
|
|
23 |
return None
|
24 |
return r.json()
|
25 |
|
26 |
+
|
27 |
col1, col2 = st.columns([1, 3])
|
28 |
with col1:
|
29 |
lottie = load_lottieurl("https://assets8.lottiefiles.com/packages/lf20_jh9gfdye.json")
|
|
|
34 |
## Sema-Titles
|
35 |
##### Input a YouTube video link and get a video with subtitles.
|
36 |
###### ➠ If you want to transcribe the video in its original language, select the task as "Transcribe"
|
37 |
+
###### ➠ If you want to translate the subtitles to English, select the task as "Translate with Whisper"
|
38 |
+
###### ➠ If you want to translate the subtitles from English to any of the 200 supported languages, select the task as "Translate with Sema" """)
|
39 |
|
40 |
|
41 |
@st.cache(allow_output_mutation=True)
|
|
|
288 |
|
289 |
if __name__ == "__main__":
|
290 |
main()
|
291 |
+
st.markdown("###### Powered by [sema © 2024](https://www.sema.wiki)")
|