For some reason this was player info, but it is now been replaced with all the variables specific for mediaInfo

This commit is contained in:
2017-09-07 23:48:06 +02:00
parent cd52d295b0
commit a8c6850863

View File

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