1
1
#!/usr/bin/env python3
2
2
3
+ import platform as plat
3
4
import re
4
5
import sys
5
6
from os import environ
6
7
from os .path import exists , isdir , isfile , lexists , splitext
7
8
from subprocess import run
8
9
9
10
import auto_editor
10
- from auto_editor .edit import edit_media
11
11
from auto_editor .utils .func import get_stdout
12
12
from auto_editor .utils .log import Log
13
13
from auto_editor .utils .types import (
@@ -329,15 +329,17 @@ def main() -> None:
329
329
return
330
330
331
331
if args .debug and not args .input :
332
- import platform as plat
332
+ print (f"OS: { plat .system ()} { plat .release ()} { plat .machine ().lower ()} " )
333
+ print (f"Python: { plat .python_version ()} " )
333
334
334
- import av
335
+ try :
336
+ import av
335
337
336
- license = av ._core .library_meta ["libavcodec" ]["license" ]
338
+ license = av ._core .library_meta ["libavcodec" ]["license" ]
339
+ print (f"PyAV: { av .__version__ } ({ license } )" )
340
+ except (ModuleNotFoundError , ImportError ):
341
+ print ("PyAV: error" )
337
342
338
- print (f"OS: { plat .system ()} { plat .release ()} { plat .machine ().lower ()} " )
339
- print (f"Python: { plat .python_version ()} " )
340
- print (f"PyAV: { av .__version__ } ({ license } )" )
341
343
print (f"Auto-Editor: { auto_editor .__version__ } " )
342
344
return
343
345
@@ -363,6 +365,8 @@ def main() -> None:
363
365
log .error (f"Option/Input file doesn't exist: { my_input } " )
364
366
paths .append (my_input )
365
367
368
+ from auto_editor .edit import edit_media
369
+
366
370
try :
367
371
edit_media (paths , args , log )
368
372
except KeyboardInterrupt :
0 commit comments