1
Fork 0

Update README.md

This commit is contained in:
stysmmaker 2021-04-13 22:33:09 -04:00
parent bbe3047af4
commit 164daaa248
Signed by: mmaker
GPG Key ID: CCE79B8FEDA40FB2
1 changed files with 16 additions and 0 deletions

View File

@ -10,6 +10,22 @@ Helper scripts for importing REAPER track position data into After Effects for s
2. Put the `.jsx` and `.py` file into your After Effects' ScriptUI Panels folder (`Support Files/Scripts/ScriptUI Panels/`).
3. Launch After Effects and access the script panel from the `Window` menu.
When importing a REAPER project file, the script will read tracks prefixed with `!`, and return a JSON object of the timecodes for the start of each item *and* MIDI note for each respective track. After selecting a track and hitting the `Go!` button, comp markers will be added to the current comp for each item of the selected track.
The markers added to the comp can be used in conjunction with expressions to determine when a video should be flipped, restart, animated, etc.
A brief example of using this script with the expressions from [my expressions library](https://github.com/stysmmaker/mmkr):
```js
// Apply to time remap
const { YTPMV } = footage('mmkr.jsx').sourceData.get_functions();
YTPMV.time_reset(thisComp.marker);
```
```js
// Apply to an instance of the Transform effect
const { YTPMV } = footage('mmkr.jsx').sourceData.get_functions();
YTPMV.flip(thisComp.marker);
```
## Roadmap
Currently this is essentially just a dump of the script files I use currently, eventually I'd like to clean them up and add a few more features.