@@ -68,6 +68,10 @@ npx ffmpeg-quick compress input.mp4
6868| ` trim ` | Cut a section from a video |
6969| ` resize ` | Resize video to a target width or height |
7070| ` crop ` | Crop a region from the video |
71+ | ` watermark ` | Add image watermark overlay |
72+ | ` denoise ` | Reduce noise from video or audio |
73+
74+ > Prefer a visual interface? Try the [ FFmpeg Command Generator] ( https://32blog.com/en/tools/ffmpeg-command-generator ) on 32blog — build commands by clicking options instead of typing flags.
7175
7276### Usage
7377
@@ -116,6 +120,12 @@ npx ffmpeg-quick resize input.mp4 -w 1280
116120
117121# Crop center 1280x720 region
118122npx ffmpeg-quick crop input.mp4 1280x720
123+
124+ # Add watermark (bottom-right, 10px margin)
125+ npx ffmpeg-quick watermark input.mp4 logo.png
126+
127+ # Denoise video (medium strength)
128+ npx ffmpeg-quick denoise input.mp4 --strength medium
119129```
120130
121131### Common Options
@@ -176,6 +186,15 @@ npx ffmpeg-quick crop input.mp4 1280x720
176186- ` <size> ` — Crop size as WxH (e.g. 1280x720)
177187- ` --pos <x:y> ` — Top-left position (default: center)
178188
189+ ** watermark**
190+ - ` <image> ` — Watermark image file (PNG recommended)
191+ - ` --position <pos> ` — Position: topleft, top, topright, left, center, right, bottomleft, bottom, bottomright (default: bottomright)
192+ - ` --margin <n> ` — Margin from edge in pixels (default: 10)
193+
194+ ** denoise**
195+ - ` --target <type> ` — Target: video or audio (default: video)
196+ - ` --strength <level> ` — Strength: light, medium, strong (default: medium)
197+
179198### The Hard Stuff, Made Easy
180199
181200These commands solve problems that send you down a rabbit hole every time:
@@ -293,6 +312,10 @@ npx ffmpeg-quick compress input.mp4
293312| ` trim ` | 動画の一部を切り出し |
294313| ` resize ` | 解像度を変更 |
295314| ` crop ` | 動画の一部を切り抜き |
315+ | ` watermark ` | 透かし画像をオーバーレイ |
316+ | ` denoise ` | 映像/音声のノイズ除去 |
317+
318+ > GUIでコマンドを組み立てたい場合は、32blogの [ FFmpegコマンドジェネレーター] ( https://32blog.com/ja/tools/ffmpeg-command-generator ) をどうぞ。
296319
297320### 使い方
298321
@@ -341,6 +364,12 @@ npx ffmpeg-quick resize input.mp4 -w 1280
341364
342365# 中央を1280x720で切り抜き
343366npx ffmpeg-quick crop input.mp4 1280x720
367+
368+ # 透かし追加(右下、マージン10px)
369+ npx ffmpeg-quick watermark input.mp4 logo.png
370+
371+ # ノイズ除去(映像、中程度)
372+ npx ffmpeg-quick denoise input.mp4 --strength medium
344373```
345374
346375### 共通オプション
@@ -401,6 +430,15 @@ npx ffmpeg-quick crop input.mp4 1280x720
401430- ` <size> ` — 切り抜きサイズ WxH(例: 1280x720)
402431- ` --pos <x:y> ` — 左上の位置(デフォルト: center)
403432
433+ ** watermark**
434+ - ` <image> ` — 透かし画像ファイル(PNG推奨)
435+ - ` --position <pos> ` — 位置: topleft, top, topright, left, center, right, bottomleft, bottom, bottomright(デフォルト: bottomright)
436+ - ` --margin <n> ` — 端からのマージン(px、デフォルト: 10)
437+
438+ ** denoise**
439+ - ` --target <type> ` — 対象: video または audio(デフォルト: video)
440+ - ` --strength <level> ` — 強度: light, medium, strong(デフォルト: medium)
441+
404442### 面倒なやつ、全部やります
405443
406444毎回ググるハメになるやつを1コマンドに:
0 commit comments