Generate mp3 file with noise

create wav file

cat /dev/urandom | sox -r 44100 -b 16 -c 2 -e signed-integer -traw - test.wav

convert to mp3

lame -b 64 test.wav test.mp3

Leave a Reply