Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Backups
youtube-dl
Commits
ad06b99d
Unverified
Commit
ad06b99d
authored
Sep 19, 2020
by
Sergey M․
Browse files
[extractor/common] Extract author as uploader for VideoObject in _json_ld
parent
540b9f51
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
0 deletions
+1
-0
youtube_dl/extractor/common.py
youtube_dl/extractor/common.py
+1
-0
No files found.
youtube_dl/extractor/common.py
View file @
ad06b99d
...
...
@@ -1268,6 +1268,7 @@ class InfoExtractor(object):
'thumbnail'
:
url_or_none
(
e
.
get
(
'thumbnailUrl'
)
or
e
.
get
(
'thumbnailURL'
)),
'duration'
:
parse_duration
(
e
.
get
(
'duration'
)),
'timestamp'
:
unified_timestamp
(
e
.
get
(
'uploadDate'
)),
'uploader'
:
str_or_none
(
e
.
get
(
'author'
)),
'filesize'
:
float_or_none
(
e
.
get
(
'contentSize'
)),
'tbr'
:
int_or_none
(
e
.
get
(
'bitrate'
)),
'width'
:
int_or_none
(
e
.
get
(
'width'
)),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment