From c10c4ea0d48334d99cc6b27b4680457dd611bacc Mon Sep 17 00:00:00 2001 From: ayato <2044taiga@gmail.com> Date: Wed, 25 Jun 2025 15:36:52 +0900 Subject: [PATCH] docs: add missing --hflip and --vflip options to README MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add usage examples for horizontal and vertical video flipping - Include --hflip and --vflip in the options table with descriptions - Add corresponding output filename examples (_HFlip.mp4, _VFlip.mp4) - Ensure README accurately reflects all implemented features These options were already implemented and documented in help text but were missing from the main README documentation. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 1e2673d..9da2f87 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,12 @@ visp --input sample.mp4 --speed 2.0 # Change playback speed to half (0.5x) visp --input sample.mp4 --speed 0.5 +# Flip video horizontally (left-right mirror) +visp --input sample.mp4 --hflip + +# Flip video vertically (upside-down) +visp --input sample.mp4 --vflip + # Apply multiple options together visp --input raw.mp4 --res hd --codec h265 --fps 24 --mute @@ -74,6 +80,8 @@ Examples: - `demo_Half.mp4` - `sample_2xSpeed.mp4` - `sample_0.5xSpeed.mp4` +- `sample_HFlip.mp4` +- `sample_VFlip.mp4` - `teaser.gif` ## Options @@ -91,6 +99,8 @@ Examples: | `--mono` | _(flag)_ | Convert video to grayscale (supported only with `h264`/`h265`). | | `--half` | _(flag)_ | Scale input resolution down by half (e.g. 1920×1080 → 960×540). | | `--speed` | `` | Change playback speed (e.g. `2.0` = 2x speed, `0.5` = half speed). | +| `--hflip` | _(flag)_ | Flip video horizontally (left-right mirror). | +| `--vflip` | _(flag)_ | Flip video vertically (upside-down). | | `--dry-run` | _(flag)_ | Print the generated `ffmpeg` command without executing it. | | `--help` | _(flag)_ | Show usage information and exit. |