(length=8, suffix='')
| 193 | |
| 194 | |
| 195 | def rand_name(length=8, suffix=''): |
| 196 | name = binascii.b2a_hex(os.urandom(length)).decode('utf-8') |
| 197 | if suffix: |
| 198 | if not suffix.startswith('.'): |
| 199 | suffix = '.' + suffix |
| 200 | name += suffix |
| 201 | return name |
| 202 | |
| 203 | def cache_video(tensor, |
| 204 | save_file=None, |