-
Notifications
You must be signed in to change notification settings - Fork 437
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added new documentation plus verison bump
- Loading branch information
1 parent
6e1dbbc
commit 8a9a000
Showing
6 changed files
with
83 additions
and
7 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
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,32 @@ | ||
# Rectangle Effect | ||
last modified February 28, 2021. 21w08a. | ||
|
||
## Introduction | ||
The rectangle effect option will overlay a rectangle on a video. | ||
|
||
The arguments are: | ||
|
||
``` | ||
--rectangle {start},{end},{x1},{y1},{x2},{y2},{color},{thickness} | ||
``` | ||
|
||
or using real values: | ||
|
||
``` | ||
--rectangle 0,30,0,100,200,300,#5ADAE8,15 | ||
``` | ||
|
||
Which means: overlay a rectangle from frame 0 to frame 30, fill at point (0, 100) and point (200, 300), color it with hex #5ADAE8, and set the thickness to 15 pixels. | ||
|
||
The rectangle completely solid if the thickness value is left out. | ||
The color will default to black if not specified. | ||
|
||
The rectangle option needs at least 6 comma arguments. | ||
|
||
### Note | ||
|
||
Boolean Expressions are supported for this option just like with zooming. | ||
|
||
--- | ||
|
||
Support for zooming and other effects for Premiere Pro coming soon! |
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,27 @@ | ||
# Subcommands | ||
last modified February 28, 2021. 21w08a. | ||
|
||
Subcommands are keywords that have their own options, seperate from the main auto-editor program. They typically serve an auxillary function. | ||
|
||
Syntax: | ||
|
||
``` | ||
auto-editor {subcommand} {*options} | ||
``` | ||
|
||
Examples: | ||
|
||
``` | ||
auto-editor info example.mp4 | ||
``` | ||
|
||
``` | ||
auto-editor generate_test --fps 25 | ||
``` | ||
|
||
|
||
List of subcommands currently avaiable: | ||
|
||
1. info | ||
1. test | ||
1. generate_test |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
'''__init__.py''' | ||
|
||
__version__ = '21.7.1' | ||
__version__ = '21.8.1' |
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