unsilence icon indicating copy to clipboard operation
unsilence copied to clipboard

Add location for TMP files

Open gar-onn opened this issue 3 years ago • 0 comments

Hi,

I use my RAM as /tmp, which i would like to use for the temporary storage.

I fixed this by adding

parser.add_argument("--tmp", type=convert_to_path(should_exist=False, should_parents_exist=True), default=".tmp",
                        help="Path to where the tmp files should be")

to ParseArguments.py, and this

+  tmpdir=args.tmp
-  continual = Unsilence(args.input_file)
+  continual = Unsilence(args.input_file,temp_dir=tmpdir)

to EntryPoint.py.

Sorry I am not used to editing others people's git's

gar-onn avatar Jan 17 '22 22:01 gar-onn