mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2026-05-03 22:16:10 +00:00
[ie/vk:uservideos] Fix extraction
Authored by: bashonly
This commit is contained in:
parent
75133bfd66
commit
86bf208c55
@ -561,7 +561,11 @@ class VKUserVideosIE(VKBaseIE):
|
|||||||
'oid': page_id,
|
'oid': page_id,
|
||||||
'section': section,
|
'section': section,
|
||||||
})[0][section]
|
})[0][section]
|
||||||
count += video_list_json['count']
|
new_count = video_list_json['count']
|
||||||
|
if not new_count:
|
||||||
|
self.to_screen(f'{page_id}: Skipping {total - count} unavailable videos')
|
||||||
|
break
|
||||||
|
count += new_count
|
||||||
video_list = video_list_json['list']
|
video_list = video_list_json['list']
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user