Category: Uncategorized

1 Posts

Convert MP4 files to MP3
Code #mp4_to_mp3.py import glob import moviepy.editor as mp res_paths = glob.glob ('*mp4') print(res_paths) def extract_audio(videos_file_path): my_clip = mp.VideoFileClip(videos_file_path) new_name =…