Bugfix api/plex/playing #21 #23

Merged
KevinMidboe merged 5 commits from bugfix_api/plex/playing into master 2017-09-07 21:57:42 +00:00
Showing only changes of commit a8c6850863 - Show all commits

View File

@@ -1,12 +1,14 @@
class MediaInfo {
constructor(device, platform) {
this.device = undefined;
this.platform = undefined;
this.ip = undefined;
this.product = undefined;
this.title = undefined;
this.state = undefined;
constructor() {
this.duration = undefined;
this.height = undefined;
this.width = undefined;
this.bitrate = undefined;
this.resolution = undefined;
this.framerate = undefined;
this.protocol = undefined;
this.container = undefined;
this.audioCodec = undefined;
}
}