{{ t('control.ingest') }}
{{
playlistStore.current.title ||
filename(playlistStore.current.source) ||
t('control.noClip')
}}
{{ t('player.duration') }}:
{{ secToHMS(playlistStore.current.duration) }} |
{{ t('player.in') }}:
{{ secToHMS(playlistStore.current.in) }} |
{{ t('player.out') }}:
{{ secToHMS(playlistStore.current.out) }}
| {{ t('player.shift') }}:
{{ secToHMS(playlistStore.shift) }}
{{ t('player.total') }}:
{{
secToHMS(
playlistStore.playlist.reduce(
(total, { in: seek, out }) => total + (out - seek),
0
)
)
}}