Spaces:
Sleeping
Sleeping
Update youtube_video.py
Browse files- youtube_video.py +8 -15
youtube_video.py
CHANGED
@@ -1,10 +1,9 @@
|
|
1 |
import pytube
|
2 |
import os
|
3 |
from pytube import YouTube
|
4 |
-
from pydub import AudioSegment
|
5 |
|
6 |
-
def
|
7 |
-
"""Downloads the audio from a YouTube video,
|
8 |
|
9 |
try:
|
10 |
# Create a YouTube object
|
@@ -21,19 +20,13 @@ def download_and_compress_youtube_audio(youtube_url):
|
|
21 |
original_filename = audio.default_filename
|
22 |
|
23 |
# Extract the first twelve characters and change the file extension to .mp3
|
24 |
-
|
25 |
|
26 |
-
#
|
27 |
-
|
28 |
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
# Remove the original downloaded file
|
33 |
-
os.remove(original_filename)
|
34 |
-
|
35 |
-
print("Download and compression complete! Audio saved to:", compressed_filename)
|
36 |
-
return compressed_filename
|
37 |
|
38 |
except Exception as e:
|
39 |
print("An error occurred:", e)
|
@@ -41,4 +34,4 @@ def download_and_compress_youtube_audio(youtube_url):
|
|
41 |
|
42 |
# Example usage
|
43 |
youtube_url = "https://www.youtube.com/watch?v=your_video_id"
|
44 |
-
|
|
|
1 |
import pytube
|
2 |
import os
|
3 |
from pytube import YouTube
|
|
|
4 |
|
5 |
+
def download_youtube_audio(youtube_url):
|
6 |
+
"""Downloads the audio from a YouTube video, renames it to the first twelve characters, and returns the downloaded file path."""
|
7 |
|
8 |
try:
|
9 |
# Create a YouTube object
|
|
|
20 |
original_filename = audio.default_filename
|
21 |
|
22 |
# Extract the first twelve characters and change the file extension to .mp3
|
23 |
+
new_filename = original_filename[:12] + '.mp3'
|
24 |
|
25 |
+
# Rename the downloaded file
|
26 |
+
os.rename(original_filename, new_filename)
|
27 |
|
28 |
+
print("Download complete! Audio saved to:", new_filename)
|
29 |
+
return new_filename
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
except Exception as e:
|
32 |
print("An error occurred:", e)
|
|
|
34 |
|
35 |
# Example usage
|
36 |
youtube_url = "https://www.youtube.com/watch?v=your_video_id"
|
37 |
+
download_youtube_audio(youtube_url)
|