Per spec https://w3c.github.io/mediasession/#the-mediapositionstate-dictionary > positive infinity can be used to indicate media without a defined end such as live playback but when I do navigator.mediaSession.setPositionState({ duration: Infinity }) I get a > TypeError: The provided value is non-finite
<rdar://problem/113493417>
This is (currently) intentional (and the spec text is confusing). The MediaSession specification defines `duration` to be a `double`, whereas the HTMLMediaElement.duration is defined as a `unrestricted double` (thus allowing +Infinity). This issue was raised recently in the Media WG: <https://github.com/w3c/mediasession/issues/252> We'll update the definition (to allow +Infinity) when the spec changes.
Web-Spec thread just got closed last week: https://github.com/w3c/mediasession/pull/304 with one follow-up: https://github.com/w3c/mediasession/issues/315