for the longest time a lot of images posted to reddit were really posted on imgur (until they started hosting it on their own, too). is there a fediverse’d imgur we should be using to complement lemmy? its docs say it shouldn’t be used for large images and videos.

pixelfed seems more like a federated flickr or instagram, not just simple image/album hosting like imgur. thoughts? ty 💙

  • @[email protected]
    link
    fedilink
    English
    11
    edit-2
    1 year ago

    Well, an imgur alternative does not need to be federated, if it’s to be used to only host large content. Imgur does not have any real social features, as far as I understand, either.

    So any simple image/video hosting tool should do. I mean, you could also just use imgur!

    • @[email protected]
      link
      fedilink
      English
      31 year ago

      Imgur does have comments and votes. They tried to make it an actual community… It didn’t work, for the most part.

      There was (is?) a subreddit about random imgur comments who didn’t understand that people used it just as a hosting website to share images with other communities, notably reddit. I think it was lost on imgur or something? Haven’t been there in a while and can’t find it. I can find “Ignorant imgur” but it’s so inactive, I don’t think that is it.

    • dogOPA
      link
      fedilink
      English
      21 year ago

      fair! even imgur has made some big changes like a new rule against nsfw. it makes me think the same garbage that happened with twitter and reddit could happen to imgur

        • dogOPA
          link
          fedilink
          English
          21 year ago

          imo that’s not good enough anymore for the web at its current age. decentralization works and is the way to go. communities shouldn’t suffer from the gross actions of large companies. that’s why a federated and decentralized imgur clone would be good, too :)

          • Andreas
            link
            fedilink
            English
            41 year ago

            Imgur was created as an image host for Reddit back when Reddit did not support direct image uploads, so any self-hostable image storage solution including Lemmy’s built-in pict-rs will work. Federation of the file host is not necessary as there is no need to mirror the files between instances, they are linked to federated posts and the file can be viewed directly on the uploader’s instance. As for the community features of Imgur, the “community” on Imgur is, as one Redditor put it, “the sewer rats who don’t realize they’re living in the sewer”.

            • secretspecter
              link
              fedilink
              English
              11 year ago

              Indie and self-hosted object storage providers could help diversify who is storing the end data (ideally less Amazon and big corps). I’ve heard things about https://min.io but haven’t dug into it beyond that. And pict-rs instances using filesystem/sled are already set, although cost for disk is more expensive than objects I think?

              • Andreas
                link
                fedilink
                English
                11 year ago

                Yes, by default files are stored directly on a volume on the disk but it’s possible to configure pict-rs to use object storage, although there isn’t much documentation for configuring and using it with Lemmy yet. Kbin has support for S3 storage in its environment variables. I’ll do some research and see if I can add it to Lemmy.

  • Peter1986C
    link
    fedilink
    English
    81 year ago

    Because of the social aspects it may be more like Instagram than like Imgur, but there is Pixelfed.

  • Löhwe
    link
    fedilink
    English
    7
    edit-2
    1 year ago

    Have a look at PixelFed, not being an Imgur user I can’t tell if it will meet all your requirements but it’s definitely a great way to publish images in the fediverse

    • dogOPA
      link
      fedilink
      English
      51 year ago

      pixelfed looks like it is catered towards creative artists who make images. they deserve their own tool/space, of course, and imgur was never really catered to anything except whatever images and gifs you can throw at it

  • Ananace
    link
    fedilink
    English
    71 year ago

    Honestly, something IPFS-based would probably be a reasonable answer, but I don’t think anyone’s made a generic image hosting system on it yet.

    • dogOPA
      link
      fedilink
      English
      1
      edit-2
      1 year ago

      agree, my first thought was ipfs. would be cool if ipfs gave the uploader the power to delete/revoke

      • Ananace
        link
        fedilink
        English
        31 year ago

        The design of IPFS - using content-based addressing with append-only interactions - makes deleting/revoking basically impossible to implement, let alone guarantee.
        There’s the dat protocol (now hypercore by holepunch) that handled this better, with content being addressed by key instead, so that the owner of the private part of the key could modify content after “uploading” it.

        Unfortunately, hypercore still hasn’t really reached that stable point where you’d like it to be for developing a software like this on top of it.

        • dogOPA
          link
          fedilink
          English
          21 year ago

          you’re absolutely right about ipfs. its mission of forever preserving the web is awesome but it means that data will last indefinitely (and every version of every piece of data lol)

          i had never heard of hypercore. that’s pretty cool. maybe lemmy will get some nice fixes for storage, image, video management to make instance media hosting easy for the instance maintainers so they can follow the same path reddit did of hosting post media. that way, media not only stays with the instance but can be edited/deleted by the users

  • @[email protected]
    link
    fedilink
    English
    21 year ago

    I think some sort of p2p solution would be really cool. You could basically allocate a certain amount of storage on your server and images would be stored and grabbed by peers as needed. Something like BitTorrent where multiple peers have the same content to reduce load. Not sure if it already exists or is even practically possible.

    • Skull giver
      link
      fedilink
      English
      21 year ago

      It exists/existed: https://www.bittorrent.com/token/bittorrent-file-system/

      I don’t think anyone ever used it.

      IPFS can work in a similar way but storage is a lot less persistent. You need to tell the software manually to keep certain files or they’ll disappear from your server. However, there are paid IPFS servers that will keep your images around for you, for all of IPFS to retrieve.

      Most of IPFS seemed to be served from two gateways (Cloudflare + IPFS.io) because those are the fastest and most likely to have cached the files you’re looking for. However, you can get the file from the IPFS network directly if you’re willing to wait a while (between 10 seconds and a minute in my experience).

    • dogOPA
      link
      fedilink
      English
      21 year ago

      someone beat me to it but yeah, i think something like ipfs is trying to be the sort of p2p decentralized storage solution. i like your thinking of bittorrent :D