By metsaehinen
Tue Mar 08, 2011 3:08 pm
..and I mean multiple samples at the same time. It takes too much time to convert samples one by one. I use Linux and need to convert my samples to work with mpc-500. Anyone got solution?
I found this guide from here:
9. Changing the Sampling Size of a Sound File
If we increase the sampling size , we will get better quality. Sample Size for audio is most often expressed as 8 bits or 16 bits. 8bit audio is more often used for voice recording.
* -b Sample data size in bytes
* -w Sample data size in words
* -l Sample data size in long words
* -d Sample data size in double long words
The following example will convert 8-bit audio file to 16-bit audio file.
$ sox -b input.wav -w output.wav
I found this guide from here:
9. Changing the Sampling Size of a Sound File
If we increase the sampling size , we will get better quality. Sample Size for audio is most often expressed as 8 bits or 16 bits. 8bit audio is more often used for voice recording.
* -b Sample data size in bytes
* -w Sample data size in words
* -l Sample data size in long words
* -d Sample data size in double long words
The following example will convert 8-bit audio file to 16-bit audio file.
$ sox -b input.wav -w output.wav

