Skip to content

Added clarification on video content position / total length #993

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jul 14, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/connections/spec/video.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ The type of ad playing at the time of the event. Values can include 'pre-roll',

#### Position: `Integer`

The current index position **in seconds** of the playhead. If the playback is a livestream, check the documentation for relevant destinations for details on how to correctly pass the playhead position.
The current index position **in seconds** of the playhead, including the duration of any ads seen (if available). If the playback is a livestream, check the documentation for relevant destinations for details on how to correctly pass the playhead position.

#### Seek Position: `Integer`

Expand Down Expand Up @@ -618,10 +618,12 @@ The channel in which the video content is playing, ie. 'espn', 'my blog'.
An [ISO 8601 Date String](https://en.wikipedia.org/wiki/ISO_8601) representing the original air date or published date.

#### Position: `Integer`
The current index position **in seconds** of the playhead. If the playback is a livestream, check the documentation for relevant destinations for details on how to correctly pass the playhead position.
The current index position **in seconds** of the playhead into the content/asset. This position must exclude the duration of any ads played.

If the playback is a livestream, check the documentation for relevant destinations for details on how to correctly pass the playhead position.

#### Total Length: `Integer`
The total duration of the playback in seconds. This should include the duration of all your content and ad included in this playback session. For livestream playback, send `null`.
The total duration of the content/asset in seconds. This should exclude the duration of any ads included in the playback of this asset. For livestream playback, send `null`.

#### Bitrate: `Integer`
The current `kbps`.
Expand Down