-
Notifications
You must be signed in to change notification settings - Fork 8
/
video_list.go
358 lines (317 loc) · 7.97 KB
/
video_list.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
package main
import (
"bili-audio-downloader/bilibili"
"errors"
"strconv"
"github.com/tidwall/gjson"
)
// 视频列表
type VideoList struct {
Count int `json:"count"`
List []VideoInformation
}
// 视频数据结构
type VideoInformation struct {
Bvid string `json:"bvid"`
Cid int `json:"cid"`
Title string `json:"title"`
PageTitle string `json:"page_title"`
Format string `json:"format"`
PartId int `json:"part_id"`
IsAudio bool `json:"is_audio"`
Delete bool `json:"delete"`
Audio AudioInformation
Meta MetaInformation
}
type AudioInformation struct {
Quality int `json:"quality"`
Stream string `json:"stream"`
}
type MetaInformation struct {
SongName string `json:"song_name"`
Cover string `json:"cover"`
Author string `json:"author"`
Lyrics_path string `json:"lyrics_path"`
}
// 向列表中添加一个项目
func (list *VideoList) Add(video *VideoInformation) {
list.List = append(list.List, *video)
list.Count++
}
// 向列表中添加一个视频
func (VideoList *VideoList) AddVideo(sessdata, bvid string, downloadCompilation bool) error {
// 查询视频信息
video := new(bilibili.Video)
err := video.Query(sessdata, bvid)
if err != nil {
return err
}
// 处理分集数量
var total int = 1
if downloadCompilation {
total = len(video.Videos)
}
// 保存信息
for i := 0; i < total; i++ {
var list VideoInformation
list.Bvid = video.Bvid
list.Cid = video.Videos[i].Cid
list.Title = CheckFileName(video.Meta.Title)
list.PageTitle = CheckFileName(video.Videos[i].Part)
list.Format = AudioType.m4a
// 元数据
list.Meta.Cover = video.Meta.Cover
list.Meta.Author = video.Up.Name
list.Delete = false
// list.Meta.Lyrics_path =
list.IsAudio = false
// 处理音频标题(单 P 视频)
var SongName string
if total <= 1 {
// 单集使用视频标题
SongName, err = ExtractTitle(list.Title)
if err != nil {
SongName = list.Title
}
} else {
// 多集视频使用分集标题
SongName, err = ExtractTitle(list.PageTitle)
if err != nil {
SongName = list.PageTitle
}
}
list.Meta.SongName = SongName
VideoList.Add(&list)
}
return nil
}
// 向列表中添加一个音频项目
func (VideoList *VideoList) AddAudio(sessdata, auid string) error {
// 查询视频信息
audio := new(bilibili.Audio)
err := audio.Query(auid)
if err != nil {
return err
}
aucid, err := strconv.Atoi(auid)
if err != nil {
return err
}
// 保存信息
var list VideoInformation
list.Bvid = auid
list.Cid = aucid
list.Title = CheckFileName(audio.Meta.Title)
list.PageTitle = CheckFileName(audio.Meta.Title)
list.Format = AudioType.m4a
// 元数据
list.Meta.Cover = audio.Meta.Cover
list.Meta.Author = audio.Up.Author
list.Meta.Lyrics_path = audio.Meta.Lyric
list.Meta.SongName = audio.Meta.Title
list.IsAudio = true
list.Delete = false
VideoList.Add(&list)
return nil
}
// 向列表中添加一个收藏夹
func (VideoList *VideoList) AddCollection(sessdata, favlistId string, count int, downloadCompilation bool) error {
// 请求收藏夹基础数据,初始化循环
favlist, err := bilibili.GetFavListObj(favlistId, sessdata, 1, 1)
if err != nil {
return err
}
// 计算下载页数
var pageCount int
if count == 0 {
// 如果下载数量为 0 (全部下载)
count = favlist.Data.Info.Media_count
pageCount = count / 20
} else {
// 计算下载页数
pageCount = count / 20
}
// 非完整页面
if count%20 != 0 {
pageCount++
}
// 主循环
for i := 0; i < pageCount; i++ {
// 获取当前分页信息
favlist, err := bilibili.GetFavListObj(favlistId, sessdata, 20, i+1)
if err != nil {
return err
}
// 遍历分页
for j := 0; j < len(favlist.Data.Medias); j++ {
if favlist.Data.Medias[j].Type == 2 {
// 添加视频到列表
err := VideoList.AddVideo(sessdata, favlist.Data.Medias[j].Bvid, downloadCompilation)
if err != nil {
continue
}
} else {
// 添加收藏夹中的音频
err := VideoList.AddAudio(sessdata, strconv.Itoa(favlist.Data.Medias[j].Id))
if err != nil {
continue
}
}
}
}
return nil
}
// 向列表中添加一个视频合集
func (VideoList *VideoList) AddCompilation(sessdata string, mid, sid, count int, downloadCompilation bool) error {
// 请求收藏夹基础数据,初始化循环
favlist, err := bilibili.GetCompliationObj(mid, sid, 1, 1)
if err != nil {
return err
}
// 计算下载页数
var pageCount int
if count == 0 {
// 如果下载数量为 0 (全部下载)
count = favlist.Data.Meta.Total
pageCount = count / 20
} else {
// 计算下载页数
pageCount = count / 20
}
// 非完整页面
if count%20 != 0 {
pageCount++
}
// 主循环
for i := 0; i < pageCount; i++ {
// 获取当前分页信息
favlist, err := bilibili.GetCompliationObj(mid, sid, 20, i+1)
if err != nil {
return err
}
// 遍历分页
for j := 0; j < len(favlist.Data.Archives); j++ {
// 添加视频到列表
err := VideoList.AddVideo(sessdata, favlist.Data.Archives[j].Bvid, downloadCompilation)
if err != nil {
continue
}
}
}
return nil
}
// 向列表中添加个人主页视频
func (VideoList *VideoList) AddProfileVideo(sessdata string, mid, count int, downloadCompilation bool) error {
respJson, err := bilibili.GetProfileVideo(strconv.Itoa(mid), "1", "1", sessdata)
if err != nil {
return err
}
// 计算下载页数
var pageCount int
if count == 0 {
// 如果下载数量为 0 (全部下载)
count = int(gjson.Get(respJson, "data.page.count").Int())
pageCount = count / 20
} else {
// 计算下载页数
pageCount = count / 20
}
// 非完整页面
if count%20 != 0 {
pageCount++
}
// 主循环
for i := 0; i < pageCount; i++ {
pageSize := 20
// 处理非完整尾页
if i+1 == pageCount && count%20 != 0 {
pageSize = count % 20
}
// 获取当前分页信息
respJson, err := bilibili.GetProfileVideo(strconv.Itoa(mid), strconv.Itoa(i+1), "20", sessdata)
if err != nil {
return err
}
// 遍历分页
for j := 0; j < pageSize; j++ {
// 添加视频到列表
err := VideoList.AddVideo(sessdata, gjson.Get(respJson, "data.list.vlist."+strconv.Itoa(j)+".bvid").String(), downloadCompilation)
if err != nil {
continue
}
}
}
return nil
}
// 读取视频列表
func (VideoList *VideoList) Get(path ...string) error {
cfg := new(Config)
err := cfg.Get()
if err != nil {
return err
}
// 指定路径
filePath := cfg.FileConfig.VideoListPath
if len(path) > 0 {
filePath = path[0]
}
err = LoadJsonFile(filePath, VideoList)
if err != nil {
return err
}
return err
}
// 保存视频列表
func (VideoList *VideoList) Save(path ...string) error {
cfg := new(Config)
err := cfg.Get()
if err != nil {
return err
}
// 指定路径
filePath := cfg.FileConfig.VideoListPath
if len(path) > 0 {
filePath = path[0]
}
err = SaveJsonFile(filePath, VideoList)
if err != nil {
return err
}
return nil
}
// 获取视频流
// TODO:请求前检查数据
func (v *VideoInformation) GetStream(sessdata string) error {
// 请求信息
json, err := bilibili.GetVideoStream(v.Bvid, strconv.Itoa(v.Cid), sessdata)
if err != nil {
return err
}
// 错误检查
if CheckObj(int(gjson.Get(json, "code").Int())) {
return errors.New(gjson.Get(json, "message").String())
}
// 选择音频流
if gjson.Get(json, "data.dash.flac.audio").String() != "" {
v.Audio.Quality = int(gjson.Get(json, "data.dash.audio.id").Int())
v.Audio.Stream = gjson.Get(json, "data.dash.flac.audio.base_url").String()
v.Format = AudioType.flac
return nil
}
v.Audio.Quality = int(gjson.Get(json, "data.dash.audio.0.id").Int())
v.Audio.Stream = gjson.Get(json, "data.dash.audio.0.base_url").String()
return nil
}
func (videoList *VideoList) Tidy() {
if len(videoList.List) == 0 {
return
}
result := videoList.List[:0]
for _, video := range videoList.List {
if !video.Delete {
result = append(result, video)
}
}
videoList.List = result
videoList.Count = len(result)
}