There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

ChaoticNeutralCzech , (edited )

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:


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

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.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • [email protected]
  • lifeLocal
  • goranko
  • All magazines