public VideoTrack(bool encrypted, string id, string initDataB64, string[] urls, int segments, string codec, int bitrate, int width, int height, double frameRate, ITrack.SecurityLevel securityLevel) { Encrypted = encrypted; Id = id; InitDataB64 = initDataB64; Urls = urls; Segments = segments; Codec = codec; Bitrate = bitrate; Width = width; Height = height; FrameRate = frameRate; SecurityLevel = securityLevel; }
public AudioTrack(bool encrypted, string id, string name, string initDataB64, string[] urls, int segments, string codec, int bitrate, int channels, string language, ITrack.SecurityLevel securityLevel) { Encrypted = encrypted; Name = name; Id = id; InitDataB64 = initDataB64; Urls = urls; Segments = segments; Codec = codec; Bitrate = bitrate; Channels = channels; Language = language; SecurityLevel = securityLevel; }