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
231
sox_cmd
= [SOX_PATH]
232
sox_cmd
+= _raw_format_args(channels_src, bits_src, rate_src)
233
sox_cmd
+= [path_src]
234
sox_cmd
+= [path_dst]
235
cmd_utils.execute(
sox_cmd
)
261
sox_cmd
= [SOX_PATH]
264
sox_cmd
+= _raw_format_args(channels_src, bits_src, rate_src)
265
sox_cmd
+= ['-v', '%f' % volume_scale]
266
sox_cmd
+= [path_src]
269
sox_cmd
+= _raw_format_args(channels_dst, bits_dst, rate_dst
[
all
...]
audio_helper.py
315
sox_cmd
= '%s | %s' % (sox_mixer_cmd, stat_cmd)
316
return utils.system_output(
sox_cmd
, retain_output=True)
[
all
...]
Completed in 352 milliseconds