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