分段音频时如何修复pyDub错误“解码失败”

时间:2019-05-06 16:48:25

标签: python pydub audiosegment

最初,以下代码运行良好。但是有一次,在执行代码期间,我停止了执行。然后,它不断显示“解码失败。 ffmpeg返回错误代码:1'。我的操作系统是linux mint。

我尝试过的事情:

  • 重新安装pydub
  • 试图通过创建新的虚拟环境来解决问题
  • 重新安装了ffmpeg

代码:

    for i in range(0,18,2):  
      t1 = i *1000  #in milisecond
      t2 = (i+2)*1000

      newAudio = AudioSegment.from_mp3("3b1b.mp3")
      newAudio = newAudio[t1:t2]

      newAudio.export("bike/"+str(count)+ '.mp3', format="wav")

      count +=1

      print(count)

错误如下:

pydub.exceptions.CouldntDecodeError: Decoding failed. ffmpeg returned error code: 1

Output from ffmpeg/avlib:

b'ffmpeg version 3.4.4-0ubuntu0.18.04.1 Copyright (c) 2000-2018 the 
FFmpeg developers\n  built with gcc 7 (Ubuntu 7.3.0-16ubuntu3)\n  
configuration: --prefix=/usr --extra-version=0ub

0 个答案:

没有答案