-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathreaper-menu.ini
1156 lines (1136 loc) · 39.7 KB
/
reaper-menu.ini
1
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[Empty TCP context]
item_0=46001 (track template list)
item_1=-1
item_2=40001 Insert new track
item_3=41067 Insert multiple tracks...
item_4=40701 Insert virtual instrument on new track...
item_5=-2 Insert track from template
item_6=46000 Open template...
item_7=41722 Offset template items by edit cursor
item_8=46001 (track template list)
item_9=-1
item_10=-3
item_11=40075 Show master track
item_12=42373 Show TCP on right side of arrange
item_13=40302 Show FX inserts in TCP (when size permits)
item_14=40677 Show sends in TCP (when size permits)
title=Empty TCP context
[Floating toolbar 1]
icon_0=00_toolbar_zoom2.png
icon_1=00_toolbar_follow.png
icon_3=toolbar_views_txt.png
icon_4=toolbar_tape.png
icon_5=toolbar_Trim.png
icon_6=toolbar_Idee.png
item_0=40295 View: Zoom out project
item_1=_Ultraschall_Toggle_Follow View: Toggle Followmode
item_2=-1
item_3=40422 View: Show screen/track/item sets window
item_4=_Ultraschall_Set_View_Record View: Record view
item_5=_Ultraschall_Set_View_Edit View: Edit view
item_6=_Ultraschall_Set_View_Story View: Storyboard view
title=Ultraschall: Storyboard View
[Floating toolbar 2]
icon_0=toolbar_zoom_time_selection.png
icon_3=toolbar_ultraschall_views.png
icon_4=00_toolbar_icons_fader.png
icon_5=00_toolbar_tape.png
icon_6=00_toolbar_waveform.png
icon_11=toolbar_envelope_mute.png
item_0=40295 View: Zoom out project
item_1=-1
item_2=-1
item_3=40422 View: Show screen/track/item sets window
item_4=40454 Screen Layout #01
item_5=40455 Screen Layout #02
item_6=40456 Screen Layout #03
item_7=-1
item_8=-1
item_9=-1
item_10=-1
item_11=41152 Envelope: Toggle show all envelopes for all tracks
title=Toolbar 2
[Floating toolbar 3]
title=Toolbar 3
[Floating toolbar 4]
title=Toolbar 4
[Floating toolbar 5]
icon_0=toolbar_routing_txt.png
icon_1=toolbar_magicrouting.png
icon_2=toolbar_preshow.png
icon_3=toolbar_mic.png
icon_4=toolbar_routing_editing.png
icon_6=toolbar_OnAir.png
item_0=_Ultraschall_Snapshot_Editor Routing: Use custom audio routing presets
item_1=_Ultraschall_Toggle_Magicrouting Routing: Toggle MagicRouting
item_2=_Ultraschall_set_Matrix_Preshow Routing: Set audio routing to preshow preset
item_3=_Ultraschall_set_Matrix_Recording Routing: Set audio routing to recording preset
item_4=_Ultraschall_set_Matrix_Editing Routing: Set audio routing to editing preset
item_5=-1
item_6=_Ultraschall_OnAir Broadcast: Toggle Broadcast-OnAir via Studiolink
title=Routing
[Floating toolbar 7]
icon_0=toolbar_export_txt.png
icon_1=toolbar_Grid.png
icon_2=toolbar_export.png
icon_3=toolbar_mp3.png
icon_4=toolbar_Folder.png
item_0=40024 Show record path in finder
item_1=_Ultraschall_Marker_Dashboard Markers: Marker Dashboard (Ultraschall)
item_2=_Ultraschall_RenderProject_With_ContextMenu_For_Presets Files: Render Project (Ultraschall)
item_3=_Ultraschall_Export_Assistant Export: Podcastexport assistant
item_4=_Ultraschall_Open_Project_Folder File: Open project folder
title=Files: Render project to .MP3
[Floating toolbar 8]
icon_1=toolbar_tool_scissors_cut_trim.png
item_0=41671 Edit me
item_1=_S&M_EXCL_TGL1 SWS/S&M: Exclusive toggle A01
item_2=_S&M_EXCL_TGL2 SWS/S&M: Exclusive toggle A02
item_3=_S&M_EXCL_TGL3 SWS/S&M: Exclusive toggle A03
item_4=_S&M_EXCL_TGL4 SWS/S&M: Exclusive toggle A04
title=Toolbar 8
[Floating toolbar 9]
icon_0=toolbar_link.png
icon_1=toolbar_unlink.png
icon_4=toolbar_txtlabel.png
icon_7=toolbar_txt.png
icon_8=toolbar_newitem.png
icon_9=toolbar_newregion.png
item_0=40032 Item grouping: Group items
item_1=40033 Item grouping: Remove items from group
item_2=-1
item_3=-1
item_4=_Ultraschall_toggle_item_labels Toggle Item Labels visible
item_5=-1
item_6=-1
item_7=40142 Insert empty item
item_8=_Ultraschall_Slice_and_AddMetadata Metadata: Take metadata
item_9=40174 Markers: Insert region from time selection
title=Insert Text Item
[Main file]
item_0=40023 New project
item_1=40025 Open project...
item_2=40026 Save project
item_3=40022 Save project as...
item_4=41895 Save new version of project
item_5=-2 Project templates
item_6=40394 Save project as template...
item_7=-1
item_8=48000 (project template list)
item_9=-3
item_10=-2 Recent projects
item_11=44000 (recent project list)
item_12=-3
item_13=-1
item_14=40859 New project tab
item_15=40860 Close project
item_16=40886 Close all projects
item_17=40897 Save all projects
item_18=-1
item_19=40021 Project settings...
item_20=40015 Render project to disk...
item_21=-2 Render project as...
item_22=_Ultraschall_RenderProject_As_MP3 Render project as MP3
item_23=_Ultraschall_RenderProject_As_M4A Render project as m4a
item_24=_Ultraschall_RenderProject_As_Auphonic_Multichannel Render project as Auphonic Multichannel
item_25=-3
item_26=40929 Open render queue
item_27=40017 Save live output to disk (bounce)...
item_28=40185 Consolidate/Export tracks...
item_29=40849 Export project MIDI...
item_30=40098 Clean current project directory...
item_31=41076 Batch file/item converter
title=&File
[Main insert]
item_0=-4 ⚙️ 1. SETUP
item_1=-1
item_2=_Ultraschall_Set_View_Setup Screenset: setup
item_3=40099 Audio device settings...
item_4=-2 Project templates
item_5=48000 (project template list)
item_6=40394 Save project as template...
item_7=-3
item_8=-2 Insert StudioLink and Soundboard tracks
item_9=46001 (track template list)
item_10=-3
item_11=_Ultraschall_Insert_And_Arm_New_Audio_Track Insert and arm new audio track
item_12=_Ultraschall_AutoAssign_Inputs Auto assign inputs
item_13=-2 Colors
item_14=_Ultraschall_ColorPicker Color Picker
item_15=_Ultraschall_GUI_setmagiccolor Autocolor all Tracks - Sonic Rainboom
item_16=_Ultraschall_Set_Colors_To_Sonic_Rainboom Set Colors to Gentle Sonic Rainboom for selected tracks
item_17=_Ultraschall_Set_Colors_To_Sonic_Rainboom_Spread Set Colors to Adjusted Sonic Rainboom for selected tracks
item_18=_SWSAUTOCOLOR_OPEN Auto color rules...
item_19=-3
item_20=_Ultraschall_Activate_CoughButton Activate cough button for selected tracks
item_21=40022 Save project as...
item_22=-1
item_23=-4 🎙️ 2. RECORDING
item_24=-1
item_25=_Ultraschall_Set_View_Record Screenset: recording
item_26=-2 Extra recordings
item_27=_Ultraschall_Preview_Audio_Before_Recording_Using_Default_Preroll Preroll Recording
item_28=_Ultraschall_Preview_Audio_Before_Recording_Using_Dialog_For_Preroll Preroll Recording with Dialog
item_29=_Ultraschall_RippleInsertRecording Ripple Insert Recording
item_30=-3
item_31=-2 Markers (during Recording)
item_32=_Ultraschall_Set_Marker Insert chapter marker
item_33=_Ultraschall_Set_NamedMarker Insert chapter marker and edit name...
item_34=_Ultraschall_Insert_Chapter_Marker_Back_In_Time Insert chapter marker back in time (-2min)
item_35=_Ultraschall_Set_Edit Insert edit marker
item_36=_Ultraschall_set_Marker_with_Timestamp Insert marker with timestamp (ISO_8601)
item_37=_Ultraschall_Delete_Last_Marker Delete last marker (left to cursor)
item_38=_Ultraschall_Import_Markers_As_Planned_From_Clipboard Insert planned markers from clipboard
item_39=_Ultraschall_Set_Next_Marker_To_Planned Set next marker to planning stage
item_40=_Ultraschall_Set_All_Markers_To_Planning_Stage Set all markers to planning stage
item_41=_Ultraschall_Set_Next_Planned_Marker Set next planned marker
item_42=-3
item_43=_Ultraschall_OnAir Toggle StudioLink-OnAir broadcasting
item_44=-1
item_45=-4 ✂️ 3. POST-PRODUCTION
item_46=-1
item_47=_Ultraschall_Prepare_For_Editing Prepare all tracks for editing
item_48=-1
item_49=_Ultraschall_Set_View_Edit Screenset: editing
item_50=_Ultraschall_Set_View_Story Screenset: storyboard
item_51=-2 Items
item_52=40032 Group selected items
item_53=40033 Remove selected items from group
item_54=_S&M_TAKEENVSHOW9 Show volume envelope of selected items
item_55=_XENAKIOS_RENMTAKE Rename item
item_56=40936 Normalize items (reset to unity if already normalized)
item_57=_BR_ANALAYZE_LOUDNESS_DLG Analyze loudness...
item_58=_BR_NORMALIZE_LOUDNESS_ITEMS23 Normalize loudness of selected items to -23 LUFS
item_59=40760 Dynamic split items...
item_60=_Ultraschall_Remove_Silence Remove silence from selected items
item_61=40179 Take channel mode: Mono (left)
item_62=-3
item_63=-2 Selection
item_64=_Ultraschall_ZoomToSelection Zoom to selection
item_65=40061 Split items at time selection
item_66=40201 Remove contens of time selection (Ripple Edit)
item_67=40307 Cut selected area of items
item_68=_Ultraschall_Slice_and_AddMetadata Split selected items at time selection and edit name
item_69=40174 Insert region from time selection
item_70=40625 Set start point
item_71=40626 Set end point
item_72=40320 Nudge start of selection left
item_73=40321 Nudge start of time selection right
item_74=40322 Nudge end of time selection left
item_75=40323 Nudge end of time selection right
item_76=_Ultraschall_SkipLoopPlayback_Absolute Preview cut (skip selection playback)
item_77=_Ultraschall_SkipLoopPlayback Preview cut - relative to zoom
item_78=_Ultraschall_Mute_Selected_Items_In_Time_Range Mute selected items in time selection
item_79=_Ultraschall_Unmute_Selected_Items_In_Time_Range Unmute selected items in time selection
item_80=40020 Remove time selection
item_81=-3
item_82=-2 Chapter markers (in Post-Production)
item_83=_Ultraschall_Marker_Dashboard Show chapter markers dashboard
item_84=_Ultraschall_Insert_ChapterMarker Insert chapter markers at the start of every item of track
item_85=_Ultraschall_ImportChapterMarkersFromWav Import chapter markers from WAV items
item_86=_Ultraschall_Import_Chapters_From_File Import chapter markers from file...
item_87=_Ultraschall_Import_EditMarkers_From_File Import edit markers from file...
item_88=_Ultraschall_SaveChapterMarkers Export chapter markers to file...
item_89=_Ultraschall_SaveChapterMarkers_Into_ProjectFolder Export chapter markers to project folder
item_90=_SWSMARKERLIST11 Export YouTube Chapters to Clipboard
item_91=-3
item_92=-2 Workflows
item_93=-2 Ultraschall AMP - Automated Mixing Pipeline
item_94=-4 Step 1: Select all items for mixing
item_95=_BR_NORMALIZE_LOUDNESS_ITEMS23 Step 2: Normalize loudness of selected items to -23 LUFS
item_96=-4 Step 3: Select tracks for the AMP
item_97=_Ultraschall_AMP Step 4: Set AMP (Automated Mixing Pipeline) FX on selected tracks (Ultraschall)
item_98=-4 Step 5: Choose LUFS Target on Master FX (16 LUFS for Podcasting)
item_99=-1
item_100=_Ultraschall_URL_AMP Open AMP User Guide
item_101=-3
item_102=-2 Double-ender (experimental)
item_103=-4 Step 1: Move the remote track underneath your local track
item_104=40179 Step 2 (optional): Take channel mode: Mono (left)
item_105=-4 Step 3: Select items on both tracks to align
item_106=_Ultraschall_Remove_Silence Step 4: Slice selected items and remove silence
item_107=-4 Step 5: check and correct for differences
item_108=-4 Step 6: Select items to align on both tracks (right-drag)
item_109=_Ultraschall_align_items Step 7: Align selected items across tracks
item_110=-4 Step 8: Check for errors
item_111=41588 Step 9 (optional): Glue selected items
item_112=-4 Step 10: Mute local track
item_113=-1
item_114=41842 Item: Add stretch marker at cursor
item_115=-3
item_116=-3
item_117=-1
item_118=-2 Export
item_119=_Ultraschall_Export_Assistant Start Export Assistant
item_120=_Ultraschall_Edit_ID3_Tags Edit ID3V2 metadata
item_121=_ULTRASCHALL_INSERT_MEDIA_PROPERTIES Insert metadata into MP3 target...
item_122=_Ultraschall_RenderProject_With_ContextMenu_For_Presets Export Project with menu for render-preset-selection
item_123=_Ultraschall_RenderProject_As_MP3 Render project as MP3
item_124=_Ultraschall_RenderProject_As_M4A Render project as m4a
item_125=_Ultraschall_RenderProject_As_Auphonic_Multichannel Render project as Auphonic Multichannel
item_126=-1
item_127=_Ultraschall_Quick_Render_Timeselection_As_Flac Quick render of the snippet in time selection as Flac
item_128=-1
item_129=_Ultraschall_URL_Export Open Export User Guide
item_130=-3
item_131=_Ultraschall_Insert_Outtakes_Into_New_Project Insert Outtakes into new project
item_132=-1
item_133=_Ultraschall_Open_Project_Folder Open project folder
item_134=-1
item_135=-4 📚 MISCELLANEOUS
item_136=-1
item_137=-2 Help and Documentation
item_138=_Ultraschall_URL_User_Guide Open Ultraschall User Guide
item_139=-1
item_140=_Ultraschall_Open_Backups_Folder Consolidate backups and open backups folder
item_141=_Ultraschall_KeyMap Ultraschall Keymap (url)
item_142=40308 Mouse modifier keys and action shortcuts
item_143=_Ultraschall_StartScreen Show Startscreen / Quick Tutorial
item_144=_Ultraschall_Soundcheck_Gui2 Ultraschall Soundcheck
item_145=40024 Show record path in finder
item_146=40027 Open REAPER resource path
item_147=_Ultraschall_Help_Reaper_Api_Documentation Open Reaper-API Documentation (Ultraschall version)
item_148=_Ultraschall_Help_Ultraschall_Api_Functions_Reference Open Ultraschall-API Documentation
item_149=-3
item_150=-2 View
item_151=40251 Show routing matrix
item_152=_Ultraschall_Snapshot_Editor Show routing snapshots
item_153=40422 Show screen/track/item sets window
item_154=_Ultraschall_Toggle_Follow Toggle follow mode
item_155=40651 Toggle item labels
item_156=_S&M_CYCLACTION_10 Toggle visibility of mute envelopes
item_157=40891 Toggle mute envelope in lane for selected track
item_158=_Ultraschall_Toggle_Peak_Gain_Normal_Max Toggle peak gain: normal - mid - max
item_159=42307 Toggle rectify peaks
item_160=42073 Toggle spectral peaks
item_161=_Ultraschall_Toggle_Arrange_Zoom Toggle arrange zoom
item_162=-3
item_163=-2 Navigation
item_164=40173 Go to next marker
item_165=40172 Go to previous marker
item_166=40319 Go to next item
item_167=40318 Go to previous item
item_168=_Ultraschall_FocusPosition Go to play position
item_169=40630 Go to start of time selection
item_170=40631 Go to end of time selection
item_171=_Ultraschall_Safemode_Start_Pause Start/Pause
item_172=_Ultraschall_Safemode_Start_Stop Start/Stop
item_173=-3
item_174=-2 Customize
item_175=40605 Shortcuts and action list...
item_176=40899 Set track icon...
item_177=41930 Show theme configuration window...
item_178=40690 Show theme element finder...
item_179=_Ultraschall_Snapshot_Editor Show routing snapshots
item_180=42074 Peaks Display Settings
item_181=-3
item_182=-1
item_183=_Ultraschall_Settings Ultraschall Settings
title=Podcast
[Main item]
item_0=40006 Remove items
item_1=40508 Trim items to selected area
item_2=-1
item_3=40182 Select all
item_4=40012 Split items at cursor
item_5=40061 Split items at time selection
item_6=40548 Heal splits in items
item_7=-2 Spectral Editing
item_8=42302 Spectrogram: Add spectral edit to item
item_9=42303 Spectrogram: Toggle show spectrogram for selected items
item_10=-3
item_11=-1
item_12=-2 Item settings
item_13=40175 Mute
item_14=40636 Loop item source
item_15=40437 Play all takes
item_16=40687 Lock item
item_17=-1
item_18=40181 Invert phase
item_19=40547 Loop section of item source
item_20=40566 Preserve pitch when changing playrate
item_21=41051 Reverse active take
item_22=-1
item_23=40176 Take channel mode: Normal
item_24=40177 Take channel mode: Reverse Stereo
item_25=40178 Take channel mode: Mono (Downmix)
item_26=40179 Take channel mode: Mono (Left)
item_27=40180 Take channel mode: Mono (Right)
item_28=-1
item_29=40380 Set item timebase to project/track default
item_30=40433 Set item timebase to time
item_31=-3
item_32=41589 Item properties...
item_33=40011 Source properties...
item_34=-1
item_35=-2 Group
item_36=40032 Group items
item_37=40033 Remove items from group
item_38=40034 Select all items in group
item_39=-3
item_40=40108 Normalize items
item_41=40254 Normalize items (common gain)
item_42=-1
item_43=40760 Dynamic split items...
item_44=-1
item_45=40362 Glue items
item_46=41588 Glue items within time selection
item_47=-1
item_48=-2 Peaks
item_49=40047 Build peaks
item_50=40048 Rebuild all peaks
item_51=40441 Rebuild peaks for selected items
item_52=40097 Remove all peaks (and do not rebuild)
item_53=-3
item_54=-2 Media
item_55=40101 Set all media online
item_56=40439 Set selected media online
item_57=40100 Set all media offline
item_58=40440 Set selected media offline
item_59=-3
title=Ite&m
[Main options]
item_0=40041 Auto-crossfade media items when editing
item_1=41117 Trim content behind media items when editing
item_2=-1
item_3=40435 Show all takes in lanes (when room)
item_4=-1
item_5=1155 Ripple editing: off
item_6=1156 Item grouping enabled
item_7=-1
item_8=1157 Enable snapping
item_9=40145 Show grid
item_10=40071 Snap/grid settings...
item_11=-1
item_12=-2 Envelope points
item_13=40070 Move envelope points with media items
item_14=41576 Envelope point selection follows time selection
item_15=40648 Add edge points when moving envelope points
item_16=40649 Add edge points when ripple editing or inserting time
item_17=40650 Reduce envelope point data when recording or drawing automation
item_18=-3
item_19=-1
item_20=40036 Automatically scroll view during playback
item_21=41817 Continuous scrolling
item_22=-1
item_23=40027 Show REAPER resource path in explorer/finder...
item_24=1528 Customize menus/toolbars...
item_25=-2 Themes
item_26=41930 Show theme editor
item_27=45500 Default Classic
item_28=-3
item_29=-2 Layouts
item_30=48500 Default Layout
item_31=-3
item_32=40016 Preferences...
title=&Options
[Main toolbar]
icon_0=toolbar_rippleone.png
icon_1=toolbar_rippleall.png
icon_3=toolbar_Marker.png
icon_4=toolbar_glue.png
icon_6=toolbar_Cut.png
icon_7=toolbar_mouse_select.png
icon_8=toolbar_cut_selection.png
icon_9=toolbar_Mute.png
item_0=41990 Toggle ripple editing per-track
item_1=41991 Toggle ripple editing all tracks
item_2=-1
item_3=_Ultraschall_Set_Marker Marker: Set marker
item_4=_Ultraschall_Set_Edit Marker: Set edit-marker
item_5=-1
item_6=40759 Item: Split items at edit cursor (select right)
item_7=_Ultraschall_Toggle_Mouse_Selection Selection: Mouse-selection - On: Time-selection, Off: Move Item
item_8=_Ultraschall_Ripple_Cut Edit: Ripple-Cut
item_9=_Ultraschall_Mute_Envelope Tracks: Show mute-envelopes of selected tracks
title=Set edit marker
[Main track]
item_0=40001 Insert new track
item_1=40702 Insert new track at end of track list
item_2=-1
item_3=40005 Remove tracks
item_4=40062 Duplicate tracks
item_5=-2 Render/freeze tracks
item_6=40789 Render tracks to mono stem tracks (and mute originals)
item_7=40788 Render tracks to stereo stem tracks (and mute originals)
item_8=40893 Render tracks to multichannel stem tracks (and mute originals)
item_9=-1
item_10=40901 Freeze tracks to mono (render pre-fader, save/remove items and online FX)
item_11=41223 Freeze tracks to stereo (render pre-fader, save/remove items and online FX)
item_12=40877 Freeze tracks to multichannel (render pre-fader, save/remove items and online FX)
item_13=-1
item_14=41644 Unfreeze tracks (restore previous items and FX)
item_15=-3
item_16=41726 Multichannel track metering
item_17=-1
item_18=_Ultraschall_Duck_Selected_Tracks_Within_Time_Selection_In_PreFX_Volume_Envelope Duck selected tracks within time-selection(Volume pre fx-envelope)
item_19=-1
item_20=-2 Track color
item_21=40357 Set tracks to custom color...
item_22=40358 Set tracks to random colors
item_23=40360 Set tracks to one random color
item_24=40359 Set tracks to default color
item_25=-3
item_26=-2 Track icon
item_27=40899 Set track icon...
item_28=40900 Remove track icon
item_29=-3
item_30=-1
item_31=-2 Set track automation mode
item_32=40400 Trim/Read
item_33=40401 Read
item_34=40402 Touch
item_35=40404 Latch
item_36=40403 Write
item_37=-3
item_38=-2 Envelopes
item_39=40052 Toggle volume active
item_40=40053 Toggle pan active
item_41=40050 Toggle volume (pre-FX) active
item_42=40051 Toggle pan (pre-FX) active
item_43=40406 Toggle volume visible
item_44=40407 Toggle pan visible
item_45=40408 Toggle volume (pre-FX) visible
item_46=40409 Toggle pan (pre-FX) visible
item_47=-1
item_48=40332 Select all points
item_49=40331 Unselect all points
item_50=40330 Select points in time selection
item_51=-2 Set shape for selected points
item_52=40189 Linear
item_53=40190 Square
item_54=40424 Slow start/end
item_55=40428 Fast start
item_56=40429 Fast end
item_57=40683 Bezier
item_58=-3
item_59=-1
item_60=40333 Remove envelope points
item_61=40089 Remove envelope points in time selection
item_62=-1
item_63=40334 Invert selected points
item_64=40415 Reset selected points to zero/center
item_65=-1
item_66=-2 Set envelope default point shape
item_67=40187 Linear
item_68=40188 Square
item_69=40425 Slow start/end
item_70=40430 Fast start
item_71=40431 Fast end
item_72=40681 Bezier
item_73=-3
item_74=40065 Clear envelope
item_75=-3
item_76=-1
item_77=40772 Track grouping parameters...
item_78=40771 Track grouping enabled
item_79=40867 Track: Toggle track mute envelope visible
title=&Track
[Main view]
item_0=40279 Docker
item_1=40078 Mixer
item_2=41609 Floating Mixer Master
item_3=40075 Master Track
item_4=41882 Monitoring FX
item_5=-1
item_6=41827 Crossfade Editor
item_7=40760 Dynamic Split
item_8=40271 FX Browser
item_9=41589 Media Item Properties
item_10=50124 Media Explorer
item_11=40268 Navigator
item_12=41228 Nudge/Set Items
item_13=42074 Peaks Display Settings
item_14=40240 Performance Meter
item_15=41157 Project Media/FX Bay
item_16=40326 Region/Marker Manager
item_17=41888 Region Render Matrix
item_18=40251 Routing Matrix
item_19=40422 Screensets/Layouts
item_20=41084 Toolbar Docker
item_21=41208 Transient Detection Settings
item_22=40906 Track Manager
item_23=40259 Transport
item_24=40072 Undo History
item_25=50125 Video Window
item_26=40377 Virtual MIDI Keyboard
item_27=-1
item_28=41074 Show/hide all floating windows
item_29=41155 Cascade all floating windows
item_30=-1
item_31=-2 Time unit for ruler
item_32=40365 Minutes:Seconds
item_33=40368 Seconds
item_34=40369 Samples
item_35=40370 Hours:Minutes:Seconds:Frames
item_36=41973 Absolute Frames
item_37=-3
item_38=-1
item_39=-2 Zoom
item_40=1012 Zoom &in
item_41=1011 Zoom &out
item_42=40031 Zoom to time &selection
item_43=41622 Zoom to selected media items
item_44=-1
item_45=40111 All tracks the same height and size up
item_46=40112 All tracks the same height and size down
item_47=-1
item_48=40110 Toggle track zoom to minimum height
item_49=40113 Toggle track zoom to maximum height
item_50=40723 Expand selected tracks, minimize others
item_51=40727 Minimize all tracks
item_52=-3
item_53=-2 Go to
item_54=40069 Jump to...
item_55=40151 Go to cursor
item_56=40150 Go to play cursor
item_57=40839 Move cursor forward one measure
item_58=40840 Move cursor back one measure
item_59=-3
item_60=-1
item_61=40239 Always on top
item_62=40346 Fullscreen
title=&View
[Media item context]
item_0=-4 Ultraschall
item_1=_Ultraschall_ColorPicker Colorpicker
item_2=40707 Reset to Track Color
item_3=_Ultraschall_Open_TakeSourceFile_In_Finder_Explorer Open item path in explorer/finder
item_4=_XENAKIOS_RENMTAKE Rename Take
item_5=_S&M_TAKEENVSHOW9 Show volume envelope of selected items
item_6=42307 Toggle Rectify Peaks
item_7=42073 Toggle Spectral Peaks
item_8=-1
item_9=40179 Take channel mode: Mono (left)
item_10=40936 Toggle normalize items
item_11=_BR_NORMALIZE_LOUDNESS_ITEMS23 Normalize loudness of selected items to -23 LUFS
item_12=40938 Reset item take gain to +0dB (un-normalize)
item_13=_Ultraschall_Remove_Silence Remove Silence
item_14=-1
item_15=-2 Item settings
item_16=40175 Mute
item_17=40636 Loop item source
item_18=40437 Play all takes
item_19=40687 Lock item
item_20=40850 Item notes...
item_21=-1
item_22=40181 Invert phase
item_23=40547 Loop section of item source
item_24=40566 Preserve pitch when changing playrate
item_25=41051 Reverse active take
item_26=-1
item_27=40176 Take channel mode: Normal
item_28=40177 Take channel mode: Reverse stereo
item_29=40178 Take channel mode: Mono (downmix)
item_30=40179 Take channel mode: Mono (left)
item_31=40180 Take channel mode: Mono (right)
item_32=-2 Take channel mode: Mono (3-64)
item_33=41388 Mono 3
item_34=41389 Mono 4
item_35=41390 Mono 5
item_36=41391 Mono 6
item_37=41392 Mono 7
item_38=41393 Mono 8
item_39=41394 Mono 9
item_40=41395 Mono 10
item_41=41396 Mono 11
item_42=41397 Mono 12
item_43=41398 Mono 13
item_44=41399 Mono 14
item_45=41400 Mono 15
item_46=41401 Mono 16
item_47=41402 Mono 17
item_48=41403 Mono 18
item_49=41404 Mono 19
item_50=41405 Mono 20
item_51=41406 Mono 21
item_52=41407 Mono 22
item_53=41408 Mono 23
item_54=41409 Mono 24
item_55=41410 Mono 25
item_56=41411 Mono 26
item_57=41412 Mono 27
item_58=41413 Mono 28
item_59=41414 Mono 29
item_60=41415 Mono 30
item_61=41416 Mono 31
item_62=41417 Mono 32
item_63=41418 Mono 33
item_64=41419 Mono 34
item_65=41420 Mono 35
item_66=41421 Mono 36
item_67=41422 Mono 37
item_68=41423 Mono 38
item_69=41424 Mono 39
item_70=41425 Mono 40
item_71=41426 Mono 41
item_72=41427 Mono 42
item_73=41428 Mono 43
item_74=41429 Mono 44
item_75=41430 Mono 45
item_76=41431 Mono 46
item_77=41432 Mono 47
item_78=41433 Mono 48
item_79=41434 Mono 49
item_80=41435 Mono 50
item_81=41436 Mono 51
item_82=41437 Mono 52
item_83=41438 Mono 53
item_84=41439 Mono 54
item_85=41440 Mono 55
item_86=41441 Mono 56
item_87=41442 Mono 57
item_88=41443 Mono 58
item_89=41444 Mono 59
item_90=41445 Mono 60
item_91=41446 Mono 61
item_92=41447 Mono 62
item_93=41448 Mono 63
item_94=41449 Mono 64
item_95=-3
item_96=-2 Take channel mode: Stereo (1-64)
item_97=41450 Stereo 1/2
item_98=41451 Stereo 2/3
item_99=41452 Stereo 3/4
item_100=41453 Stereo 4/5
item_101=41454 Stereo 5/6
item_102=41455 Stereo 6/7
item_103=41456 Stereo 7/8
item_104=41457 Stereo 8/9
item_105=41458 Stereo 9/10
item_106=41459 Stereo 10/11
item_107=41460 Stereo 11/12
item_108=41461 Stereo 12/13
item_109=41462 Stereo 13/14
item_110=41463 Stereo 14/15
item_111=41464 Stereo 15/16
item_112=41465 Stereo 16/17
item_113=41466 Stereo 17/18
item_114=41467 Stereo 18/19
item_115=41468 Stereo 19/20
item_116=41469 Stereo 20/21
item_117=41470 Stereo 21/22
item_118=41471 Stereo 22/23
item_119=41472 Stereo 23/24
item_120=41473 Stereo 24/25
item_121=41474 Stereo 25/26
item_122=41475 Stereo 26/27
item_123=41476 Stereo 27/28
item_124=41477 Stereo 28/29
item_125=41478 Stereo 29/30
item_126=41479 Stereo 30/31
item_127=41480 Stereo 31/32
item_128=41481 Stereo 32/33
item_129=41482 Stereo 33/34
item_130=41483 Stereo 34/35
item_131=41484 Stereo 35/36
item_132=41485 Stereo 36/37
item_133=41486 Stereo 37/38
item_134=41487 Stereo 38/39
item_135=41488 Stereo 39/40
item_136=41489 Stereo 40/41
item_137=41490 Stereo 41/42
item_138=41491 Stereo 42/43
item_139=41492 Stereo 43/44
item_140=41493 Stereo 44/45
item_141=41494 Stereo 45/46
item_142=41495 Stereo 46/47
item_143=41496 Stereo 47/48
item_144=41497 Stereo 48/49
item_145=41498 Stereo 49/50
item_146=41499 Stereo 50/51
item_147=41500 Stereo 51/52
item_148=41501 Stereo 52/53
item_149=41502 Stereo 53/54
item_150=41503 Stereo 54/55
item_151=41504 Stereo 55/56
item_152=41505 Stereo 56/57
item_153=41506 Stereo 57/58
item_154=41507 Stereo 58/59
item_155=41508 Stereo 59/60
item_156=41509 Stereo 60/61
item_157=41510 Stereo 61/62
item_158=41511 Stereo 62/63
item_159=41512 Stereo 63/64
item_160=-3
item_161=-1
item_162=40380 Set item timebase to project/track default
item_163=40433 Set item timebase to time
item_164=-3
item_165=41589 Item properties...
item_166=40011 Source properties...
item_167=-1
item_168=-2 Group
item_169=40032 Group items
item_170=40033 Remove items from group
item_171=40034 Select all items in group
item_172=-3
item_173=-2 Take
item_174=40125 Next take
item_175=40126 Previous take
item_176=40129 Delete active take
item_177=40131 Crop to active take
item_178=40639 Duplicate active take
item_179=41339 Lock to active take
item_180=-1
item_181=40638 Show FX chain for active take
item_182=40640 Remove FX for active take
item_183=-1
item_184=41974 Take envelopes...
item_185=40693 Take volume envelope
item_186=40694 Take pan envelope
item_187=40695 Take mute envelope
item_188=41612 Take pitch envelope
item_189=-1
item_190=40224 Explode all takes to new tracks
item_191=40642 Explode all takes (in place)
item_192=40643 Explode all takes (in order)
item_193=40438 Implode items across tracks into takes
item_194=40543 Implode items on same track into takes
item_195=40603 Paste to takes in items
item_196=-1
item_197=45000 (take list)
item_198=-3
item_199=-2 Comps
item_200=41373 Save/rename active comp...
item_201=41374 Remove active comp from list
item_202=41379 Crop list to active comp
item_203=41378 Move active comp to top lane
item_204=-1
item_205=45100 (comp list)
item_206=-3
item_207=-2 Item and take colors
item_208=40704 Set items to custom color...
item_209=40705 Set items to random colors
item_210=40706 Set items to one random color
item_211=40707 Set items to default color
item_212=-1
item_213=41331 Set active takes to custom color...
item_214=41332 Set active takes to one random color
item_215=41333 Set active takes to default color
item_216=41337 Set all takes of selected items to default color
item_217=-3
item_218=-2 Item processing
item_219=40108 Normalize items
item_220=40254 Normalize items (common gain)
item_221=-1
item_222=40760 Dynamic split items...
item_223=-1
item_224=40644 Implode items across tracks into items on one track
item_225=40645 Auto-reposition items in free item positioning mode
item_226=-1
item_227=40894 Explode multichannel audio or MIDI items to new one-channel items
item_228=-1
item_229=40692 Import media cues from items as project markers
item_230=-1
item_231=41976 Propagate take to similarly-named active takes on track
item_232=41977 Propagate item to similarly-named items on track
item_233=41978 Propagate take to all similarly-named active takes
item_234=41979 Propagate item to all similarly-named items
item_235=-3
item_236=-2 Spectral Editing
item_237=42303 Spectrogram: Toggle show spectrogram for selected items
item_238=42302 Spectrogram: Add spectral edit to item
item_239=-3
item_240=-2 Stretch markers
item_241=41842 Add stretch marker at cursor
item_242=41843 Add stretch markers at time selection
item_243=-1
item_244=-2 Stretch marker at cursor
item_245=41989 Reset
item_246=41988 Edit rate
item_247=41859 Remove
item_248=-3
item_249=-2 Stretch markers in selected items
item_250=41846 Snap to grid
item_251=41844 Remove
item_252=-3
item_253=-2 Stretch markers in selected items within time selection
item_254=41847 Snap to grid
item_255=41845 Remove
item_256=-3
item_257=-1
item_258=41857 Use tonal optimized mode
item_259=-3
item_260=-2 Open items in editor
item_261=40109 Open in editor
item_262=40202 Open in secondary editor
item_263=-1
item_264=40132 Open copies in editor
item_265=40203 Open copies in secondary editor
item_266=-1
item_267=41816 Open associated project in new tab
item_268=-3
item_269=-1
item_270=40209 Apply track/take FX to items as new take
item_271=40361 Apply track/take FX to items as new take (mono output)
item_272=41993 Apply track/take FX to items as new take (multichannel output)
item_273=40601 Render items as new take
item_274=40270 Reverse items as new take
item_275=40362 Glue items
item_276=41588 Glue items within time selection
item_277=-1
item_278=40057 Copy items
item_279=40060 Copy selected area of items
item_280=40014 Copy loop of selected area of items
item_281=40059 Cut items
item_282=40307 Cut selected area of items
item_283=40058 Paste
item_284=40006 Remove items
item_285=40508 Trim items to selected area
item_286=-1
item_287=41228 Nudge/set items...
item_288=40012 Split items at cursor
item_289=40792 Split items at prior zero crossing
item_290=40061 Split items at time selection
item_291=40548 Heal splits in items
title=Media item context
[Ruler/arrange context]
item_0=40020 &Remove selection
item_1=40031 Zoom selection
item_2=40290 Set selection to items
item_3=40802 Extend selection to next transient in items
item_4=40018 Insert media files...
item_5=-1
item_6=40171 Insert marker...
item_7=_Ultraschall_Set_Edit Insert edit marker*
item_8=_Ultraschall_Set_Named_EditMarker Insert named edit-marker
item_9=_Ultraschall_Set_Next_Planned_Marker Set next planned marker
item_10=40174 Create region from selection
item_11=40420 Remove all markers from time selection
item_12=_Ultraschall_Set_All_Markers_To_Planning_Stage Set all markers to planning stage
item_13=_Ultraschall_Import_Markers_As_Planned_From_Clipboard Import markers as planned from clipboard
item_14=-1
item_15=40049 Crop project to selection
item_16=40200 Insert empty space in selection
item_17=40201 Remove contents of selection (moving later items)
item_18=-1
item_19=40058 &Paste
item_20=40012 Split items at cursor
item_21=40061 Split items at time selection
item_22=40182 Select all
item_23=40060 Copy selected area of items
item_24=40014 Copy loop of selected area of items
item_25=-1
item_26=40365 Minutes:Seconds
item_27=40368 Seconds
item_28=40369 Samples
item_29=40370 Hours:Minutes:Seconds:Frames
item_30=41973 Absolute Frames
title=Ruler/arrange context
[Track control panel context]
item_0=-4 Ultraschall
item_1=_Ultraschall_ColorPicker Color Picker
item_2=_Ultraschall_Set_Colors_To_Sonic_Rainboom Set Colors to Gentle Sonic Rainboom
item_3=_Ultraschall_Set_Colors_To_Sonic_Rainboom_Spread Set Colors to Adjusted Sonic Rainboom
item_4=_Ultraschall_Activate_CoughButton Activate cough button
item_5=40891 Toggle mute envelope in lane
item_6=-1
item_7=40001 Insert new track
item_8=40702 Insert new track at end of track list
item_9=40701 Insert virtual instrument on new track...
item_10=-2 Insert track from template
item_11=46000 Open template...
item_12=41722 Offset template items by edit cursor
item_13=-1
item_14=46001 (track template list)
item_15=-3
item_16=40392 Save tracks as track template...
item_17=-1
item_18=40005 Remove tracks
item_19=40062 Duplicate tracks
item_20=-2 Render/freeze tracks
item_21=40789 Render tracks to mono stem tracks (and mute originals)
item_22=40788 Render tracks to stereo stem tracks (and mute originals)
item_23=40893 Render tracks to multichannel stem tracks (and mute originals)
item_24=-1
item_25=40901 Freeze tracks to mono (render pre-fader, save/remove items and online FX)
item_26=41223 Freeze tracks to stereo (render pre-fader, save/remove items and online FX)
item_27=40877 Freeze tracks to multichannel (render pre-fader, save/remove items and online FX)
item_28=-1
item_29=41644 Unfreeze tracks (restore previous items and FX)
item_30=-3
item_31=-1
item_32=41314 Lock track controls
item_33=40736 Automatic record-arm when track selected
item_34=41726 Multichannel track metering
item_35=-1
item_36=40906 Track Manager (show/hide tracks)...
item_37=-2 Track color
item_38=40357 Set tracks to custom color...
item_39=40358 Set tracks to random colors
item_40=40360 Set tracks to one random color
item_41=40359 Set tracks to default color
item_42=-2 SWS track color
item_43=_SWS_TRACKRANDCOL Set to one random custom color
item_44=_SWS_TRACKRANDCOLS Set to random custom color(s)
item_45=_SWS_TRACKGRAD Set to color gradient
item_46=_SWS_COLCHILDREN Set children to same color
item_47=_SWS_TRACKCUSTCOL1 Set to custom color 1
item_48=_SWS_TRACKCUSTCOL2 Set to custom color 2
item_49=_SWS_TRACKCUSTCOL3 Set to custom color 3
item_50=_SWS_TRACKCUSTCOL4 Set to custom color 4
item_51=_SWS_TRACKCUSTCOL5 Set to custom color 5
item_52=_SWS_TRACKCUSTCOL6 Set to custom color 6
item_53=_SWS_TRACKCUSTCOL7 Set to custom color 7
item_54=_SWS_TRACKCUSTCOL8 Set to custom color 8
item_55=_SWS_TRACKCUSTCOL9 Set to custom color 9
item_56=_SWS_TRACKCUSTCOL10 Set to custom color 10
item_57=_SWS_TRACKCUSTCOL11 Set to custom color 11
item_58=_SWS_TRACKCUSTCOL12 Set to custom color 12
item_59=_SWS_TRACKCUSTCOL13 Set to custom color 13
item_60=_SWS_TRACKCUSTCOL14 Set to custom color 14