Spaces:
Runtime error
Runtime error
Commit
·
f94827e
1
Parent(s):
a44f2df
Update app_multi.py
Browse files- app_multi.py +2 -2
app_multi.py
CHANGED
@@ -414,14 +414,14 @@ def youtube_downloader(
|
|
414 |
video_identifier,
|
415 |
start_time,
|
416 |
end_time,
|
|
|
417 |
output_filename="track.wav",
|
418 |
num_attempts=5,
|
419 |
url_base="",
|
420 |
quiet=False,
|
421 |
force=True,
|
422 |
-
full_song=True,
|
423 |
):
|
424 |
-
if
|
425 |
ydl_opts = {
|
426 |
'noplaylist': True,
|
427 |
'format': 'bestaudio/best',
|
|
|
414 |
video_identifier,
|
415 |
start_time,
|
416 |
end_time,
|
417 |
+
is_full_song,
|
418 |
output_filename="track.wav",
|
419 |
num_attempts=5,
|
420 |
url_base="",
|
421 |
quiet=False,
|
422 |
force=True,
|
|
|
423 |
):
|
424 |
+
if is_full_song:
|
425 |
ydl_opts = {
|
426 |
'noplaylist': True,
|
427 |
'format': 'bestaudio/best',
|