필터 지우기
필터 지우기

Small variation in amplitude

조회 수: 3 (최근 30일)
Farideh Jalali
Farideh Jalali 2012년 7월 29일
Does anybody can tell me plz,how can I make change in the amplitude of speech signal ?I need to make small variation in the amplitude.I am working in synthesize speech ,I would like to change the amplitude of the speech signal signal.

채택된 답변

Wayne King
Wayne King 2012년 7월 29일
편집: Wayne King 2012년 7월 29일
You can amplitude modulate the different sections.
For example, I'll amplitude modulate from 1 to 3 seconds in the following signal
Fs = 1000;
t = 0:1/Fs:5-(1/Fs);
x = cos(2*pi*100*t);
x(1000:3000) = x(1000:3000).*(1+0.2*cos(2*pi*10*t(1:2001)));
Vary the modulation depth (I've used 0.2 here) and the modulation frequency (here 10 Hz) to get a realistic variation in amplitude.
The modulation depth should be between 0 and 1, I'm guessing you want a small value like 0.1, 0.2.
The modulation frequency should probably be a low frequency as well maybe 5 Hz or less.
  댓글 수: 1
Farideh Jalali
Farideh Jalali 2012년 7월 30일
편집: Walter Roberson 2012년 7월 30일
This is very good idea but the major problem is that I cant consider the the Cos model as excitation for my speech synthesize model.I tried to modified the codes as following but still I cant hear any variation in the amplitude of voice signal.
fs=10000; % sampling frequency (Hz)
NS = 3*fs; % Number of samples to be generated (for 3 seconds)
pp=100
fm = 10;
fc = fs/pp ;
for m=1:NS,
y(m)=cos(2*pi*(fc/fs)*m).*(1+0.2*cos(2*pi*(fm/fs)*m));
end;
figure (1); plot (y(1:3600));
[Pks,Locs] = findpeaks (y, 'minpeakheight', 0.7);
impEx = zeros (1,NS);
for m=1:length (Locs), impEx (Locs (m)) = 1; end;
figure (66),plot (impEx(1:800) );

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Wayne King
Wayne King 2012년 7월 29일
편집: Wayne King 2012년 7월 29일
Just multiply the signal by a constant between 0 and 1
t = linspace(0,1,1000);
x = cos(2*pi*100*t)+sin(2*pi*100*(t-pi/4));
% scale the amplitude by 1/5
y = 0.2*x;
plot(t,x), hold on;
plot(t,y,'r','linewidth',2)
If you want to add just a small variation, then multiply by a factor just slightly over or under 1.
  댓글 수: 1
Farideh Jalali
Farideh Jalali 2012년 7월 29일
편집: Farideh Jalali 2012년 7월 30일
Thank you very much indeed.When I am listening to the voice,I should hear variation in different time of voice.With your method I only can see changes in the amplitude of the whole voice signal.For example,something ,I expect is :when you listen to the patient voice which is trying to say /a/ in 3 second.you can hear amplitude variation in each second of her voice.I have to make these small variations in my synthesize speech.In each part of voice these variation should be small and can be different from other section of voice.Do you have any suggestion for Am demodulation?

댓글을 달려면 로그인하십시오.


Farideh Jalali
Farideh Jalali 2012년 7월 30일
This is very good idea but the major problem is that I cant consider the the Cos model as excitation for my speech synthesize model.I tried to modified the codes as following but still I cant hear any variation in the amplitude of voice signal.
fs=10000; % sampling frequency (Hz) NS = 3*fs; % Number of samples to be generated (for 3 seconds) pp=100 fm = 10; fc = fs/pp ;
for m=1:NS, y(m)=cos(2*pi*(fc/fs)*m).*(1+0.2*cos(2*pi*(fm/fs)*m));
end; figure (1); plot (y(1:3600));
[Pks,Locs] = findpeaks (y, 'minpeakheight', 0.7); impEx = zeros (1,NS); for m=1:length (Locs), impEx (Locs (m)) = 1; end; figure (66),plot (impEx(1:800) );

카테고리

Help CenterFile Exchange에서 Audio Processing Algorithm Design에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by