const MediaFileData = function()

in www/MediaFileData.js [31:37]


const MediaFileData = function (codecs, bitrate, height, width, duration) {
    this.codecs = codecs || null;
    this.bitrate = bitrate || 0;
    this.height = height || 0;
    this.width = width || 0;
    this.duration = duration || 0;
};