Skip to content

Commit d162c24

Browse files
committed
update readmes
1 parent 4bac466 commit d162c24

2 files changed

Lines changed: 14 additions & 6 deletions

File tree

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Add this to your `Cargo.toml`:
1414

1515
```toml
1616
[dependencies]
17-
rustsynth = "0.5"
17+
rustsynth = "0.7"
1818
```
1919

2020
Further guide see [the book](https://rustsynth.anima.nz)
@@ -46,6 +46,14 @@ Low-level FFI bindings to VapourSynth C API.
4646

4747
Procedural macros for creating VapourSynth plugins.
4848

49+
## Examples/Tools
50+
51+
### rspipe
52+
53+
[![crates.io](https://img.shields.io/crates/v/rspipe.svg)](https://crates.io/crates/rspipe)
54+
55+
vspipe-rs
56+
4957
## Community
5058

5159
Join our [Discord server](https://discord.com/invite/5z3YhWstQr) for support and development discussions.

rspipe/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,20 +30,20 @@ Show script info:
3030

3131
Write to stdout:
3232

33-
`vspipe [options] script.vpy -`
33+
`rspipe [options] script.vpy -`
3434

3535
Request all frames but don’t output them:
3636

37-
`vspipe [options] script.vpy --`
37+
`rspipe [options] script.vpy --`
3838

3939
Write frames 5-100 to file:
4040

41-
`vspipe --start 5 --end 100 script.vpy output.raw`
41+
`rspipe --start 5 --end 100 script.vpy output.raw`
4242

4343
Pipe to x264:
4444

45-
`vspipe script.vpy - -c y4m | x264 --demuxer y4m -o script.mkv -`
45+
`rspipe script.vpy - -c y4m | x264 --demuxer y4m -o script.mkv -`
4646

4747
Pass values to a script:
4848

49-
`vspipe --arg deinterlace=yes --arg "message=fluffy kittens" script.vpy output.raw`
49+
`rspipe --arg deinterlace=yes --arg "message=fluffy kittens" script.vpy output.raw`

0 commit comments

Comments
 (0)