Update app.py
Browse files
app.py
CHANGED
@@ -29,7 +29,7 @@ def get_audio_from_yt_video_input(yt_link: str):
|
|
29 |
try:
|
30 |
yt = pt.YouTube(yt_link)
|
31 |
t = yt.streams.filter(only_audio=True)
|
32 |
-
filename_in = os.path.join(yt_video_dir, "input.
|
33 |
t[0].download(filename=filename_in)
|
34 |
except VideoUnavailable as e:
|
35 |
warnings.warn(f"Video Not Found at {yt_link} ({e})")
|
@@ -41,7 +41,7 @@ def get_audio_from_yt_video_ref(yt_link: str):
|
|
41 |
try:
|
42 |
yt = pt.YouTube(yt_link)
|
43 |
t = yt.streams.filter(only_audio=True)
|
44 |
-
filename_ref = os.path.join(yt_video_dir, "reference.
|
45 |
t[0].download(filename=filename_ref)
|
46 |
except VideoUnavailable as e:
|
47 |
warnings.warn(f"Video Not Found at {yt_link} ({e})")
|
|
|
29 |
try:
|
30 |
yt = pt.YouTube(yt_link)
|
31 |
t = yt.streams.filter(only_audio=True)
|
32 |
+
filename_in = os.path.join(yt_video_dir, "input.wav")
|
33 |
t[0].download(filename=filename_in)
|
34 |
except VideoUnavailable as e:
|
35 |
warnings.warn(f"Video Not Found at {yt_link} ({e})")
|
|
|
41 |
try:
|
42 |
yt = pt.YouTube(yt_link)
|
43 |
t = yt.streams.filter(only_audio=True)
|
44 |
+
filename_ref = os.path.join(yt_video_dir, "reference.wav")
|
45 |
t[0].download(filename=filename_ref)
|
46 |
except VideoUnavailable as e:
|
47 |
warnings.warn(f"Video Not Found at {yt_link} ({e})")
|