• Codex
    link
    81 month 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
      1 month 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
        11 month ago

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