Long,, 2021-10-12 23:22 采纳率: 100%
浏览 79
已结题

matlab语音识别错误

function txt = Voice2Txt(Time,varargin)
%语音 短语音识别
Fs =16000; 
nBits = 16 ; 
nChannels = 2 ; 
switch nargin
    case 1
recObj = audiorecorder(Fs,nBits,nChannels);
disp('Start speaking.')

recordblocking(recObj, Time); 
disp('End of Recording.');
Voice = getaudiodata(recObj);
    case 2

[filename,pathname] = uigetfile({'*.wav';'*.mp3';'*.flac';'*.*'},...
                                 'File Selector');  
[y,Fs] = audioread([pathname filename]);
[P,Q] = rat(16000/Fs);
Voice = resample(y,P,Q);
end
global url_use
if isempty(url_use)==1
    api_id ='n6xinle0ggjqo2s3pGh4xvx'; % Replace the api key
    secret_key = 'Gx45o66V11mpsyns2si5yNu9OLdftwg'; % Replace the secret key
    url_use = 'http://24.81e62f9169e9bd60c1d48ce193b4e971.2592000.1636640373.282335-24966080';
end
url= 'http://vop.baidu.com/server_api';
wavFilename = 'TemporalFile.wav';
audiowrite(wavFilename,Voice(:,1),Fs);
fid = fopen(wavFilename,'rb');
bytes = fread(fid);
fclose(fid);
base64string_len = size(bytes,1);
base64string = matlab.net.base64encode(bytes);
options = weboptions('RequestMethod', 'post','HeaderFields',{ 'Content-Type','application/json'});
options.Timeout =20;
m = struct;
m.format = 'wav';%Format
m.lan = 'zh';%Language
m.token = url_use;
m.len = base64string_len;
m.rate = 16000;
m.speech = base64string;
m.cuid = '2a:c6:3f:c419:44';
m.channel = 1;
Content = webwrite(url,m,options);
if isfield(Content,'result')
    txt = Content.result{:};
else
    txt = '';
end
if contains(txt,'关闭程序')
    exit



错误提示:
未定义变量 "matlab" 或类 "matlab.net.base64encode"。

出错 Voice2Txt (line 34)
base64string = matlab.net.base64encode(bytes);

  • 写回答

1条回答 默认 最新

  • joel_1993 2021-10-12 23:30
    关注

    你好同学,首先请确保你的matlab版本在2016b及以上。然后如果版本没问题这个程序是可以运行的。
    有帮助望采纳

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 10月21日
  • 已采纳回答 10月13日
  • 创建了问题 10月12日

悬赏问题

  • ¥15 目标计数模型训练过程中的问题
  • ¥100 Acess连接SQL 数据库后 不能用中文筛选
  • ¥15 用友U9Cloud的webapi
  • ¥20 电脑拓展屏桌面被莫名遮挡
  • ¥20 ensp,用局域网解决
  • ¥15 Python语言实验
  • ¥15 我每周要在投影仪优酷上自动连续播放112场电影,我每一周遥控操作一次投影仪,并使得电影永远不重复播放,请问怎样操作好呢?有那么多电影看吗?
  • ¥20 电脑重启停留在grub界面,引导出错需修复
  • ¥15 matlab透明图叠加
  • ¥50 基于stm32l4系列 使用blunrg-ms的ble gatt 创建 hid 服务失败