将可听声音转换为超声波

时间:2018-01-25 06:18:22

标签: matlab audio amplitude modulation

我的声音片段在人类听觉范围内约为3-4秒。我想将它们转换成超声波范围,这样当我传输它们时,人类听不到它们。我读到我需要使用幅度调制。我使用了matlab的modulate函数。

[y,Fs] = audioread('TakeASelfie.mp3');
x = modulate(y,30700, 62000, 'amdsb-tc');
soundsc(x,62000)
audiowrite('modulated.wav', x, 62000)

在上面的例子中,我试图将我的音频剪辑转换为30.7kHz。但是,在我执行调制之后,剪辑的长度减小了。如何在不改变声音片段长度的情况下更改声音片段的频率?我也不确定我采取的方法是否合适。

1 个答案:

答案 0 :(得分:1)

一种方法(此方法可以为您提供较低的边带,例如,如果您的音频信号具有200至2000 Hz的频谱和载波频率f0 = 40000 Hz,您的超声信号将具有39800至38000 Yz的光谱) :

fs=96000; % samplig frequency (should be at least x2.2 of f0 )

[sb, fd]=wavread('as4.wav'); % signal in audio domain
if fd ~= fs                  % change sampling prequency to target
    sb = resample(sb, fs, fd);
end    
sb=sb./max(sb); % normalization

A = 1; % amplitude of carrier tone 
T = length(sb) / fs; % length of signal
f0 = 40000; % carrier frequency
Fi0 = pi/2; % initial phase
N = T * fs;  % number of samples
t = (0 : N-1) / fs;  % time stamps

sa = A * sin(2 * pi * f0 * t + Fi0); % samples of carrier tone

% first method
s = sb .* sa + imag(hilbert(sb)) .* imag(hilbert(sa));
% to have upper sideband use
% s = sb .* sa - imag(hilbert(sb)) .* imag(hilbert(sa));

% second method
s = ssbmod(sb, f0, fs);

s=s./(max(s)); % normalization of modulated signal