diff --git a/plexpy/common.py b/plexpy/common.py index 8e50e800..05144ac8 100644 --- a/plexpy/common.py +++ b/plexpy/common.py @@ -361,8 +361,10 @@ NOTIFICATION_PARAMETERS = [ {'name': 'Stream Video Bitrate', 'type': 'int', 'value': 'stream_video_bitrate', 'description': 'The video bitrate (in kbps) of the stream.'}, {'name': 'Stream Video Bit Depth', 'type': 'int', 'value': 'stream_video_bit_depth', 'description': 'The video bit depth of the stream.'}, {'name': 'Stream Video Framerate', 'type': 'str', 'value': 'stream_video_framerate', 'description': 'The video framerate of the stream.'}, + {'name': 'Stream Video Full Resolution', 'type': 'str', 'value': 'stream_video_full_resolution', 'description': 'The video resolution of the stream with scan type.'}, {'name': 'Stream Video Ref Frames', 'type': 'int', 'value': 'stream_video_ref_frames', 'description': 'The video reference frames of the stream.'}, {'name': 'Stream Video Resolution', 'type': 'str', 'value': 'stream_video_resolution', 'description': 'The video resolution of the stream.'}, + {'name': 'Stream Video Scan Type', 'type': 'str', 'value': 'stream_video_scan_type', 'description': 'The video scan type of the stream.'}, {'name': 'Stream Video Height', 'type': 'int', 'value': 'stream_video_height', 'description': 'The video height of the stream.'}, {'name': 'Stream Video Width', 'type': 'int', 'value': 'stream_video_width', 'description': 'The video width of the stream.'}, {'name': 'Stream Video Language', 'type': 'str', 'value': 'stream_video_language', 'description': 'The video language of the stream.'}, @@ -464,8 +466,10 @@ NOTIFICATION_PARAMETERS = [ {'name': 'Video Bitrate', 'type': 'int', 'value': 'video_bitrate', 'description': 'The video bitrate of the original media.'}, {'name': 'Video Bit Depth', 'type': 'int', 'value': 'video_bit_depth', 'description': 'The video bit depth of the original media.'}, {'name': 'Video Framerate', 'type': 'str', 'value': 'video_framerate', 'description': 'The video framerate of the original media.'}, + {'name': 'Video Full Resolution', 'type': 'str', 'value': 'video_full_resolution', 'description': 'The video resolution of the original media with scan type.'}, {'name': 'Video Ref Frames', 'type': 'int', 'value': 'video_ref_frames', 'description': 'The video reference frames of the original media.'}, {'name': 'Video Resolution', 'type': 'str', 'value': 'video_resolution', 'description': 'The video resolution of the original media.'}, + {'name': 'Video Scan Tpye', 'type': 'str', 'value': 'video_scan_type', 'description': 'The video scan type of the original media.'}, {'name': 'Video Height', 'type': 'int', 'value': 'video_height', 'description': 'The video height of the original media.'}, {'name': 'Video Width', 'type': 'int', 'value': 'video_width', 'description': 'The video width of the original media.'}, {'name': 'Video Language', 'type': 'str', 'value': 'video_language', 'description': 'The video language of the original media.'}, diff --git a/plexpy/notification_handler.py b/plexpy/notification_handler.py index 0bba9a9c..3b910c74 100644 --- a/plexpy/notification_handler.py +++ b/plexpy/notification_handler.py @@ -784,8 +784,10 @@ def build_media_notify_params(notify_action=None, session=None, timeline=None, m 'stream_video_bitrate': notify_params['stream_video_bitrate'], 'stream_video_bit_depth': notify_params['stream_video_bit_depth'], 'stream_video_framerate': notify_params['stream_video_framerate'], + 'stream_video_full_resolution': notify_params['stream_video_full_resolution'], 'stream_video_ref_frames': notify_params['stream_video_ref_frames'], 'stream_video_resolution': notify_params['stream_video_resolution'], + 'stream_video_scan_type': notify_params['stream_video_scan_type'], 'stream_video_height': notify_params['stream_video_height'], 'stream_video_width': notify_params['stream_video_width'], 'stream_video_language': notify_params['stream_video_language'], @@ -890,8 +892,10 @@ def build_media_notify_params(notify_action=None, session=None, timeline=None, m 'video_bitrate': notify_params['video_bitrate'], 'video_bit_depth': notify_params['video_bit_depth'], 'video_framerate': notify_params['video_framerate'], + 'video_full_resolution': notify_params['video_full_resolution'], 'video_ref_frames': notify_params['video_ref_frames'], 'video_resolution': notify_params['video_resolution'], + 'video_scan_type': notify_params['video_scan_type'], 'video_height': notify_params['height'], 'video_width': notify_params['width'], 'video_language': notify_params['video_language'],