BatuhanYilmaz
commited on
Commit
Β·
2d3e3b7
1
Parent(s):
deb7eb8
Update pages/03_π_Upload_Video_File_and_Transcript.py
Browse files
pages/03_π_Upload_Video_File_and_Transcript.py
CHANGED
@@ -8,7 +8,6 @@ from io import StringIO
|
|
8 |
import numpy as np
|
9 |
import pathlib
|
10 |
import os
|
11 |
-
import components.authenticate as authenticate
|
12 |
|
13 |
|
14 |
st.set_page_config(page_title="Auto Subtitled Video Generator", page_icon=":movie_camera:", layout="wide")
|
@@ -127,11 +126,5 @@ def main():
|
|
127 |
|
128 |
|
129 |
if __name__ == "__main__":
|
130 |
-
|
131 |
-
if st.session_state["authenticated"]:
|
132 |
-
main()
|
133 |
-
authenticate.button_logout()
|
134 |
-
else:
|
135 |
-
st.info("Please log in or sign up to use the app.")
|
136 |
-
authenticate.button_login()
|
137 |
|
|
|
8 |
import numpy as np
|
9 |
import pathlib
|
10 |
import os
|
|
|
11 |
|
12 |
|
13 |
st.set_page_config(page_title="Auto Subtitled Video Generator", page_icon=":movie_camera:", layout="wide")
|
|
|
126 |
|
127 |
|
128 |
if __name__ == "__main__":
|
129 |
+
main()
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
|