Skip to content

Commit 52d025e

Browse files
committed
rec_unlimited example: prefix "delme_" to file name
... in order to make it easier to delete unneeded files.
1 parent 80036aa commit 52d025e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/rec_unlimited.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def int_or_str(text):
4949
# soundfile expects an int, sounddevice provides a float:
5050
args.samplerate = int(device_info['default_samplerate'])
5151
if args.filename is None:
52-
args.filename = tempfile.mktemp(prefix='rec_unlimited_',
52+
args.filename = tempfile.mktemp(prefix='delme_rec_unlimited_',
5353
suffix='.wav', dir='')
5454
q = queue.Queue()
5555

0 commit comments

Comments
 (0)