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
Piste MIDI avec MIDI Control Output | |
MIDI FX capable of MIDI CC Out, like ReaControl MIDI | |
Check Channel and CC number | |
In QL+ | |
LoopBe as Input of the universe. Not output | |
Launch LoopBe | |
Add Profile in In/Out for loopbe | |
Add Slider | |
On virtual console |
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
With Pitch Change, via audio Resampling | |
C:\Users\USER>C:\Users\USER\AppData\Roaming\REAPER\UserPlugins\ffmpeg.exe -i "E:\Bureau\PXL_20231209_213533058.mp4" -filter_complex "[0:v]setpts=0.25*PTS[v];[0:a]asetrate=192000[a]" -ar 48000 -map "[v]" -map "[a]" "E:\Bureau\PXL_20231209_213533058_x4.mp4" | |
Without Pitch Change | |
C:\Users\USER>C:\Users\USER\AppData\Roaming\REAPER\UserPlugins\ffmpeg.exe -i "E:\Bureau\PXL_20231209_215801374.mp4" -filter_complex "[0:v]setpts=0.25*PTS[v];[0:a]atempo=4.0[a]" -map "[v]" -map "[a]" "E:\Bureau\PXL_20231209_215801374_x4.mp4" |
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
style=".+?" |
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_PROJECT 0.1 "6.79/win64" 1684446322 | |
RIPPLE 0 | |
GROUPOVERRIDE 0 0 0 | |
AUTOXFADE 129 | |
ENVATTACH 0 | |
POOLEDENVATTACH 0 | |
MIXERUIFLAGS 11 48 | |
PEAKGAIN 1 | |
FEEDBACK 0 | |
PANLAW 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
os_sep = package.config:sub(1,1) | |
-- Check if folder exists -- | |
local function FolderExists(strFolderName) | |
if strFolderName:len() == 0 then return false end | |
strFolderName = strFolderName:gsub( os_sep .. "$", "" ) | |
if os_sep == "\\" then strFolderName = strFolderName .. os_sep .. "*.*" end | |
local fileHandle, strError = io.open(strFolderName , "r") | |
if fileHandle ~= nil then | |
io.close(fileHandle) | |
return true, "No error" |
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
#Warn ; Enable warnings to assist with detecting common errors. | |
#Requires AutoHotkey v2.0 ; | |
#SingleInstance ; | |
Msg(str) { | |
ToolTip( str ) | |
SetTimer( ToolTip, -1000 ) | |
return | |
} |
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
<?php | |
header("Access-Control-Allow-Origin: *"); | |
header("Content-Type: application/json"); | |
$exts = ["png", "jpg"]; | |
$dir = "./"; | |
$list = []; | |
if (is_dir($dir)) { |
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
// From: http://jsfiddle.net/L6LB2/1/ | |
var str = "AddMediaItemTrack"; | |
var words = ["Add", "Track", "Ma"] | |
var mapObj = {} | |
for( word of words ) { | |
mapObj[word] = "<mark>" + word + "</mark>" | |
} | |
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: Repeat action by sets of 100 items max in selection | |
* Screenshot: https://i.imgur.com/nQsH3mL.gif | |
* Author: X-Raym | |
* Author URI: | |
* Repository: | |
* Repository URI: | |
* Licence: GPL v3 | |
* Forum Thread: | |
* Forum Thread URI: |
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
// ==UserScript== | |
// @name ReaScript Doc: Local to XR | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
// console.log(window.location) | |
window.addEventListener("load", function(event) { | |
if( window.location.toString().search("reascripthelp.html") >= 0 ) { |