listen: not-wake-up: increase the random value's range
the old range is too narrow and therefore make data override often happen. Signed-off-by: Wu Zhangjin <wuzhangjin@gmail.com>pull/101/head
parent
83bd6804c9
commit
523eb719f1
|
@ -41,7 +41,7 @@ usage = '''
|
|||
Samples between inferences
|
||||
'''
|
||||
|
||||
session_id, chunk_num = '%03d' % randint(0, 999), 0
|
||||
session_id, chunk_num = '%09d' % randint(0, 999999999), 0
|
||||
|
||||
|
||||
def main():
|
||||
|
|
|
@ -43,7 +43,7 @@ usage = '''
|
|||
Prefix for saved filenames
|
||||
'''
|
||||
|
||||
session_id, chunk_num = '%03d' % randint(0, 999), 0
|
||||
session_id, chunk_num = '%09d' % randint(0, 999999999), 0
|
||||
|
||||
|
||||
def main():
|
||||
|
|
Loading…
Reference in New Issue