Added variables for audioProfile, videoProfile, duration and container for a playback.

This commit is contained in:
2017-09-07 23:52:05 +02:00
parent 0370f051bc
commit eb2de340a3

View File

@@ -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;
}
}