You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Suppose you have a Youtube video URL of the format https://www.youtube.com/watch?v=VIDEO_ID. Several channels mirror their content on Odysee/LBRY, a decentralized video platform with a blockchain indexing all available videos.
Odysee features and API where one can check if a video available on Youtube is also available on Odysee/LBRY with the following API endpoint:
This effectively points to the CDN's cached MP4 of the same video on Youtube. This could be inserted into the Youtube bridge either as a <video> embed, an enclosure, or both.
Note this is only available for mirrored channels, but it would allow for subscriptions to just provide a plain video file that can be downloaded and watched later.
I have tested this already on my own project called RSS-Librarian. Any thoughts?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Suppose you have a Youtube video URL of the format
https://www.youtube.com/watch?v=VIDEO_ID. Several channels mirror their content on Odysee/LBRY, a decentralized video platform with a blockchain indexing all available videos.Odysee features and API where one can check if a video available on Youtube is also available on Odysee/LBRY with the following API endpoint:
https://api.odysee.com/yt/resolve?video_ids=VIDEO_IDHere's an example from the 3Blue1Brown channel:
https://www.youtube-nocookie.com/watch?v=ldxFjLJ3rVYThis is the output from
https://api.odysee.com/yt/resolve?video_ids=ldxFjLJ3rVY{ "success": true, "error": null, "data": { "videos": { "ldxFjLJ3rVY": "escher's-most-mathematically-interesting#08d66bfb0154b122ecdfbae78064c3c79d535274" }, "channels": null } }The value of the video ID key
ldxFjLJ3rVYis the claim ID on Odysee. This ID can be inserted into another URL of this format:https://player.odycdn.com/api/v3/streams/free/' . str_replace('#', '/', $claimid) . '/video.mp4'This effectively points to the CDN's cached MP4 of the same video on Youtube. This could be inserted into the Youtube bridge either as a
<video>embed, an enclosure, or both.Note this is only available for mirrored channels, but it would allow for subscriptions to just provide a plain video file that can be downloaded and watched later.
I have tested this already on my own project called RSS-Librarian. Any thoughts?
Beta Was this translation helpful? Give feedback.
All reactions