gpt4 book ai didi

python - 如何在python中加载m4a文件

转载 作者:太空宇宙 更新时间:2023-11-04 04:41:19 32 4
gpt4 key购买 nike

有没有一种简单的方法可以在 python 中加载 m4a 声音文件。我遇到了 audiotools lib,但在使用 to_pcm fn

时出现错误
audiotools.open('file.m4a').to_pcm()

---------------------------------------------------------------------------
FileNotFoundError Traceback (most recent call last)
<ipython-input-76-e12405d92ce3> in <module>()
----> 1 audiotools.open(p).to_pcm()

/path/to/m4a.py in to_pcm(self)
456 stdout=subprocess.PIPE,
457 stderr=subprocess.DEVNULL if hasattr(subprocess, "DEVNULL") else
--> 458 open(os.devnull, "wb"))
459 return PCMFileReader(sub.stdout,
460 sample_rate=self.sample_rate(),

/path/to/subprocess.py in __init__(self, args, bufsize, executable, stdin, stdout, stderr, preexec_fn, close_fds, shell, cwd, env, universal_newlines, startupinfo, creationflags, restore_signals, start_new_session, pass_fds, encoding, errors)
705 c2pread, c2pwrite,
706 errread, errwrite,
--> 707 restore_signals, start_new_session)
708 except:
709 # Cleanup if the child failed starting.

/path/to/subprocess.py in _execute_child(self, args, executable, preexec_fn, close_fds, pass_fds, cwd, env, startupinfo, creationflags, shell, p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite, restore_signals, start_new_session)
1331 else:
1332 err_msg += ': ' + repr(orig_executable)
-> 1333 raise child_exception_type(errno_num, err_msg)
1334 raise child_exception_type(err_msg)
1335

FileNotFoundError: [Errno 2] No such file or directory: 'faad'

最佳答案

这是使用 pydub 的方法图书馆:

from pydub import AudioSegment
audio = AudioSegment.from_file('file.m4a')

关于python - 如何在python中加载m4a文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50535637/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com