https://github.com/daiz/avspmacros
A collection of AvsP(mod) macros.
https://github.com/daiz/avspmacros
Last synced: about 1 year ago
JSON representation
A collection of AvsP(mod) macros.
- Host: GitHub
- URL: https://github.com/daiz/avspmacros
- Owner: Daiz
- Created: 2013-10-16T17:26:29.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-10-16T17:27:15.000Z (over 12 years ago)
- Last Synced: 2025-02-16T14:48:51.152Z (over 1 year ago)
- Language: Python
- Size: 102 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Introduction
This repository contains macros I've written for AvsP(mod), because why not. Descriptions for available macros below.
## QuickTrim Begin/Mid/Stop
QuickTrim is a collection of three macros intended to make writing trims faster. You should bind the macros to hotkeys like Ctrl+F1/F2/F3 or whatever (I personally use macro keys on my keyboard). Create a new line, make it a comment with `#` in the beginning and make sure the cursor is located after it. Then, open the video and start going through it. After that...
- Hit Begin when you want to open a trim and the macro will write `Trim(CURRENT_FRAME,`
- Hit Mid and the macro will write `PREVIOUS_FRAME)++Trim(CURRENT_FRAME,`
- Hit Stop and the macro will write `CURRENT_FRAME)++`
The end result is that you will be able to quickly trim a video with just the navigation keys and three hotkeys. After you're done, just uncomment the line and delete the `++` from the end of the line and you should end up with a pretty trim line similar to this example:
```
Trim(2,928)++Trim(929,3624)++Trim(5726,25145)++Trim(26945,43647)++Trim(43648,46004)++Trim(47804,48250)++Trim(48251,48519)
```