mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-13 07:27:09 +00:00
Merge pull request #262 from shawnsethi/patch-1
Add sourceVideoCodec to TranscodeSession
This commit is contained in:
commit
75bf75f703
1 changed files with 1 additions and 0 deletions
|
@ -297,6 +297,7 @@ class TranscodeSession(PlexObject):
|
|||
self.remaining = cast(int, data.attrib.get('remaining'))
|
||||
self.speed = cast(int, data.attrib.get('speed'))
|
||||
self.throttled = cast(int, data.attrib.get('throttled'))
|
||||
self.sourceVideoCodec = data.attrib.get('sourceVideoCodec')
|
||||
self.videoCodec = data.attrib.get('videoCodec')
|
||||
self.videoDecision = data.attrib.get('videoDecision')
|
||||
self.width = cast(int, data.attrib.get('width'))
|
||||
|
|
Loading…
Reference in a new issue