截取铃声python代码
Posted ghl666
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了截取铃声python代码相关的知识,希望对你有一定的参考价值。
from pydub import Audiosegment file_name = "张杰 - 这就是爱.mp3" sound = AudioSegment.from_mp3(file_name) start_time = "1:22" #截取开始位置 stop_time = "1:57" #截取的末尾位置 start_time = (int(start_time.split(‘:‘)[0])*60+int(start_time.split(‘:‘)[1]))*1000 stop_time = (int(stop_time.split(‘:‘)[0])*60+int(stop_time.split(‘:‘)[1]))*1000 word = sound[start_time:stop_time] save_name = file_name[:]+‘-截取部分‘ word.export(save_name, format="mp3",tags=‘artist‘: ‘AppLeU0‘, ‘album‘: save_name[:-4])
以上是关于截取铃声python代码的主要内容,如果未能解决你的问题,请参考以下文章
使用 Selenium Python 和 chromedriver 截取整页截图