Optimize seek functionality
FastPix Player offers configurable seek functionality attributes that help enhance how viewers interact with video content. By adjusting the seek settings, you can give users precise control over how they navigate through videos, making their experience more intuitive and efficient.
Fast-forwarding with precision
Attribute: forward-seek-offset
(value in seconds)
This attribute defines the default distance in seconds that the video will jump ahead when the fast-forward function is activated. While the default is typically set to 10 seconds, you can customize this value to better align with your content.
For example, setting forward-seek-offset="15"
will move the playback forward by 15 seconds whenever the fast-forward action is triggered.
Example configuration:
<fp-player
playback-id="{Playback_id}"
forward-seek-offset="15"
></fp-player>
Rewinding with ease
Attribute: backward-seek-offset (value in seconds)
Using this attribute you can specify the number of seconds the video will rewind when the user activates the rewind function. By default, this is set to 10 seconds, but you can modify it as needed. For instance, setting backward-seek-offset="5"
will make the rewind action move the playback 5 seconds back.
Example configuration:
<fp-player
playback-id="{Playback_id}"
backward-seek-offset="5"
></fp-player>
Customizing the rewind offset enhances the viewer’s ability to revisit specific parts of the video quickly. Whether users need to rewatch a key point or review content with precision, adjusting this offset ensures they can do so in increments that match their needs. You can set the rewind offset to correspond with the typical level of detail viewers need to revisit in your content.
Updated 1 day ago