mirror of https://github.com/leiurayer/downkyi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1016 B
36 lines
1016 B
using DownKyi.Core.BiliApi.Models;
|
|
using Newtonsoft.Json;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DownKyi.Core.BiliApi.VideoStream.Models
|
|
{
|
|
public class PlayUrlDashVideo : BaseModel
|
|
{
|
|
[JsonProperty("id")]
|
|
public int Id { get; set; }
|
|
[JsonProperty("baseUrl")]
|
|
public string BaseUrl { get; set; }
|
|
[JsonProperty("backupUrl")]
|
|
public List<string> BackupUrl { get; set; }
|
|
// bandwidth
|
|
[JsonProperty("mimeType")]
|
|
public string MimeType { get; set; }
|
|
// mime_type
|
|
[JsonProperty("codecs")]
|
|
public string Codecs { get; set; }
|
|
[JsonProperty("width")]
|
|
public int Width { get; set; }
|
|
[JsonProperty("height")]
|
|
public int Height { get; set; }
|
|
[JsonProperty("frameRate")]
|
|
public string FrameRate { get; set; }
|
|
// frame_rate
|
|
// sar
|
|
// startWithSap
|
|
// start_with_sap
|
|
// SegmentBase
|
|
// segment_base
|
|
// codecid
|
|
}
|
|
}
|