728x90

우분투 환경에서, python을 사용하여 mp4 파일을 wav로 변환 하는 것에 대해 소개한다.

 

즉, 영상 파일을 음성으로 변경하는 것이다.

 

우선 ffmpeg이 설치되어 있어야 한다.

 

apt-get install ffmpeg 을 하면 되고, sudo 권한이 필요하다.

 

이후 

 

import subprocess


command = "ffmpeg -i {} -ab 160k -ac 2 -ar 44100 -vn {}".format(item, os.path.join(this_path, save_file_id))
    
subprocess.call(command, shell=True)

 

로 진행하면 되며, 이때 item은 mp4 파일, this_path, save_file_id 저장할 wav 파일이다.

 

728x90

+ Recent posts