pydub AudioSegment.export 正在锁定 smb 共享上的文件。无法删除该文件

Posted

技术标签:

【中文标题】pydub AudioSegment.export 正在锁定 smb 共享上的文件。无法删除该文件【英文标题】:pydub AudioSegment.export is locking a file on smb share. Can't delete that file 【发布时间】:2022-01-09 03:19:27 【问题描述】:

我在尝试使用 pydub 从立体声文件中提取单声道音频时遇到问题。

代码如下:

import wave
import audioop
from pydub import Audiosegment

def cantDeleteLockedFile():

    audiofile = "/Volumes/test/stereotest.wav"
    audiostrip = AudioFileClip(audiofile)

    if audiostrip.nchannels > 1:
        with open(audiofile, "rb") as oaudiofile:
            mono_audios = AudioSegment.from_file(oaudiofile, format="wav")

            # List of AudioSegments, mono files, which can be accessed via [0] and [1]
            mono_audios = mono_audios.split_to_mono()
            audioChannelOne = str(audiofile.rsplit(".", 1)[0]) + "a.wav"

             # This line is locking the stereo file
             mono_left = mono_audios[0].export(audioChannelOne, format="wav")
             # This extracts the mono left track from the stereo track
             # On the same location a file will be created, in this example:
             # "/Volumes/test/stereotesta.wav"

            # This should unlock the file, but doesnt
            mono_left.close()
         
            # When trying to delete the file here, it will fail 
            # without exception raised
            os.remove(audiofile)

           if os.path.exists(audiofile):
              return True

           else:
              return False

  return False

执行此代码后,在我的例子中,它嵌入到 API 微服务系统中,不会退出代码。然后,只要该微服务正在运行,立体声音频文件就会被锁定。该文件不会被删除,函数返回值为“False”。如果您稍后在文件系统上手动导航到该文件并尝试手动删除它,它也会失败。它会先删除它,然后它会神奇地弹回来。

我知道以前在其他板上讨论过这个问题。但是建议的解决方案不起作用。

参考:https://github.com/jiaaro/pydub/issues/305

要么我完全错过了一些东西。但是,也许有一种解决方法可以强制解锁文件,因此可以将其删除?我没有在网上找到参考资料。 基本上我知道,那个 pydub 正在锁定资源,我无法让它解锁 Audio Segment 后面的 wav 文件。

很高兴阅读您的反馈和建议。

谢谢!

【问题讨论】:

【参考方案1】:

用于检查立体声文件的 Audiosegment 也需要关闭。 这阻止了存储端的文件。

添加一个简单的:

audiostrip.close()

解决了问题。

【讨论】:

以上是关于pydub AudioSegment.export 正在锁定 smb 共享上的文件。无法删除该文件的主要内容,如果未能解决你的问题,请参考以下文章

Python pydub音频处理

停止在 pydub 中播放音频

在 pydub 中播放音频

Python,pydub分割音频文件

python中的pydub错误

Pydub 导出错误 - 手动选择编码器