- Reading audio files: https://in.mathworks.com/help/matlab/ref/audioread.html
- Writing audio files: https://in.mathworks.com/help/matlab/ref/audiowrite.html
- Zipping a file: https://in.mathworks.com/help/matlab/ref/zip.html
how can zip an audio file 3x in matlab?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
how can I zip an audio file 3x in matlab?
Could you help me please?
Thanks your advice.
0 Kommentare
Antworten (1)
Daksh
am 8 Nov. 2022
Hi, it is my understanding that you intend to zip a 3x audio file in MATLAB. I assume that you have already procured the 3x audio file of use.
To zip the audio file (audio.mp3) in the current directory to a folder in the current directory (zipfolder), use the following command:
zip('zipfolder','audio.mp3');
You need to specify the audio format of the file at the end; here it is .mp3, it could also be .wav.
Refer to these MATLAB links if you face issues with audio preprocessing, or zipping files:
Hope it helps
0 Kommentare
Siehe auch
Kategorien
Mehr zu Audio Processing Algorithm Design finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!