Levels & Gangs
Main Level Increment
USER PARAMETERS
userIncrement
is the number of decibels by which the 'Main' level of the selected cues will be incremented
-- For help, bug reports, or feature suggestions, please visit https://github.com/samschloegel/qlab-scripts
-- Built for QLab 5. v220903-01
set userIncrement to 2 -- enter your desired increment here
tell application id "com.figure53.QLab.5" to tell front workspace
set theSelection to (selected as list)
repeat with eachCue in theSelection
if q type of eachCue is in {"Audio", "Fade", "Mic"} then
set currentLevel to eachCue getLevel row 0 column 0
set newLevel to currentLevel + userIncrement
eachCue setLevel row 0 column 0 db newLevel
end if
end repeat
end tell
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Main Level Decrement
USER PARAMETERS
userDecrement
is the number of decibels by which the 'Main' level of the selected cues will be decremented
-- For help, bug reports, or feature suggestions, please visit https://github.com/samschloegel/qlab-scripts
-- Built for QLab 5. v220903-01
set userDecrement to 2 -- enter your desired decrement here
tell application id "com.figure53.QLab.5" to tell front workspace
set theSelection to (selected as list)
repeat with eachCue in theSelection
if q type of eachCue is in {"Audio", "Fade", "Mic"} then
set currentLevel to eachCue getLevel row 0 column 0
set newLevel to currentLevel - userDecrement
eachCue setLevel row 0 column 0 db newLevel
end if
end repeat
end tell
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Main Level to 0dB
-- For help, bug reports, or feature suggestions, please visit https://github.com/samschloegel/qlab-scripts
-- Built for QLab 5. v220903-01
tell application id "com.figure53.QLab.5" to tell front workspace
set theSelection to (selected as list)
repeat with eachCue in theSelection
if q type of eachCue is in {"Audio", "Mic", "Fade", "Video"} then
eachCue setLevel row 0 column 0 db 0
end if
end repeat
end tell
2
3
4
5
6
7
8
9
10
11
Main Level to -inf
-- For help, bug reports, or feature suggestions, please visit https://github.com/samschloegel/qlab-scripts
-- Built for QLab 5. v220903-01
tell application id "com.figure53.QLab.5" to tell front workspace
set theSelection to (selected as list)
repeat with eachCue in theSelection
if q type of eachCue is in {"Audio", "Mic", "Fade", "Video"} then
eachCue setLevel row 0 column 0 db -120
end if
end repeat
end tell
2
3
4
5
6
7
8
9
10
11
Change all cue levels by dialog
A dialog asks for an increment value (can be negative, to decrement) and then changes all cue output fader values of a single selected cue by that amount.
There are probably better ways to accomplish the same goal here, but maybe you're working for someone who wants to do it this way, and this can save you the headache.
USER PARAMETERS
defaultChange
is the pre-filled value for the user-input dialog
minLevel
should be set to match the value in Workspace Settings > Audio > Volume Limits > Min. This is the level at or below which cue levels will be considered '-inf'.
-- For help, bug reports, or feature suggestions, please visit https://github.com/samschloegel/qlab-scripts
-- Built for QLab 5. v220903-01
set defaultChange to "-2"
set minLevel to -100
tell application id "com.figure53.QLab.5" to tell front workspace
try
set theSelection to (selected as list)
if length of theSelection is greater than 1 then
set userConfirmation to display dialog "Multiple cues are selected. Are you sure you want to continue?" buttons {"Stop", "Continue"} default button "Stop"
if button returned of userConfirmation is "Stop" then
return
end if
end if
set userInput to display dialog "How much?" default answer defaultChange buttons {"Cancel", "Continue"} default button "Continue"
set userIncrement to text returned of userInput
if button returned of userInput is "Continue" then
repeat with eachCue in theSelection
if q type of eachCue is in {"Audio", "Fade", "Mic"} then
set theGangs to {}
repeat with i from 1 to 64
set currentLevel to eachCue getLevel row 0 column i
set thisGang to getGang eachCue row 0 column i
if (currentLevel > minLevel) and (thisGang is not in theGangs) then
eachCue setLevel row 0 column i db currentLevel + userIncrement
if thisGang is not missing value then
set end of theGangs to thisGang
end if
end if
end repeat
end if
end repeat
end if
on error
display dialog "There was an error, sorry! Something might have broken along the way."
return
end try
end tell
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
Clear Gangs
USER PARAMETERS
outputCount
is the number of cue outputs you are using (or wish to remove gangs from)
-- For help, bug reports, or feature suggestions, please visit https://github.com/samschloegel/qlab-scripts
-- Built for QLab 5. v211121-01
set outputCount to 16
tell application id "com.figure53.QLab.5" to tell front workspace
set theSelection to (selected as list)
repeat with eachCue in theSelection
repeat with i from 0 to outputCount
setGang eachCue row 0 column i gang ""
end repeat
end repeat
end tell
2
3
4
5
6
7
8
9
10
11
12
13
Set crosspoint
Batch editing to set a specific cue level matrix crosspoint to a fixed number. While QLab provides lots of useful batch editing features, this will allow you to select large numbers of cues which may not all be audio cues specifically - but will then work on all audio cues within that selection.
Note that this will only adjust audio cues, and not fades or mic cues.
USER PARAMETERS
userLevel
The desired crosspoint level
userRow
The audio file channel; 0 is the cue output fader, 1 is typically Left, 2 Right
userColumn
The cue output channel; 0 is the main column, 1 is the first cue output, etc.
-- For help, bug reports, or feature suggestions, please visit https://github.com/samschloegel/qlab-scripts
-- Built for QLab 5. v250228-01
set userLevel to -6 -- New level
set userRow to 1 -- Audio file channel
set userColumn to 1 -- Cue output
tell application id "com.figure53.QLab.5" to tell front workspace
set theSelection to (selected as list)
repeat with eachCue in theSelection
if q type of eachCue is "Audio" then
eachCue setLevel row userRow column userColumn db userLevel
end if
end repeat
end tell
2
3
4
5
6
7
8
9
10
11
12
13
14
15