Add support for lbry.tv
See original GitHub issueChecklist
- I’m reporting a new site support request
- I’ve verified that I’m running youtube-dl version 2020.01.01
- I’ve checked that all provided URLs are alive and playable in a browser
- I’ve checked that none of provided URLs violate any copyrights
- I’ve searched the bugtracker for similar site support requests including closed ones
Example URLs
- Single video: https://lbry.tv/@christitustech:5/lbry-vs-youtube:e
- Single video: https://lbry.tv/@Lunduke:e/lbry-the-viable-youtube-alternative-in:4
- Single video: https://lbry.tv/@DesktopMonologues:b/why-windows-users-are-switching-to-linux:2
Description
lbry.tv is a new open-source video publishing site. The site is still a bit funky, sometimes videos load on the first try sometimes not, and sometimes they fail halfway through watching them.
Issue Analytics
- State:
- Created 4 years ago
- Reactions:29
- Comments:8
Top Results From Across the Web
Add support for LBRY.tv · Issue #3708 · steemit/condenser · GitHub
Sadly, I couldn't find a dev manual, but LBRY.tv does have an option to embed videos (by pressing the share button on any...
Read more >How To Enable Claim Support On LBRY TV - YouTube
How to enable claim support on LBRY TV - LBRY TV tutorial. Join LBRY through this link: https:// lbry. tv /$/invite/@cryptomining:0 Buy Lbc: ......
Read more >Added Support for lbry.tv - Indie Hackers
Up until now the EveryTube addon only supported listing subscribed videos from bitchute.com. I've just added support for lbry.tv / odysee.com. https://c...
Read more >LBRY Desktop and odysee.com basics
Currently, the LBRY in-app player supports MP4 videos, MP3 files, images, GIF images, HTML, and text files. Even though it doesn't support other...
Read more >How do I publish content to LBRY?
Enter a Description for your content. · Choose a Thumbnail or Thumbnail URL for your content. · Next you can add Tags to...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Supported in the latest version(2020.11.17).
If you are on linux try:
youtube-dl $(curl $1 | grep embed | sed 's/.*embed\(.*\)">.*/\1/' | cut -d '"' -f1 | awk -v prefix="https://cdn.lbryplayer.xyz/api/v2/streams/free" '{print prefix $0}')
Where $1 is the URL of the lbry.tv video you want to download. For example:
youtube-dl $(curl https://lbry.tv/@Hackernol:7/HACKITAT---9-LAYERS-OF-POLITICAL-HACKING:5?r=ATqhndQnpGqW3Sy6LhGRDxqgEMbe8Ugv | grep embed | sed 's/.*embed\(.*\)">.*/\1/' | cut -d '"' -f1 | awk -v prefix="https://cdn.lbryplayer.xyz/api/v2/streams/free" '{print prefix $0}')
You can use it along with mpv and ydtl for streaming or put that in a bash script if you want, lets say lbry.sh. So you just do:
./lbry.sh https://lbry.tv/@Hackernol:7/HACKITAT---9-LAYERS-OF-POLITICAL-HACKING:5?r=ATqhndQnpGqW3Sy6LhGRDxqgEMbe8Ugv
Hope this may help, and please excuse my poor english, bye!