File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
2020Further guide see [ the book] ( https://rustsynth.anima.nz )
@@ -46,6 +46,14 @@ Low-level FFI bindings to VapourSynth C API.
4646
4747Procedural 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
5159Join our [ Discord server] ( https://discord.com/invite/5z3YhWstQr ) for support and development discussions.
Original file line number Diff line number Diff line change @@ -30,20 +30,20 @@ Show script info:
3030
3131Write to stdout:
3232
33- ` vspipe [options] script.vpy -`
33+ ` rspipe [options] script.vpy -`
3434
3535Request all frames but don’t output them:
3636
37- ` vspipe [options] script.vpy --`
37+ ` rspipe [options] script.vpy --`
3838
3939Write 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
4343Pipe 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
4747Pass 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`
You can’t perform that action at this time.
0 commit comments