How to get a list of amplitudes from an audio file?

how can i get the amplitude list from the audio file using linux command line tool?

+3
source share
1 answer

Do you want to get all the individual samples as text? SoX can do this.

$ sox file.wav file.dat

take an audio file file.wavand generate a text file file.datwith a column for the time base in seconds and a column for each audio channel, scaled to the maximum possible value.

+4
source

Source: https://habr.com/ru/post/1781202/


All Articles