From eb2de340a3bc833b403c263f0c1bd98c4c1969d8 Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Thu, 7 Sep 2017 23:52:05 +0200 Subject: [PATCH] Added variables for audioProfile, videoProfile, duration and container for a playback. --- seasoned_api/src/plex/stream/convertStreamToPlayback.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/seasoned_api/src/plex/stream/convertStreamToPlayback.js b/seasoned_api/src/plex/stream/convertStreamToPlayback.js index 555a07e..f4fae2d 100644 --- a/seasoned_api/src/plex/stream/convertStreamToPlayback.js +++ b/seasoned_api/src/plex/stream/convertStreamToPlayback.js @@ -4,6 +4,11 @@ class convertStreamToPlayback { this.width = plexStream.width; this.height = plexStream.height; this.decision = plexStream.decision; + this.audioProfile = plexStream.audioProfile; + this.videoProfile = plexStream.videoProfile; + this.duration = plexStream.duration; + this.container = plexStream.container; + } }