批量修改mp3文件播放速度

Posted shinedream

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了批量修改mp3文件播放速度相关的知识,希望对你有一定的参考价值。

#coding=utf-8
import sys,os ,shutil
import struct
import glob
import time
import subprocess


def process_audio(file_name,to_file):
    command=‘ffmpeg -i {} -af atempo=0.85 {} ‘.format(‘"‘+file_name+‘"‘,to_file.replace(‘ ‘,‘_‘))
    print(command)
    os.system(command)

def process_file(file_name,dest_node):
    if not file_name.endswith(‘.mp3‘):
        return;
    process_audio(file_name,dest_node)

def process_dir(folder):
    for sub_node in glob.glob ( folder+‘/*‘ ):
        dest_node=sub_node.replace(node,"../processed/")
        if os.path.isdir(sub_node):
            if not os.path.isdir(dest_node):
                os.mkdir(dest_node)
            process_dir(sub_node)
        else:
            process_file(sub_node,dest_node)

node=sys.argv[1]
if os.path.isdir(node):
    process_dir(node)
    for audio_file in glob.glob ( node+‘/*‘ ):
        process_file(audio_file,audio_file.replace(node,"../processed/"))
if os.path.isfile(node):
    with open(node, ‘r‘) as file_to_read:
        for line in file_to_read.readlines():
            process_file(line)

 

以上是关于批量修改mp3文件播放速度的主要内容,如果未能解决你的问题,请参考以下文章

iOS,AVPlayer - 循环播放 MP3 片段

解决PyQt5 QMediaPlayer播放mp3后占用的问题

如何使用千千静听为MP3添加专辑封面和文字信息

Windows Phone 开发:使用 winmm.dll 播放内部 mp3 文件

通过python批量修改mp3名称

在 Qt 和 C++ 中改变 mp3 速度 [QMediaPlayer]