-
dos下通过pc喇叭播放wav流文件
dos下通过pc喇叭播放wav流文件-dos pc through loudspeakers broadcast wav document flow
- 2022-10-08 09:55:03下载
- 积分:1
-
c++写的比较规范的读取wav文件然后将其数据保存的数组里。
c++写的比较规范的读取wav文件然后将其数据保存的数组里。-c++ written in a fairly standard wav file and then read the data saved in the array.
- 2022-12-30 11:15:09下载
- 积分:1
-
基于LabVIEW的变声器
语音是人类的特征之一,不同的人拥有不同的声音,但在一些特殊情况下,人们希望改变声音来隐藏身份。语音变音技术应运而生,通过改变声音的频率、幅值达到改变声音的目的。本作品通过labview中的声音采集及播放模块,达到对声音信号的采集、在不同范围内改变声音的频率。
- 2022-07-08 20:09:04下载
- 积分:1
-
microphone speaker
这是一个简单的代码,用于接收来自麦克风的输入,并将输出输出到扬声器上。
- 2022-08-10 23:09:03下载
- 积分:1
-
基于matlab的小波图像融合算法,效果明显。
基于matlab的小波图像融合算法,效果明显。-Matlab wavelet-based image fusion algorithm, an evident result.
- 2022-08-18 16:25:18下载
- 积分:1
-
sndpeek is just what it sounds (and looks) like: real
sndpeek is just what it sounds (and looks) like:
real-time 3D animated display/playback
can use mic-input or wav/aiff/snd/raw/mat file (with playback)
time-domain waveform
FFT magnitude spectrum
3D waterfall plot
lissajous! (interchannel correlation)
rotatable and scalable display
freeze frame! (for didactic purposes)
real-time spectral feature extraction (centroid, rms, flux, rolloff)
available on MacOS X, Linux, and Windows under GPL
part of the sndtools distribution. -sndpeek is just what it sounds (and looks) like: real-time 3D animated display/playback can use mic-input or wav/aiff/snd/raw/mat file (with playback) time-domain waveform FFT magnitude spectrum 3D waterfall plot lissajous! (interchannel correlation) rotatable and scalable display freeze frame! (for didactic purposes) real-time spectral feature extraction (centroid, rms, flux, rolloff) available on MacOS X, Linux, and Windows under GPL part of the sndtools distribution.
- 2022-05-14 09:57:49下载
- 积分:1
-
DirectShow音频采集
DirectShow音频采集:采用DirectShow库进行音频采集/录制,很好的代码,可以很方便的当成一个单独模块移植
到其他项目中,拿出来与大家分享。
- 2022-05-15 16:54:46下载
- 积分:1
-
来源于网上的C++技术开发的音频处理代码, 为国外开源代码, 可用来学习掌握C++的MP3音频处理算法。来源于网上公开资料,供学习使用。...
来源于网上的C++技术开发的音频处理代码, 为国外开源代码, 可用来学习掌握C++的MP3音频处理算法。来源于网上公开资料,供学习使用。-From online C++ Technology development of audio processing code, for foreign open-source code, can be used to study and master the C++ The MP3 audio processing algorithms. Disclosure of information from the Internet for learning to use.
- 2023-08-24 15:15:03下载
- 积分:1
-
关于如何在PC机上储存和处理PCM音频,它也解释了WAVE文件的结构和显示如何用C++代码工作...
关于如何在PC机上储存和处理PCM音频,它也解释了WAVE文件的结构和显示如何用C++代码工作-on how the PC storage and handling PCM audio, It also explains the WAVE document the structure and show how to use C code work
- 2022-05-10 16:29:22下载
- 积分:1
-
实用录音程序
在开始工作之前,要先介绍DirectSound录音用到的三个非常重要的对象,IDirectSoundCapture8 ,设备对象,根据你录音的设备创建的设备对象,利用该对象可以获取设备的属性。IDirectSoundCaptureBuffer8,缓冲区对象,该对象由设备对象创建,主要用来操作音频数据IDirectSoundNotify8 ,事件通知对象,该对象用来通知应用程序从缓冲区中将数据取走,写入文件保存起来。利用DirectSound录音的主要思路,就是先根据选择的录音设备创建设备对象,然后通过设备对象创建辅助缓冲区对象,开始录音的时候,设备将数据写入缓冲区,应用程序主动的从缓冲区将数据读出来写文件即可,就实现了录音功能。这里简单介绍一下dsound的通知功能,应用程序会创建一个通知对象,然后将通知对象邦定,然后设定通知位置(position),什么是通知位置呢,比如缓冲区的大小为4000字节,如果你想当数据达到缓冲区一半的时候能得到通知开始copy数据,那么此时你就可以将通知位置设定为2000,通知位置可以任意的设定,当缓冲区的数据达到你设定的位置时,就会通知应用程序将缓冲区的数据copy到文件中,缓冲区是循环利用的,当缓冲区填充满了以后,就会从头开始充填数据,所以,缓冲区就是一边读,一边写的过程。
- 2022-01-31 23:13:46下载
- 积分:1