CFR video positions should also be Timecode-backed with PTS support.
(test_movie_clip: str)
| 209 | |
| 210 | |
| 211 | def test_cfr_position_is_timecode(test_movie_clip: str): |
| 212 | """CFR video positions should also be Timecode-backed with PTS support.""" |
| 213 | video = open_video(test_movie_clip, backend="pyav") |
| 214 | assert video.read() is not False |
| 215 | assert isinstance(video.position._time, Timecode) |
| 216 | |
| 217 | |
| 218 | def test_cfr_frame_num_exact(test_movie_clip: str): |
nothing calls this directly
no test coverage detected