Advertisement ยท 728 ร— 90

Posts by Kosteaz

consistency across frames is always the bottleneck in video editing. nice to see image priors being leveraged for this - how does it handle motion?

6 hours ago 0 0 0 0
Batch convert images to WebP

Batch convert images to WebP

Your designer sends you 40 PNGs. Your site needs WebP.

You could write a bash script with ffmpeg flags.

Or upload all 40, type "convert to webp" and grab a coffee.

I built the second option.
https://mediamelt.it

#WebDev

1 day ago 1 0 0 0

Covering both in one is almost always the better call. Curious how you managed to keep the pacing balanced with two different topics

1 day ago 0 0 0 0
Resize video to 1080p

Resize video to 1080p

Your terminal:
ffmpeg -i input.mov -vf scale=1920:1080 -c:v libx264 -crf 23 output.mp4

With MediaMelt:
"resize to 1080p"

Same result. Zero googling.

https://mediamelt.it

#WebDev

3 days ago 0 0 0 0
Extract audio from video

Extract audio from video

Getting the audio out of a video file:

ffmpeg -i video.mp4 -vn -c:a libmp3lame -b:a 320k audio.mp3

Or on MediaMelt:
"extract audio as mp3"

https://mediamelt.it

#ContentCreation

4 days ago 0 0 0 0

lol yeah video editing killed me for anything less than a solid mouse. trackballs feel like a joke after that

4 days ago 1 0 0 0

Your storyboarding eye is really strong - that skill is gold in animation/games/VFX. Flow and timing at that stage make or break the final product. Good luck with the hunt! ๐ŸŽฌ

1 week ago 1 0 1 0

Quick guide to video formats:

MP4 โ†’ works everywhere
WebM โ†’ lightweight for web
MOV โ†’ Mac editing
MKV โ†’ max quality

Don't know which one? Just describe what you need in plain English.

https://mediamelt.it

#VideoEditing #WebDev

1 week ago 2 0 0 0

Client sends you 20 videos. Website needs them under 5MB each.

Option A: Write a bash loop, google FFmpeg flags, pray it works
Option B: Upload all 20, type "compress for web"

I built the Option B.
https://mediamelt.it โ€” free.

#FFmpeg #WebDev

1 week ago 0 0 0 0
Advertisement

I got tired of googling FFmpeg flags.

So I built a tool where you just type:
"convert to mp4"

...and it generates the right ffmpeg command for you. AI does the translation.

Free to use: mediamelt.it

#FFmpeg #WebDev

1 week ago 1 0 0 0