Skip to content

Commit 5a3c92d

Browse files
rickstaaclaude
andcommitted
docs(echo): mark the sample clip step as optional
The prose said "make one if you have nothing to hand" while the block made one unconditionally. Put the condition on the line it applies to. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
1 parent fdedf26 commit 5a3c92d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

echo/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ curl -sk https://localhost:8935/discovery | jq '.[].runners[].app' # confirm l
4242

4343
The input is a file path, or `-` to read an MPEG-TS stream from stdin (so you can pipe in anything ffmpeg produces); the output is a file, or `-` to write the echoed stream to stdout (pipe it to a player).
4444

45-
**From a file** — writes the result to `echo-out.ts`. Any video works; make one if you have nothing to hand (`-t` sets the length):
45+
**From a file** — writes the result to `echo-out.ts`. Any video works; the first command makes a 30s one (`-t` sets the length):
4646

4747
```sh
48-
ffmpeg -f lavfi -i testsrc=size=1280x720:rate=30 -t 30 -c:v libx264 -preset ultrafast -pix_fmt yuv420p sample.mp4
48+
ffmpeg -f lavfi -i testsrc=size=1280x720:rate=30 -t 30 -c:v libx264 -preset ultrafast -pix_fmt yuv420p sample.mp4 # skip if you have a video
4949
uv run client.py --mode blur --discovery https://localhost:8935/discovery sample.mp4
5050
```
5151

0 commit comments

Comments
 (0)