How to display audio file length in Matlab GUI

3 views (last 30 days)
Hello everyone,
I have created an audio file player on Matlab, with Upload file and Play/Stop buttons.
Interested to code a display timer to show how long is the audio file while being played.
Can I use disp.AudioFileReader to count its length?
Need to count seconds in every loop.
Any suggestions appreciated.
  2 Comments
Jan
Jan on 10 Apr 2022
What does "in every loop" mean? audioinfo tells you the length of a sound file.
Nikos Korobos
Nikos Korobos on 10 Apr 2022
Edited: Nikos Korobos on 10 Apr 2022
Just trying to code a timer to show at which second the audio file that is being played is.

Sign in to comment.

Accepted Answer

Geoff Hayes
Geoff Hayes on 10 Apr 2022
@Nikos Korobos - if you are using an audioplayer, you could use the CurrentSample to determine how many samples havve been played which you can translate to how much (in seconds) of the track has been played (you would need to use the sampling rate to perform the correct calculation).
  10 Comments
Nikos Korobos
Nikos Korobos on 17 Apr 2022
Edited: Nikos Korobos on 17 Apr 2022
One more question, what if i wanted to code two buttons on my audio player, one to rewind and one to fast forward while a file is playing?
Can i use audioDeviceWriter method for those?
Thanks in advance!
Walter Roberson
Walter Roberson on 17 Apr 2022
audioDeviceWriter does not care where you get the audio samples that you send to the device. As far as it is concerned, you could flipud() the vector of samples or read two buffers from the file and throw away every second sample (fast forward) or whatever.
But for moving backwards the challenge is the audio file reader, which has no documented way of changing the position in the file - no way to seek back by 10 seconds for example. So in order to accomplish that you would need to keep a copy of the audio you read in, using a buffer the same size as the maximum total distance back you want the user to be able to move back. If you want the user to be able to move back all the way to the beginning (even if only 5 seconds at a time) then you would need to record the entire file in memory... unless there is an undocumented property that can help.

Sign in to comment.

More Answers (0)

Tags

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!