Convert MP4 files to MP3 2023-2-25 20:25 | 29,243 | 0 | Uncategorized 45 字 | 1 分钟内 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 =…