From 4cbb49059ace844909542659de555c069c5ace45 Mon Sep 17 00:00:00 2001 From: Suvorov Daniil Date: Sun, 30 May 2021 10:25:03 +0300 Subject: [PATCH] feat: VideoVideoFiles add 2k and 4k fields --- object/video.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/object/video.go b/object/video.go index f58240f3..0816af24 100644 --- a/object/video.go +++ b/object/video.go @@ -114,6 +114,8 @@ type VideoSnippet struct { type VideoVideoFiles struct { External string `json:"external"` // URL of the external player Mp4_1080 string `json:"mp4_1080"` // URL of the mpeg4 file with 1080p quality + Mp4_1440 string `json:"mp4_1440"` // URL of the mpeg4 file with 2k quality + Mp4_2160 string `json:"mp4_2160"` // URL of the mpeg4 file with 4k quality Mp4_240 string `json:"mp4_240"` // URL of the mpeg4 file with 240p quality Mp4_360 string `json:"mp4_360"` // URL of the mpeg4 file with 360p quality Mp4_480 string `json:"mp4_480"` // URL of the mpeg4 file with 480p quality