【发布时间】:2018-10-29 17:49:40
【问题描述】:
如何在 MATLAB-Code 中将 *.pcm 音频文件转换为 *.wav 音频文件?
我只需要插入一个标题,但它是如何工作的?
非常感谢!
【问题讨论】:
-
一种方法是在 matlab 中使用 ffmpeg。 Can ffmpeg convert audio from raw PCM to WAV?
-
谢谢,这个 ffmpeg 是外部脚本吗?
-
你能试试 AUDIOREAD 读入文件,AUDIOWRITE 写出 WAV 文件吗?
-
Error using audioread (line 88) File could not be read due to an unexpected error. Reason: Unable to pop the top most message from the bus Error in readdata3 (line 49) [y,Fs] = audioread('15_10_2018_110044.pcm'); -
我在 MATLAB 中找不到读取 pcm-File 的函数 - 无法使用“audioread” - 不支持文件类型 使用
fid = fopen ('15_10_2018_110044.pcm','r');是可能的,但我不知道,我该如何探索这个文件!你能帮帮我吗?
标签: matlab