You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 24, 2025. It is now read-only.
path=input("Please enter the path of the audio file:")
85
-
output_filetype=int(input("Please enter the output file type (SRT is selected by default):\n1.SRT\n2.JSON\n3.TXT\n"))
87
+
output_filetype=int(
88
+
input(
89
+
"Please enter the output file type (SRT is selected by default):\n1.SRT\n2.JSON\n3.TXT\n"
90
+
)
91
+
)
86
92
ifoutput_filetype==1:
87
93
output_filetype="srt"
88
94
elifoutput_filetype==2:
89
95
output_filetype="json"
90
96
elifoutput_filetype==3:
91
97
output_filetype="txt"
92
98
93
-
whisper_model=int(input("Please enter the name of the whisper model you want to use (base is selected by default):\n1.Tiny\n2.Base\n3.Small\n4.Medium\n5.Large\n"))
99
+
whisper_model=int(
100
+
input(
101
+
"Please enter the name of the whisper model you want to use (base is selected by default):\n1.Tiny\n2.Base\n3.Small\n4.Medium\n5.Large\n"
0 commit comments