what is the code for converting .wav audio file to hex values and also the reverse of it

55 Ansichten (letzte 30 Tage)
'binaryVectorToHex' requires Data Acquisition Toolbox.
i want to convert a .wav audio and the data should be converted to hex value and should be used in fpga for encryotion and the encrypted value should again converted to .wav file so that i can perform metric analysis

Antworten (1)

Devineni Aslesha
Devineni Aslesha am 24 Feb. 2020
Use the following code to convert the .wav audio file to hex values and the reverse of it.
[y,Fs] = audioread('RockGuitar.wav');
yHex = num2hex(y);
yWav = hex2num(yHex);
audiowrite('handel.wav',yWav,Fs);
For more information, go through the following links.

Kategorien

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

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by