Exact seconds for `tc` as a `Fraction`, derived from PTS * time base.
(tc: FrameTimecode)
| 329 | |
| 330 | |
| 331 | def _frame_timecode_seconds(tc: FrameTimecode) -> Fraction: |
| 332 | """Exact seconds for `tc` as a `Fraction`, derived from PTS * time base.""" |
| 333 | return Fraction(tc.pts) * tc.time_base |
| 334 | |
| 335 | |
| 336 | def write_scene_list_fcpx( |
no outgoing calls
no test coverage detected