Information about the scene being extracted.
| 111 | |
| 112 | @dataclass |
| 113 | class SceneMetadata: |
| 114 | """Information about the scene being extracted.""" |
| 115 | |
| 116 | index: int |
| 117 | """0-based index of this scene.""" |
| 118 | start: FrameTimecode |
| 119 | """First frame.""" |
| 120 | end: FrameTimecode |
| 121 | """Last frame.""" |
| 122 | |
| 123 | |
| 124 | PathFormatter = ty.Callable[[VideoMetadata, SceneMetadata], str] |
no outgoing calls
no test coverage detected