The creator tags have migrated. All "prompter" and "artist" tags have been migrated to "creator". Please check your watched tags, as they might have disappeared from your watch lists due to the change.

Tantabus doesn't support MP4 files, right?

Crescent Pulsar

Relatively Creative
If that’s the case, can anyone recommend a free (or inexpensive) way to convert MP4 into WebP or something? (I’ve never used a video editor, so I’m completely clueless.)
tyto4tme4l

Something of an artist
I use this Terminal command in Linux Mint Cinnamon:
ffmpeg -i input.mp4 -c:v libvpx-vp9 -crf 20 -b:v 0 -c:a libopus output.webm
The breakdown:
input.mp4: Your input file.

output.webm: Your output file.

-c:v libvpx-vp9: Uses the high-quality VP9 video codec (standard for WebM).

-crf 20: This is the Quality Slider.

    Range is 0–63. Lower is better quality.

    30 is standard web quality.

    15–20 is "Visually Lossless" (High Quality).

    0 is technically lossless, but creates files that are way too big.

-b:v 0: Required for VP9 to let the CRF setting take control.

-c:a libopus: Use the high-quality Opus audio codec.
Syntax quick reference: **bold** *italic* ||hide text|| `code` __underline__ ~~strike~~ ^sup^ ~sub~

Detailed syntax guide