资源简介
求出线性预测系数,然后分别以白噪声和残差来模拟激励,编码得出语音信号与原声作比较
代码片段和文件信息
clc; % clear the command line
clear all; % clear the workspace
%
% system constants
% ---------------
InputFilename = ‘s1ofwb.wav‘; %change it according to your wave files
[inspeech Fs bits] = wavread(InputFilename); % read the wavefile
outspeech1 = speechcoder1(inspeech);
outspeech2 = speechcoder2(inspeech);
% display the results
figure(1);
subplot(311);
plot(inspeech);
grid;
subplot(312);
plot(outspeech1);
grid;
subplot(313);
plot(outspeech2);
grid;
disp(‘Press a key to play the original sound!‘);
pause;
soundsc(inspeech Fs);
disp(‘Press a key to play the LPC compressed sound!‘);
pause;
soundsc(outspeech1 Fs);
disp(‘Press a key to play the voice-excited LPC compressed sound!‘);
pause;
soundsc(outspeech2 Fs);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 290913 2008-10-10 21:46 lpc\lpc.zip
文件 772 2008-10-11 13:21 lpc\main.m
文件 772 2008-10-10 23:05 lpc\main.txt
文件 5337 2003-05-12 15:54 lpc\proclpc.m
文件 5337 2008-10-10 23:09 lpc\proclpc.txt
文件 93364 2003-05-08 22:16 lpc\s1ofwb.wav
文件 86496 2003-05-08 22:11 lpc\s1omwb.wav
文件 96346 2003-05-08 22:14 lpc\s2ofwb.wav
文件 89738 2003-05-08 22:09 lpc\s2omwb.wav
文件 1164 2003-05-12 15:55 lpc\speechcoder1.m
文件 1164 2008-10-10 23:06 lpc\speechcoder1.txt
文件 1894 2003-05-12 15:55 lpc\speechcoder2.m
文件 1894 2008-10-10 23:06 lpc\speechcoder2.txt
文件 3609 2003-05-12 15:56 lpc\synlpc.m
文件 3609 2008-10-10 23:08 lpc\synlpc.txt
文件 3493 2003-05-12 15:57 lpc\synlpc2.m
文件 3493 2008-10-10 23:07 lpc\synlpc2.txt
目录 0 2008-10-15 18:07 lpc
----------- --------- ---------- ----- ----
689613 19
- 上一篇:远程桌面(带C 源码)
- 下一篇:大数的加减乘除求余运算
相关资源
- 常用编码(UnicodeUTF-8GBK)转换工具
- L-Z编码L-Z解码
- 1553曼彻斯特编码程序
- 全自动多功能编码转换工具(URLASCI
- H.264编码器流程图
- 建立文件数据索引的c 代码
- 易语言QQTEA算法源码
- XSS Encode
- 基于三菱PLC-松下A6伺服485通讯-读编码
- LabVIEW 数据采集 模拟量+编码器(Daq
- UTF8编码表汉字对照
- 基于LPC2134与T6963C液晶显示模块的接口
- LPC2134与T6963C液晶显示模块的接口设计
- 在IAR环境下,lpc1788用户程序的地址及
- LPC2100系列ARM7微控制器加密ARM芯片
- LPC2214中文手册.pdf
- LPC2000系列微控制器应对嵌入式需求
- H.264视频编码基本知识
- 6通道增量式编码器在智控型纺织机的
- LPC2300_USB固件程序的应用.rar
- 特定人语音识别技术在汽车控制上的
- 矿井巷道时频编码协作MC-CDMA信道估计
- 易语言查询话费欠费信息源码
- 易语言图像编码、解码器源码易语言
- 哈夫曼树编码和译码实验报告+运行视
- Huffman Compress 霍夫曼编码 压缩 解压缩
- 编码 隐匿在计算机软硬件背后的语言
- X264实时编码,FFmpeg实时解码
- 使用FFmpeg采集摄像头图像和麦克风音
- Big5编码台湾繁体字体和GBK编码简体字
评论
共有 条评论