This file contains hidden or 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
| /** | |
| * JSFX Name: Note Generator | |
| * Description: Inspired by Aurélien Demey | |
| * About: Press play. | |
| * Screenshot: https://i.imgur.com/zCVSnMk.gifv | |
| * Author: X-Raym | |
| * Author URI: https://www.extremraym.com | |
| * Donation: http://www.extremraym.com/en/donation | |
| * Licence: GPL v3 | |
| * REAPER: 5.0 |
This file contains hidden or 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
| Last Updated: 7 Oct 2025 | |
| ------------------------- | |
| In this package, you will find a brief introduction to the Scripting API for DaVinci Resolve Studio. Apart from this README.txt file, this package contains folders containing the basic import | |
| modules for scripting access (DaVinciResolve.py) and some representative examples. | |
| From v16.2.0 onwards, the nodeIndex parameters accepted by SetLUT() and SetCDL() are 1-based instead of 0-based, i.e. 1 <= nodeIndex <= total number of nodes. | |
| Overview | |
| -------- | |
| As with Blackmagic Fusion scripts, user scripts written in Lua and Python programming languages are supported. By default, scripts can be invoked from the Console window in the Fusion page, |
This file contains hidden or 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
| GetActiveWindowProcessName() { | |
| WinGet, Active_ID, ID, A | |
| WinGet, Active_Process, ProcessName, ahk_id %Active_ID% | |
| return Active_Process | |
| } | |
| `;:: | |
| if (GetActiveWindowProcessName() = "Resolve.exe") { | |
| send {WheelDown 1} |
This file contains hidden or 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
| // Text overlay | |
| length = 3250; | |
| #text = ''; | |
| i = offset; | |
| loop( srctime+length, | |
| sprintf(#val,"% 05i", i); | |
| strncat(#text,#val,0); | |
| i = i+1; | |
| ); |
This file contains hidden or 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
| for %%f in ("*.WAV") do ffmpeg-normalize "%%f" -c:a pcm_s24le -ext wav |
This file contains hidden or 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
| D: | |
| cd "D:\Raym\Alien 2347" | |
| python -m http.server |
This file contains hidden or 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
| <REAPER_PRESET_LIBRARY `JS: 16 pads MIDI Notes Map [X-Raym Scripts/JSFX/MIDI/X-Raym_16 pads MIDI Notes Map.jsfx]` | |
| <PRESET `QuestForGroove` | |
| MC4wMDAwMDAgMzYuMDAwMDAwIDEuMDAwMDAwICJtdC1wb3dlci1kcnVtLWtpdCAtIENvcGllIC0gQ29waWUgLSBDb3BpZS50eHQiIDAuMDAwMDAwIDAuMDAwMDAwIC0g | |
| LSAtIDU3LjAwMDAwMCAzNS4wMDAwMDAgMzYuMDAwMDAwIDUwLjAwMDAwMCAzOS4wMDAwMDAgNDAuMDAwMDAwIDM4LjAwMDAwMCAzNy4wMDAwMDAgNDQuMDAwMDAwIDQ2 | |
| LjAwMDAwMCA0Mi4wMDAwMDAgNTEuMDAwMDAwIDQxLjAwMDAwMCA0My4wMDAwMDAgNDUuMDAwMDAwIDU1LjAwMDAwMCAtIC0gLSAtIC0gLSAtIC0gLSAtIC0gLSAtIC0g | |
| LSAtIC0gLSAtIC0gLSAtIC0gLSAtIC0gLSAtIC0gLSAtIC0gLSAtIC0gLSAtIC0gLSBRdWVzdEZvckdyb292ZQ== | |
| > | |
| <PRESET `XpressPads` | |
| MC4wMDAwMDAgMzYuMDAwMDAwIDEuMDAwMDAwICJtdC1wb3dlci1kcnVtLWtpdCAtIENvcGllIC0gQ29waWUgLSBDb3BpZS50eHQiIDAuMDAwMDAwIDAuMDAwMDAwIC0g | |
| LSAtIDM2LjAwMDAwMCA0Mi4wMDAwMDAgNDIuMDAwMDAwIDM2LjAwMDAwMCA0MC4wMDAwMDAgNDYuMDAwMDAwIDQ2LjAwMDAwMCA0MC4wMDAwMDAgNDEuMDAwMDAwIDQ1 |
This file contains hidden or 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
| --[[ | |
| * ReaScript Name: Parent script | |
| * About: For devs | |
| * Author: X-Raym | |
| * Author URI: https://www.extremraym.com | |
| * Repository: X-Raym/REAPER-ReaScripts | |
| * Licence: GPL v3 | |
| * REAPER: 5.0 | |
| * Version: 1.0 | |
| --]] |
This file contains hidden or 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
| SetTitleMatchMode, 2 ; This let's any window that partially matches the given name get activated | |
| Numpad1:: | |
| IfWinExist, REAPER v ; Maybe find a more solid way | |
| WinActivate ; use the window found above | |
| WinGetPos, X, Y, Width, Height, REAPER | |
| MouseMove, Width / 2, Height / 2 |