-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathaudio_utils.py
80 lines (58 loc) · 2.2 KB
/
audio_utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import re
import os
from pytube import YouTube
from moviepy.editor import AudioFileClip, VideoFileClip
def extract_abr(abr):
youtube_audio_pattern = re.compile(r"\d+")
kbps = youtube_audio_pattern.search(abr)
if kbps:
kbps = kbps.group()
return int(kbps)
else:
return 0
def get_audio_filepath(filename):
# audio 폴더가 없으면 생성
if not os.path.isdir("audio"):
os.mkdir("audio")
# 현재 스크립트의 절대 경로 얻기
current_directory = os.path.abspath("")
# 파일 경로 생성
audio_file_path = os.path.join(current_directory, "audio", filename)
return audio_file_path
def convert_mp4_to_wav(mp4_file_path, wav_file_path):
# MP4 파일 로드
audio_clip = AudioFileClip(mp4_file_path)
# WAV 형식으로 오디오 추출 및 저장
audio_clip.write_audiofile(wav_file_path, fps=44100, nbytes=2, codec="pcm_s16le")
def download_audio_from_youtube(link):
# YouTube 객체 생성
yt = YouTube(link)
# mp4 오디오만 필터링
mp4_files = dict()
# "audio/mp4" 타입의 스트림만 필터링
for stream in yt.streams.filter(only_audio=True):
mime_type = stream.mime_type
abr = stream.abr
if mime_type == "audio/mp4":
abr = extract_abr(abr)
mp4_files[abr] = stream
# 키를 기준으로 정렬
sorted_keys = sorted(mp4_files.keys())
# 가장 큰 키를 사용하여 값 가져오기
largest_value = mp4_files[sorted_keys[-1]]
filename = largest_value.download()
# 현재 스크립트의 절대 경로 얻기
current_directory = os.path.abspath("")
new_filename = os.path.basename(filename.replace(".mp4", ".wav"))
new_filepath = os.path.join(current_directory, "audio", new_filename)
# mp4 파일을 wav 파일로 변환
convert_mp4_to_wav(filename, new_filepath)
# mp4 파일 삭제
os.remove(filename)
return new_filepath
def extract_audio_from_video(video_filepath):
# MP4 파일 로드
video = VideoFileClip(video_filepath)
audio_filepath = get_audio_filepath(video_filepath.replace(".mp4", ".wav"))
video.audio.write_audiofile(audio_filepath)
return audio_filepath