Skip to content

Commit ff9d4f7

Browse files
committed
Add PyAV license to debug screen
1 parent 3c082fa commit ff9d4f7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

auto_editor/__main__.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -305,9 +305,11 @@ def main() -> None:
305305

306306
import av
307307

308+
license = av._core.library_meta["libavcodec"]["license"]
309+
308310
print(f"OS: {plat.system()} {plat.release()} {plat.machine().lower()}")
309311
print(f"Python: {plat.python_version()}")
310-
print(f"PyAV: {av.__version__}")
312+
print(f"PyAV: {av.__version__} ({license})")
311313
print(f"Auto-Editor: {auto_editor.__version__}")
312314
return
313315

0 commit comments

Comments
 (0)