-
Notifications
You must be signed in to change notification settings - Fork 10k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wrong upload_date on Odysee #28386
Comments
dstftw
added a commit
that referenced
this issue
Mar 9, 2021
github-actions bot
added a commit
to hellopony/youtube-dl
that referenced
this issue
Mar 10, 2021
* https://github.com/ytdl-org/youtube-dl: [shahid] fix format extraction(closes ytdl-org#28383) [lbry] add support for channel filters(closes ytdl-org#28385) [bandcamp] Extract release_timestamp [lbry] Extract release_timestamp (closes ytdl-org#28386) Introduce release_timestamp meta field (refs ytdl-org#28386) [pornhub] Detect flagged videos [pornhub] Extract formats from get_media end point (ytdl-org#28395)
This was referenced Mar 15, 2021
leshasmlesha
pushed a commit
to leshasmlesha/youtube-dl
that referenced
this issue
Apr 3, 2021
leshasmlesha
pushed a commit
to leshasmlesha/youtube-dl
that referenced
this issue
Apr 3, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Checklist
Verbose log
Description
When downloading e.g. this video, the
upload_date
does not match the date shown in the browser .While I'm not familiar with the code, it looks like the website gets it's date from a push request to
https://api.lbry.tv/api/v1/proxy?m=resolve
and the resulting json containscreation_timestamp
,timestamp
andrelease_time
. Bothcreation_timestamp
andtimestamp
are on the same day asupload_date
, howeverrelease_time
has the date shown in the browser.The same problem also exists for LBRY, but since they share the same back end, I assume that they also share an extractor and that fixing one of them will also fix the other one.
Edit: while writing this issue i was not aware that youtube-dl has a
release_date
field, however that field does not get populated from the Odysee extractor, so populating that would also be fine instead of changing the behavior ofupload_date
. Although the youtube and bitchute extractors also don't populate that field, so changingupload_date
might be preferable for consistency.The text was updated successfully, but these errors were encountered: