OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sox_cmd
(Results
1 - 2
of
2
) sorted by null
/external/autotest/client/cros/audio/
sox_utils.py
232
sox_cmd
= [SOX_PATH]
233
sox_cmd
+= _raw_format_args(channels_src, bits_src, rate_src)
234
sox_cmd
+= [path_src]
235
sox_cmd
+= [path_dst]
236
cmd_utils.execute(
sox_cmd
)
262
sox_cmd
= [SOX_PATH]
265
sox_cmd
+= _raw_format_args(channels_src, bits_src, rate_src)
266
sox_cmd
+= ['-v', '%f' % volume_scale]
267
sox_cmd
+= [path_src]
270
sox_cmd
+= _raw_format_args(channels_dst, bits_dst, rate_dst
[
all
...]
audio_helper.py
319
sox_cmd
= '%s | %s' % (sox_mixer_cmd, stat_cmd)
320
return utils.system_output(
sox_cmd
, retain_output=True)
[
all
...]
Completed in 200 milliseconds