본문 바로가기
python

음성 파일 길이 계산 파이썬

by 타닥타닥 토다토닥 부부 2024. 10. 9.
반응형

음성 파일 길이 계산 파이썬

 

mutagen 패키지를 이용하면 아래 코드와 같이 mp3 파일의 길이를 초단위로 계산할 수 있습니다.
 
from mutagen.mp3 import MP3
file_path = 'test.mp3'  # 여기에 MP3 파일 경로 입력

audio = MP3(file_path)
length_in_seconds = audio.info.length  # 길이를 초 단위로 가져옴
length_in_seconds
반응형

댓글