That's an old request and from both sides there were works to get it working. No idea why it isn't working yet.
Fediverse
A community to talk about the Fediverse and all it's related services using ActivityPub (Mastodon, Lemmy, KBin, etc).
If you wanted to get help with moderating your own community then head over to !moderators@lemmy.world!
Rules
- Posts must be on topic.
- Be respectful of others.
- Cite the sources used for graphs and other statistics.
- Follow the general Lemmy.world rules.
Learn more at these websites: Join The Fediverse Wiki, Fediverse.info, Wikipedia Page, The Federation Info (Stats), FediDB (Stats), Sub Rehab (Reddit Migration), Search Lemmy
It used to work to subscribe, but for some reason around 7 months ago, direct links dont seem to federate anymore:
https://lemmy.world/c/thelinuxexperiment_channel@tilvids.com
https://lemmy.ml/c/thelinuxexperiment_channel@tilvids.com?dataType=Post&sort=New
VS https://tilvids.com/a/thelinuxexperiment/videos
as an example. Im not sure if this is instance specific.
It works outside of lemmy. For example piefed:
https://piefed.social/c/thelinuxexperiment_channel@tilvids.com?sort=new&layout=list
works really well.
Seems to work fine on MBin as well - https://fedia.io/m/thelinuxexperiment_channel@tilvids.com
Yeah the more im looking at this, it seems to be lemmy in particular that is having issues. I was able to get to the channel on mastodon/GotoSocial/piefed/other federated services as well. No issues.
Tesseract has had PeerTube embed support for well over a year now. There's nothing stopping other UIs from supporting them 🤷🏻♂️
https://tesseract.dubvee.org/c/veronicaexplains@tinkerbetter.tube
They work great when sharing a PeerTube link in Lemmy, but I've had issues where subscribing to a Peertube channel either doesn't pull anything or only does an initial pull of a few videos. New posts don't seem to come in. That's some Lemmy to/from Peertube federation trouble. However, on the PT posts that do come in, i can upvote/downvote and comment on them.
Neat! Since it's come up a lot in !loops@midwest.social, are there any plans on having loops embed as well? Do you know if that's something the Lemmy devs would support once for everyone, or would every client have to add support for it?
I'm 100% planning on integrating loops, but there's a problem that needs solved. The embed data returned when querying a loops link doesn't include an embed video URL (which is how most but not all of the embed media is rendered). There's also nothing in the metadata for a loops link that can derive the video URL (which is a trick I use for some other embed media or where I don't want the user to have to use the special "share" links).
I've emailed the Loops team asking if they would add the oc:video
meta tag in the header info, but I have not heard back.
If that doesn't pan out, I have tested hotlinking the video URL, and I can get that to render.
Ex: https://dubvee.org/post/2293134
Since that works, and if all else fails, I can add a server-side API endpoint to Tesseract that will fetch the loops page, parse it for the video
tag, and essentially scrape the page to get the video link. That's messy, but I can make it work (though I'd prefer not to).
Cool, that's good to hear. The good news is that if it comes down to parsing the HTML, that's pretty straightforward. I've been poking at it, and it's nice and semantic (gets turned into a regular <video>
element by JS:
<video-player
poster-src="https://loopsusercontent.com/videos/85319640150794240/96649242004583579/8yjZniSLk64lxIPomBfUzr5SwMXRKGWXyHpTLruN.jpg"
video-src="https://loopsusercontent.com/videos/85319640150794240/96649242004583579/8yjZniSLk64lxIPomBfUzr5SwMXRKGWXyHpTLruN.720p.mp4"
username="thomasdorr"
profile-picture="https://loopsusercontent.com/avatars/85319640150794240/v0.jpg"
caption="Snowing in #DuluthMN"
tags=""
likes="8"
comments="1"
/>
And hopefully it'll get open source soon or have some way of filing bugs/feature requests. I saw that the dev created https://joinloops.org/ and is planning on putting a roadmap there soon.
I just put together a basic API endpoint and am successfully scraping the video URLs. Have a very rough integration working in dev, so I think this is going to be supported soon :)
Edit: Hell yeah!
Wow, that was quick, amazing! 🥳
Still fine tuning it, but I think it's gonna make it into the next release 🎉
Hell yeah, it'll be nice to have an answer other than "🤷" for people that want embedded loops 👍
As Admiral Pat mentions, embeds are easy enough. I don't know how Tesseract does it, but a low-tech solution is to just replace 'watch' in the URL with 'embed' and stick it in a iframe. From Lemmy's GitHub, it looks like there's been work on this, but I'm not familiar enough with it to know whether it's for future versions that haven't been released yet.
New videos used to come in to Lemmy as expected. There's been some regression that stopped it. It's possible to bring them in manually though (by searching for the URL), and - like with embeds - it's possible that it's been fixed but not yet released.
PT's videos channels are ActivityPub Group types like Lemmy's communities, but it doesn't handle federation the same way. It does it in a way that's more compatible with Mastodon. Lemmy's communities Announce everything they receive (posts, comments, votes, etc) and so if you receive that Announce, then as long as you trust the community, you can trust that the contents haven't been changed and process it. PT's video channels only Announce new posts (so on Mastodon, it appears as if the channel has Boosted content by the channel owner), but for everything else, it's a combination of sending out a 'post update' (which is essentially an invitation to query the outboxes it provides for votes and comments), and just flinging out the comment as is, without the HTTP signature. If you get that comment, then you can either use the LD signature that Mastodon includes to verify, or you can look at the ID, and fetch it from it's source. As such, Lemmy's federation model is mostly Push-based, whereas PeerTube's is a bit of Push, and a lot more Pull.