Skip to content
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
5 changes: 5 additions & 0 deletions mediadecoder/decoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,11 @@ def current_playtime(self):
"""Clocks current runtime in seconds."""
return self._clock.time

@property
def loop_count(self):
"""Indicates how often the clip has looped."""
return self._loop_count

@property
def loop(self):
"""Indicates whether the playback should loop."""
Expand Down