mirror of
https://github.com/master-of-zen/Av1an.git
synced 2024-11-25 02:29:40 +00:00
Added -keep . Leaving temporally folder after encoding is done
This commit is contained in:
parent
0a3614c395
commit
e798e92d96
1 changed files with 3 additions and 2 deletions
3
av1an.py
3
av1an.py
|
@ -82,7 +82,7 @@ class Av1an:
|
|||
parser.add_argument('--scenes', '-s', type=str, default=self.scenes, help='File location for scenes')
|
||||
parser.add_argument('--resume', '-r', help='Resuming previous session', action='store_true')
|
||||
parser.add_argument('--no_check', '-n', help='Do not check encodings', action='store_true')
|
||||
|
||||
parser.add_argument('--keep', help='Keep temporally folder after encode', action='store_true')
|
||||
# Pass command line args that were passed
|
||||
self.args = parser.parse_args()
|
||||
|
||||
|
@ -485,6 +485,7 @@ class Av1an:
|
|||
self.log('Concatenated\n')
|
||||
|
||||
# Delete temp folders
|
||||
if not self.args.keep:
|
||||
shutil.rmtree(self.temp_dir)
|
||||
|
||||
except Exception:
|
||||
|
|
Loading…
Reference in a new issue