File size: 263 Bytes
06555b5
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
from typing import TypedDict

class _Meta(TypedDict):
    version: tuple[int, int, int]
    configuration: str
    license: str

library_meta: dict[str, _Meta]
library_versions: dict[str, tuple[int, int, int]]
ffmpeg_version_info: str

time_base: int