Quite possibly not. Remember that the admins running lemmy instances have very limited revenue so paying for servers is an issue. Some instances even encourage posting links instead of images to save on cost.
Videos are in a league of their own when it comes to size and therefore the server power needed. Lemmy probably can't afford it. Its the price we pay for freedom and no ads. You have to link videos.
Embedding videos doesn’t require local storage of videos. When you embed a YouTube video, you’re just linking a container which loads and displays the video from YouTube’s servers.
Yeah, my instance has a 100kb file size limit on images and recommends posting links as well. Not sure how that’s gonna play out long term. With sites like gfycat shutting down and nuking their content, I wonder if we’re exiting the era of free hosting and sharing as well.
I'm not sure if Lemmy already does it or not but I wouldn't mind if it also compressed attached pictures to save on storage and bandwidth like some other forums does (eg compress picture to <1mb).
You can use a userscript manager like greasymonkey to inject a javascript snippet that will hide images in comments which have obvious urls to gifs and replace them with actual links or hide them
here an example snippet:
(() => {
let timerID;
function onChange() {
Array.from(document.querySelectorAll('.comment-node img[src$=".gif"]')).forEach((e) => {
const src = e.getAttribute('src');
if (typeof src === 'string' && src.startsWith('http')) {
e.setAttribute('src', '');
const a = document.createElement('a');
a.innerText = 'link to gif';
a.href = src;
e.parentNode.appendChild(a);
}
});
}
// if we have many mution events, wait until the site has settled
function delayed_onChange() {
clearTimeout(timerID);
timerID = setTimeout(onChange, 500);
}
function init() {
// start observer
new MutationObserver(delayed_onChange).observe(document.body, {
attributes: false,
childList: true,
subtree: true,
});
delayed_onChange();
}
setTimeout(init, 500);
})();
I’m a bitter old man who dislikes inline gifs in the comments
I've waffled on this issue over the last 25 years, but agree that the option to show/block should still exist.
First I was against it.
Mostly because it was change - cluttering my once pristine BBSs
Then I enjoyed it.
Because it added some liveliness to the threads I read, and because I was in a smaller collective of folks that knew how to do it without being annoying.
Then I was against it again.
Because the forums/boards because overstuffed with people shitposting ONLY animated gifs.
Using wefwef at the moment (Apollo inspired) you can use it on android desktop and iPhone as it is a webapp and they show up as a link for me that I can then click and doesn’t embed it or inline it.
What I would do is upload videos to peertube instance (the peertube servers are better equipped for storing videos and most of them are free + offer more or less unlimited storage) and for pictures use plethora or pixelfied. Lemmy and mastodon are just one aspect of the whole fediverse, there's all sorts of instanced equipped to be all sorts of things
https://fediverse.info/
Without native video hosting, a lot of Reddit communities that are video centric (e.g. /r/CombatFootage) are not likely to migrate over here. I find myself missing video content here - it's a huge weakness of the Lemmy platform in general, and why I believe it will not fully replace Reddit as a thing.
IMO, adding native video support was a huge blunder on Reddit's part, and the expense of it is likely a factor in how desperate they are to squeeze money from their users now.
Let Lemmy and Kbin do what they are good at: aggregating links. Let others be good at hosting videos.
If the Web client can eventually be improved to properly embed Vimeo/YouTube/etc links so they can be played inline, that seems like a good enough experience to me. Making a good video player is hard. Reddit's native player sucks and Lemmy/Kbin are open source with even less resources.
I'm speaking from the perspective as a reader on /r/combatfootage, but the reason why you want native hosting is because you want to avoid dead links. Videos go missing all the time, and it's frustrating to go back to old posts and find that someone has removed the video. With native hosting you avoid that issue entirely.
One downside of using a 3rd party to host media is when it shuts down like gyfcat will in September, it will result in a lot of broken links with media forever lost.
Self hosting has less chance of losing the media at the cost of having to pay for media storage.
As a new website, I'd definitely prefer kbin or Lemmy to just focus on the core product and not self host media yet.
Lemmy can already follow PeerTube channels. I'm sure proper support for this will hit kbin soon, too. People can utilize existing PeerTube instances, or set up their own if they'd like to publish videos to the fedi.
Video centric subs existed before Reddit added their own hosting service. Just use a 3rd party service like YouTube. Or setup your own instance and pay for the hosting costs.
Reddit adding video hosting was probably the beginning of the downfall of Reddit. Hosting videos is expensive. So the focus shifted to milking more money out of the users
If those video-heavy communities want to host their own instances and cover the cost of hosting those videos, then that would be cool.
The thing with individual- and community-based hosting, though, is that the hidden costs of the social web become visible very quickly. Those were externalized to the VC backed vultures, and now those vultures are clamping down on us and demanding their fill.
We paid a price for things like free video hosting. Now we're aware of the costs and need to make conscious decisions around it, not friction free ones.
I think the community overrates how much it costs to store video. With proper compression (again, 1080p quality isn't necessary) you can store a ton of video files. You just need to figure out the balance between quality and storage space.
I've always hated reddit hosted videos, the performance was terrible. A link to youtube was always so much faster. I guess it made sense for subreddits that focused on video content, but I never cared about any of those.
I have seen couple videos, one was a drone killing Russian soldiers, other ones were for porn. So it may just be lack of interest, or lack of convenience to share videos.
You can go to/c/kidsbeingderps to see some gifs in action. It’s a new community so there’s not much, but hope it grows. Using Memmy app, I can see the gifs in action as I scroll, similar to Apollo.
This is why I prefer kbin over Lemmy. -- I'm posting this on kbin.social right now.
Kbin honestly looks like a drop replacement for Reddit. If you were not paying attention and had given Kbin the Reddit logo, you could easily mistake this for Reddit. Plus it is further developed along.