wechat-article / types /video.d.ts
asemxin2000's picture
Deploy wechat-article-exporter to Space
6e41657 verified
Raw
History Blame Contribute Delete
719 Bytes
export interface VideoPageInfo {
video_id: string;
// 是否为内嵌视频
is_mp_video: number;
// 内嵌视频是否删除
is_mp_video_delete: number;
cover_url: string;
cover_url_1_1: string;
cover_url_16_9: string;
mp_video_trans_info: VideoTransInfo[];
}
export interface VideoTransInfo {
duration_ms: number;
filesize: number;
format_id: number;
url: string;
video_quality_level: number;
video_quality_wording: string;
width: number;
height: number;
}
export interface AudioResource {
type: 'cover' | 'audio';
uuid: string;
url: string;
}
export interface VideoResource {
type: 'cover' | 'video';
uuid: string;
url: string;
}