Update app.py
Browse files
app.py
CHANGED
@@ -176,7 +176,8 @@ def download_video_as_audio_only(yt_video, audio_output_format):
|
|
176 |
for outputmp3removal in glob.glob("*.mp3"):
|
177 |
if os.path.exists(outputmp3removal):
|
178 |
os.remove(outputmp3removal)
|
179 |
-
return f"Done! Download the zip file below! This only contains the audio file.\n\nYou have downloaded a video.", single_zip_name
|
|
|
180 |
|
181 |
def mp4_to_wav_or_mp3(mp4fileuploader, file_format):
|
182 |
if mp4fileuploader == None:
|
|
|
176 |
for outputmp3removal in glob.glob("*.mp3"):
|
177 |
if os.path.exists(outputmp3removal):
|
178 |
os.remove(outputmp3removal)
|
179 |
+
#return f"Done! Download the zip file below! This only contains the audio file.\n\nYou have downloaded a video.", single_zip_name
|
180 |
+
return "Done! Download the zip file below! This only contains the audio file.", single_zip_name
|
181 |
|
182 |
def mp4_to_wav_or_mp3(mp4fileuploader, file_format):
|
183 |
if mp4fileuploader == None:
|