csukuangfj
commited on
Commit
•
3f0ce41
1
Parent(s):
b07203d
minor fixes
Browse files
app.py
CHANGED
@@ -104,7 +104,7 @@ def process_uploaded_video_file(
|
|
104 |
"",
|
105 |
)
|
106 |
|
107 |
-
logging.info(f"Processing uploaded file: {in_filename}")
|
108 |
|
109 |
ans = process(language, repo_id, add_punctuation, in_filename)
|
110 |
return (in_filename, ans[0]), ans[0], ans[1], ans[2], ans[3]
|
@@ -128,7 +128,7 @@ def process_uploaded_audio_file(
|
|
128 |
"",
|
129 |
)
|
130 |
|
131 |
-
logging.info(f"Processing uploaded file: {in_filename}")
|
132 |
|
133 |
return process(language, repo_id, add_punctuation, in_filename)
|
134 |
|
|
|
104 |
"",
|
105 |
)
|
106 |
|
107 |
+
logging.info(f"Processing uploaded video file: {in_filename}")
|
108 |
|
109 |
ans = process(language, repo_id, add_punctuation, in_filename)
|
110 |
return (in_filename, ans[0]), ans[0], ans[1], ans[2], ans[3]
|
|
|
128 |
"",
|
129 |
)
|
130 |
|
131 |
+
logging.info(f"Processing uploaded audio file: {in_filename}")
|
132 |
|
133 |
return process(language, repo_id, add_punctuation, in_filename)
|
134 |
|