(seconds: number)
| 165 | } |
| 166 | |
| 167 | function formatCommentTimecode(seconds: number): string { |
| 168 | return formatTimecode(seconds, { |
| 169 | fractionalDigits: 1, |
| 170 | trimZeroFraction: true, |
| 171 | }); |
| 172 | } |
| 173 | |
| 174 | function formatPlaybackSpeed(speed: number): string { |
| 175 | return `${speed}x`; |
no test coverage detected