Lines Matching full:bits
12 def _raw_format_args(channels, bits, rate):
16 @param bits: Bit length for a sample.
23 args += _format_args(channels, bits, rate)
27 def _format_args(channels, bits, rate):
31 @param bits: Bit length for a sample.
37 return ['-c', str(channels), '-b', str(bits), '-r', str(rate)]
41 filename, channels=2, bits=16, rate=48000, duration=None, frequencies=440,
47 @param bits: The number of bits of each sample.
58 args += _raw_format_args(channels, bits, rate)
60 args += _format_args(channels, bits, rate)
79 def noise_profile_cmd(input, output, channels=1, bits=16, rate=48000):
85 @param bits: The number of bits of each sample.
89 args += _raw_format_args(channels, bits, rate)
100 input, output, noise_profile, channels=1, bits=16, rate=48000):
107 @param bits: The number of bits of each sample.
111 format_args = _raw_format_args(channels, bits, rate)
123 input, output, channel_index, channels=2, bits=16, rate=48000):
131 @param bits: The number of bits of each sample.
135 args += _raw_format_args(channels, bits, rate)
142 def stat_cmd(input, channels=1, bits=16, rate=44100):
149 @param bits: The number of bits of each sample.
153 args += _raw_format_args(channels, bits, rate)
225 @param bits_src: The size of sample in bits of the source file.
245 @param bits_src: The size of sample in bits of the source file.
249 @param bits_dst: The size of sample in bits of the destination file.
283 @param bits_src: The size of sample in bits of the source file.