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
201
sox_cmd
= [SOX_PATH]
202
sox_cmd
+= _raw_format_args(channels_src, bits_src, rate_src)
203
sox_cmd
+= [path_src]
204
sox_cmd
+= [path_dst]
205
cmd_utils.execute(
sox_cmd
)
226
sox_cmd
= [SOX_PATH]
227
sox_cmd
+= _raw_format_args(channels_src, bits_src, rate_src)
228
sox_cmd
+= ['-v', '%f' % volume_scale]
229
sox_cmd
+= [path_src]
230
sox_cmd
+= _raw_format_args(channels_dst, bits_dst, rate_dst
[
all
...]
audio_helper.py
311
sox_cmd
= '%s | %s' % (sox_mixer_cmd, stat_cmd)
312
return utils.system_output(
sox_cmd
, retain_output=True)
[
all
...]
Completed in 695 milliseconds