• @[email protected]
    link
    fedilink
    English
    15
    edit-2
    2 months ago

    You can. Most instances run image hosting too.

    ![International Standard Shooting Goggles Patch Eye Mask Archery Target Aid](https://i.servimg.com/u/f41/19/88/36/99/img_0927.jpg)
    

    International Standard Shooting Goggles Patch Eye Mask Archery Target Aid

    • @Bertuccio
      link
      11
      edit-2
      2 months ago

      Oh, do you need the “!” in front of the link? I tried something like that at first and it showed nothing

      • Codex
        link
        82 months ago

        That’s standard Markdown syntax for embedded links: instead of linking, just show the content. Usually only for images but I think some sites will allow audio (and video?!) embeds as well.

        • @[email protected]
          link
          fedilink
          English
          7
          edit-2
          2 months ago

          Yes, video too, but support by clients is inconsistent (some don’t show playback controls and loop it like a gif, some just display a link). By default, the media hosting server allows for up to 900 frames (up to 30-37 seconds of smooth video) and 2160p; the audio track is removed; the filesize limit is 40 MiB (most instance owners set it way lower, perhaps 5 or 10). There is a caveat: all media must be encoded to a single codec of the instance owner’s choice: VP9 (default), H264, H265, AV1, or VP8. Uploading in one of the others is possible but beware: it is going to be reencoded by the server, and if the process doesn’t finish within the timeout of 30 seconds, you get the error ffmpeg timed out. In 30 seconds, a server without HW acceleration will typically only process a very short video (for feddit.org, it’s about 1 MiB’s worth of H265) so anything longer than a few seconds will fail! To take advantage of the full upload limit, you must reencode the video yourself to VP9 or whatever other codec is set (you can tell by uploading a tiny file in any codec and inspecting the output).

          You can use the following command to reencode the video to VP9:

          ffmpeg -i input.mkv \
            -r 899/<duration> `only use this for longer videos where you need to reduce frames to 900` \
            -c:a libopus -b:a 48k `audio will probably be removed anyway` \
            -c:v vp9 \
            -crf 32 `constant quality mode, lower is better quality, try finding lowest value satisfying filesize limit` \
            output.webm
          

          FFmpeg can do much more to the video: resize, crop, trim etc. Look it up. If you want GUI, try Handbrake.

          Alternatively, just use a more lenient hoster like GitHub or catbox.moe and embed the file from there, which has no aforementioned limits: ![Big Buck Bunny 4K](https://upload.wikimedia.org/wikipedia/commons/c/c0/Big_Buck_Bunny_4K.webm) will embed a 10-minute 4K movie.

          • Codex
            link
            12 months ago

            Wow! Thanks for the detailed response, I definitely did not know all that about it, nor would have thought to look it up.