• Home
  • Raw
  • Download

Lines Matching full:rate

13 def _raw_format_args(channels, bits, rate):  argument
18 @param rate: Sampling rate.
24 args += _format_args(channels, bits, rate)
28 def _format_args(channels, bits, rate): argument
33 @param rate: Sampling rate.
38 return ['-c', str(channels), '-b', str(bits), '-r', str(rate)]
42 filename, channels=2, bits=16, rate=48000, duration=None, frequencies=440,
49 @param rate: The sampling rate.
62 args += _raw_format_args(channels, bits, rate)
64 args += _format_args(channels, bits, rate)
85 def noise_profile_cmd(input, output, channels=1, bits=16, rate=48000): argument
92 @param rate: The sampling rate.
95 args += _raw_format_args(channels, bits, rate)
106 input, output, noise_profile, channels=1, bits=16, rate=48000): argument
114 @param rate: The sampling rate.
117 format_args = _raw_format_args(channels, bits, rate)
129 input, output, channel_index, channels=2, bits=16, rate=48000): argument
138 @param rate: The sampling rate.
141 args += _raw_format_args(channels, bits, rate)
148 def stat_cmd(input, channels=1, bits=16, rate=44100): argument
156 @param rate: The sampling rate.
159 args += _raw_format_args(channels, bits, rate)
232 @param rate_src: The sampling rate of the source file.
252 @param rate_src: The sampling rate of the source file.
256 @param rate_dst: The sampling rate of the destination file.
261 specifying channel, sample format, and rate for
290 @param rate_src: The sampling rate of the source file.
334 def get_file_length(file_path, channels, bits, rate): argument
340 @param rate: The sampling rate.
344 return get_stat(file_path, channels, bits, rate).length