我正在使用ffmpeg将我的文件从wave转换为mp3。但是对于一项新服务,我需要删除一些歌曲的最后10秒(针对盗版问题),无论它们有多长。我已经找到了有关在轨道长度已知时执行此操作的信息,但为此我需要自动完成。
有谁知道要使用哪个命令?如果我能在5秒前淡出,那将是最佳的!
答案 0 :(得分:3)
python是几乎所有东西的强大工具(在linux中测试)
#!/bin/python
from sys import argv
from os import system
from subprocess import Popen, PIPE
ffm = 'ffmpeg -i' # input file
aud = ' -acodec mp3' #add your quality preferences
dur = ' 2>&1 | grep "Duration" | cut -d " " -f 4'
def cutter(inp,t=0):
out = inp[:-5] + '_cut' + inp[-5:]
cut = ' -t %s' % ( duration(inp)-t )
cmd = ffm + inp + aud + cut + out
print cmd; system(cmd)
def fader(inp,t=0):
out = inp[:-5] + '_fade' + inp[-5:]
fad = ' -af "afade=t=out:st=%s:d=%s"' % ( duration(inp)-t, t )
cmd = ffm + inp + fad + out
print cmd; system(cmd)
def duration(inp):
proc = Popen(ffm + inp + dur, shell=True, stdout=PIPE, stderr=PIPE)
out,err = proc.communicate()
h,m,s = [float(x) for x in out[:-2].split(':')]
return (h*60 + m)*60 + s
if __name__ == '__main__':
fname=' "'+argv[1]+'"'
cutter(fname,10)
fader (fname, 5)
# $ python cut_end.py "audio.mp3"
淡出命令是
ffmpeg -i audio.mp3 -af "afade=t=out:st=65:d=5" test.mp3
自动化
for i in *wav;do python cut_end.py "$i";done
你可以连接(cutter-till>推子)来做你想做的事。
问候。