I would like to get the sample-rate of a given audio file using sox. Couldn't find the commandline to do that.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

just use:

soxi <filename>

or

sox --i <filename>

to produce output such as:

Input File     : 'final.flac'
Channels       : 4
Sample Rate    : 44100
Precision      : 16-bit
Duration       : 00:00:11.48 = 506179 samples = 860.849 CDDA sectors
File Size      : 2.44M
Bit Rate       : 1.70M
Sample Encoding: 16-bit FLAC
Comment        : 'Comment=Processed by SoX'

The latter one is in case you're using the win32 version that doesn't include soxi, by default. To grab the sample rate only, just use:

soxi -r <filename>

or

sox --i -r <filename>

which will return the sample rate alone.

link|improve this answer
You know how you would ask JUST for the bit rate in such a way that the output could be read by a PHP script? For instance, it would just return "44100" instead of Sample Rate : 44100 – Scott Jan 10 '11 at 13:44
I made an edit, but in case it doesn't get approved, to get the sample rate alone, you can use: soxi -r <filename> which will show 16000 alone. Also, in case you're using the win32 version, which doesn't include soxi by default, you can just use: soxi --i <filename> or soxi --i -r <filename> The first shows the formatted metadata, while the second shows the sample rate alone. – anonymous Jul 30 '11 at 8:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.