-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Document %runvpy and better %preview doc.
- Loading branch information
1 parent
52b2e7d
commit eaa2a71
Showing
3 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,5 +9,6 @@ things in Yuuno. | |
:maxdepth: 2 | ||
|
||
reuse_preview | ||
run_vpy | ||
auto_import_yuuno | ||
configure_yuuno |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
================================= | ||
Run vapoursynth scripts via Yuuno | ||
================================= | ||
|
||
You can run vapoursynth scripts (.vpy) using the line magic `%runvpy` with takes a path as an argument. | ||
|
||
It will return a dictionary with all outputs defined by the vpy-file so you can use it | ||
to encode or further modify the clip. | ||
|
||
Simple example: | ||
--------------- | ||
|
||
Here is a simple example:: | ||
|
||
%runvpy test.vpy | ||
|
||
Upon successful execution it will return a dictionary with your outputs. |