Вхід Реєстрація
Реклама
Ваше рекламне місце
Забронюйте цей слот без конкуренції на обраний період.
Купити рекламу →
Логотип телеграм спільноти - Котеки, репости і репости котеків
Додано 24 вер 2021

Котеки, репости і репости котеків

@CnBscrapyard
Кількість підписників: 1 840
Фото: 31,900
Відео: 3,200
Посилання: 5,810
Опис:
Чат @kotorechat Адмін: @Maxym_Chabaraj Я НЕ БУДУ ПЛАТИТИ ЗА НАКРУТКУ ПІДПИСОК /kotorepost.bsky.social Той же шітпост, тільки відео: youtube.com/c/Шушпанзавр Погодувати адміна: t.me/CnBscrapyard/26836
Джерело

Котеки, репости і репости котеків | Show HN: Ez FFmpeg – Video editing in plain English (Score: 155+ in 5 ...

Логотип телеграм спільноти - Котеки, репости і репости котеків Котеки, репости і репости котеків @CnBscrapyard
219 Охват/переглядів 2025-12-27 18:57 Повідомлення №50244
Show HN: Ez FFmpeg – Video editing in plain English (Score: 155+ in 5 hours)Link: https://readhacker.news/s/6JdZVComments: https://readhacker.news/c/6JdZVI built a CLI tool that lets you do common video/audio operations without remembering ffmpeg syntax.Instead of:ffmpeg -i video.mp4 -vf "fps=15,scale=480:-1:flags=lanczos" -loop 0 output.gifYou write: ff convert video.mp4 to gifMore examples: ff compress video.mp4 to 10mb ff trim video.mp4 from 0:30 to 1:00 ff extract audio from video.mp4 ff resize video.mp4 to 720p ff speed up video.mp4 by 2x ff reverse video.mp4There are similar tools that use LLMs (wtffmpeg, llmpeg, ai-ffmpeg-cli), but they require API keys, cost money, and have latency.Ez FFmpeg is different: - No AI – just regex pattern matching - Instant – no API calls - Free – no tokens - Offline – works without internetIt handles ~20 common operations that cover 90% of what developers actually do with ffmpeg. For edge cases, you still need ffmpeg directly.Interactive mode (just type ff) shows media files in your current folder with typeahead search.npm install -g ezff