Need help with Volume Slider Function(arguments)

조회 수: 4 (최근 30일)
Nikos Korobos
Nikos Korobos 2022년 4월 1일
댓글: Mohamed Turkmani 2022년 9월 8일
Hello everyone, I've been trying to code an audio player for wav files throught the Matlab GUI.
Currently stuck on the volume slider function.
Is my conversion right? What arguments should I use for guidata?
Asking because it has different arguments than the function below I found online.
MY CODE SO FAR FOR THE VOLUME SLIDER:
MY CODE FOR THE STATE BUTTON(PLAY/PAUSE):
FUNCTION I FOUND ONLINE:
Thanks in advance
  댓글 수: 9
Geoff Hayes
Geoff Hayes 2022년 9월 8일
@Mohamed Turkmani - from the function description at SoundVolume functions
% SoundVolume(volume) sets the system speaker sound volume. The volume
% value should be numeric, between 0.0 (=muted) and 1.0 (=max).
So you would call the function from the command line or from code as
SoundVolume(0.5)
or some other value (between 0 and 1) that would change the volume.
Mohamed Turkmani
Mohamed Turkmani 2022년 9월 8일
Yes i fuhured it out thanks for the reply

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

채택된 답변

Jakub Devera
Jakub Devera 2022년 4월 1일
You should be able to get the volume
Volume = app.VolumeSlider.Value;
It is a public property.
I am not sure what you want to achieve by the last line guidata, but this is not used in App Designer as @Geoff Hayes menitoned in the comment.
  댓글 수: 1
Nikos Korobos
Nikos Korobos 2022년 4월 1일
Hello, my main issue is that i need to make the slider swtich volume levels but with the sound file playing.
At this point, my slider does work but it resets the progress of the file playing and starts over instead of continuing from the point I used the volume slider.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Audio and Video Data에 대해 자세히 알아보기

태그

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by