Hi , i have if condition in my code and i want to produce alert sound in wrong case. can i do that ????

 Akzeptierte Antwort

Daniel Shub
Daniel Shub am 20 Dez. 2011

1 Stimme

What about
sound(randn(4096, 1), 8192)

Weitere Antworten (5)

Jan
Jan am 20 Dez. 2011

9 Stimmen

WarnWave = [sin(1:.6:400), sin(1:.7:400), sin(1:.4:400)];
Audio = audioplayer(WarnWave, 22050);
play(Audio);

4 Kommentare

IceQueen
IceQueen am 21 Okt. 2015
Thank you. The beep sounded exactly like the error. I threw your solution in a function and gave it a short name. Thanks!
abderrazak chahid
abderrazak chahid am 31 Aug. 2017
It is very helpful, Thank you, Jan
Min Son
Min Son am 28 Jun. 2019
Cool sound!
v k
v k am 26 Okt. 2020
Need something similar to this, which gives a sound when the Whatsapp message comes, or an incoming SMS. A whooshing or a swishing sound.
What structure of WarnWave will give such a notification sound?

Melden Sie sich an, um zu kommentieren.

Jan
Jan am 20 Dez. 2011

4 Stimmen

Data = load('handel.mat');
sound(Data.y, Data.Fs)

4 Kommentare

Daniel Shub
Daniel Shub am 20 Dez. 2011
It seems wrong to me to use hallelujah as an alert sound to the "wrong" case. I think would be cool to probe the system settings for the alert sound and use that. You probably also want to unmute and maximize the volume.
Jan
Jan am 20 Dez. 2011
I think, and it's near to Christmas, that Hallelujah is a nice counterbalance, when the workflow is impeded by a problem.
I recommend never to unmute automatically: When my son has fallen asleep, I mute the speakers of my laptop.
Well, I admit, that this was the situation of the last year. Currently: When my son mutes the speakers of my laptop, I fall asleep immediately.
Daniel Shub
Daniel Shub am 20 Dez. 2011
I agree, but for alerts you never know.
Benjamin Wong
Benjamin Wong am 6 Nov. 2020
this is absolutely briliant

Melden Sie sich an, um zu kommentieren.

Jan
Jan am 20 Dez. 2011

4 Stimmen

This calls the message sound of the operating system:
beep

2 Kommentare

Daniel Shub
Daniel Shub am 20 Dez. 2011
I had forgotten about beep.
Paul Hoffrichter
Paul Hoffrichter am 16 Okt. 2020
beep beep beep
Nice and succinct. Thanks.

Melden Sie sich an, um zu kommentieren.

Daniel Shub
Daniel Shub am 20 Dez. 2011

1 Stimme

So here is an absolutely ugly Windows XP hack that gets the SystemExclamation sound from the registry and replaces environment variables with the correct values and then plays the sound.
[~, tempStr] = system('reg query HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\SystemExclamation\.Current');
[~, valueStart] = regexp(tempStr, 'REG_EXPAND_SZ ');
soundStr = tempStr(valueStart+1:(end-1));
envVarSymbol = strfind(soundStr, '%');
while length(envVarSymbol) >= 2
soundStr = [soundStr(1:(envVarSymbol(1)-1)), ...
getenv(soundStr((envVarSymbol(1)+1):(envVarSymbol(2)-1))), ...
soundStr((envVarSymbol(2)+1):end)];
envVarSymbol = strfind(soundStr, '%');
end
[x, Fs] = wavread(soundStr);
sound(x, Fs)
I need to think about this idea more. Interfaces really should be playing system sounds (yuk, who actually has system sounds set to on) at the appropriate times.

2 Kommentare

v k
v k am 26 Okt. 2020
'wavread' incorrect.
v k
v k am 26 Okt. 2020
replaced by 'audioread'.

Melden Sie sich an, um zu kommentieren.

hajer
hajer am 20 Dez. 2011

0 Stimmen

thank you everyone . i have alert sound but my problem how i can call it . Now knew the solution .I'm happy to help me.

Kategorien

Mehr zu Audio I/O and Waveform Generation finden Sie in Hilfe-Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by