Skip to content

Commit

Permalink
Merge pull request #466 from GoSecure/fix-video-conversion
Browse files Browse the repository at this point in the history
Video conversion mishandled multiple events with same timestamp
  • Loading branch information
obilodeau committed Jan 19, 2024
2 parents c7938cd + 71e388c commit a664c43
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions pyrdp/player/Replay.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def registerEvent(pdu: PlayerPDU):
self.duration = (timestamps[-1] - referenceTime) / 1000.0

def __len__(self):
return len(self.events)
return len(self.getSortedEvents())

def __iter__(self):
return ReplayReader(self)
Expand All @@ -79,12 +79,24 @@ def getSortedEvents(self):
"""
return [e for _, events in sorted(self.events.items(), key=lambda pair: pair[0]) for e in events]

def getEventStream(self):
"""
Transform events (dict of list, timestamp: [positions], without repetition)
into an iterable eventStream (list of tuples, [(timestamp, position), ...], with repetition)
"""
return [(timestamp, pos)
for timestamp, positions in sorted(self.events.items(), key=lambda pair: pair[0])
for pos in positions
]


class ReplayReader:
def __init__(self, replay: Replay):
self.replay = replay
self.timestamps = self.replay.getSortedTimestamps()
self.eventPositions = self.replay.getSortedEvents()
self.eventStream = self.replay.getEventStream()

self.player = PlayerLayer()
self.observer = self.player.createObserver(onPDUReceived = lambda: None)
self.n = 0
Expand Down Expand Up @@ -122,8 +134,7 @@ def __next__(self):
if self.n >= len(self.replay):
raise StopIteration

timestamp = self.timestamps[self.n]
position = self.eventPositions[self.n]
timestamp, position = self.eventStream[self.n]
event = self.readEvent(position)

self.n += 1
Expand Down

0 comments on commit a664c43

Please sign in to comment.