QMediaTimeInterval

PyQt5.QtMultimedia.QMediaTimeInterval

Description

The QMediaTimeInterval class represents a time interval with integer precision.

An interval is specified by an inclusive start() and end() time. These must be set in the constructor, as this is an immutable class. The specific units of time represented by the class have not been defined - it is suitable for any times which can be represented by a signed 64 bit integer.

The isNormal() method determines if a time interval is normal (a normal time interval has start() <= end()). A normal interval can be received from an abnormal interval by calling the normalized() method.

The contains() method determines if a specified time lies within the time interval.

The translated() method returns a time interval which has been translated forwards or backwards through time by a specified offset.

See also

QMediaTimeRange.

Methods

__init__()

TODO


__init__(QMediaTimeInterval)

TODO


__init__(int, int)

TODO


contains(int) → bool

TODO


end() → int

TODO


__eq__(QMediaTimeInterval) → bool

TODO


isNormal() → bool

TODO


__ne__(QMediaTimeInterval) → bool

TODO


normalized() → QMediaTimeInterval

TODO


start() → int

TODO


translated(int) → QMediaTimeInterval

TODO