Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 419 Bytes

overriddenduration.md

File metadata and controls

11 lines (10 loc) · 419 Bytes

Overridden duration

If overriddenDuration is set then video player will play video until this duration. This feature can be used to cut long videos into smaller one.

BetterPlayerDataSource dataSource = BetterPlayerDataSource(
    BetterPlayerDataSourceType.network,
    Constants.elephantDreamVideoUrl,
    ///Play only 10 seconds of this video.
    overriddenDuration: const Duration(seconds: 10),
);