3

我正在使用 ffmpeg 将我的文件从 wave 转换为 mp3。但是对于一项新服务,我需要剪掉一些歌曲的最后 10 秒(针对盗版问题),无论它们有多长。我只在知道轨道长度时才找到有关执行此操作的信息,但为此我需要自动执行此操作。

有谁知道使用哪个命令?如果我能在 5 秒前淡出那将是最佳的!

4

1 回答 1

4

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
  • t:类型(输入|输出)
  • st:开始时间
  • d:持续时间

自动化

for i in *wav;do python cut_end.py "$i";done

你可以连接 (cutter->fader) 来做你想做的事。

问候。

于 2013-09-27T04:26:49.080 回答