-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.xml
More file actions
2906 lines (2849 loc) · 277 KB
/
index.xml
File metadata and controls
2906 lines (2849 loc) · 277 KB
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
<?xml version="1.0" encoding="utf-8"?>
<index version="1" name="bfut_ReaScripts" commit="5075161017214dc8a801c648cf7cbdae7364cf99">
<category name="Items Editing">
<reapack name="bfut_Copy item to clipboard.lua" type="script" desc="bfut_Copy item to clipboard">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO USE:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Select media item.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Run script "bfut_Copy item to clipboard".\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 3)\tx360\tab Select other media item(s).\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 4)\tx360\tab Run script "bfut_Paste item from clipboard to selected items (replace)".\sa180\par}
}
]]></description>
<link rel="website">https://github.com/bfut</link>
</metadata>
<version name="1.0" author="bfut" time="2018-10-06T19:25:26Z">
<source main="main">https://github.com/bfut/ReaScripts/raw/7ba682890db29889d7704bd8685bde4319246a11/Items%20Editing/bfut_Copy%20item%20to%20clipboard.lua</source>
</version>
<version name="1.1" author="bfut" time="2019-07-20T08:45:16Z">
<source main="main">https://github.com/bfut/ReaScripts/raw/df8533ca75987f5b94120cf77eb1d9f7c833421c/Items%20Editing/bfut_Copy%20item%20to%20clipboard.lua</source>
</version>
<version name="1.2" author="bfut" time="2020-02-22T12:47:28Z">
<changelog><![CDATA[+ improved performance]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/c292102104e04e71298632cf313970ba5516ec2e/Items%20Editing/bfut_Copy%20item%20to%20clipboard.lua</source>
</version>
<version name="1.3" author="bfut" time="2023-10-17T22:00:04Z">
<changelog><![CDATA[REQUIRES: Reaper v7.00 or later
# this script set version is incompatible with any earlier versions]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/b7cd6cf55138fdb79d0daee6c707d8e8df78b493/Items%20Editing/bfut_Copy%20item%20to%20clipboard.lua</source>
</version>
</reapack>
<reapack name="bfut_Copy items to project markers, remove overlaps.lua" type="script" desc="bfut_Copy items to project markers, remove overlaps">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Propagates selected items to project markers.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO USE:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab There must be at least one project marker.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Select media item(s).\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 3)\tx360\tab Run the script.\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 REQUIRES: Reaper v6.70 or later\par}
}
]]></description>
<link rel="website">https://github.com/bfut</link>
</metadata>
<version name="1.0" author="bfut" time="2018-01-27T07:13:37Z">
<source main="main">https://github.com/bfut/ReaScripts/raw/94ec804d13e2b9073d8ad3d4b3ea68e221a24456/Items%20Editing/bfut_Copy%20items%20to%20project%20markers,%20remove%20overlaps.lua</source>
</version>
<version name="2.0" author="bfut" time="2020-02-22T12:47:04Z">
<changelog><![CDATA[+ native trim behind items behavior
+ native envelope behavior
+ inherit item grouping behavior from native copy+paste
+ improved performance]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/f3158e4807a7d21cdeb441b6b99fdbfbbe2dc6dd/Items%20Editing/bfut_Copy%20items%20to%20project%20markers,%20remove%20overlaps.lua</source>
</version>
<version name="2.1" author="bfut" time="2020-03-01T18:47:33Z">
<changelog><![CDATA[+ improved performance]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/5d45a1705cc6e8ee437bc095bcb51fa548f3d222/Items%20Editing/bfut_Copy%20items%20to%20project%20markers,%20remove%20overlaps.lua</source>
</version>
<version name="2.2" author="bfut" time="2022-11-15T10:39:03Z">
<changelog><![CDATA[+ ignore markers with distance to next below time range length threshold
+ Fix: strictly paste items to area between markers
+ Fix: paste items to respective original tracks]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/e65ec48b908b5e9af07fc9668fa5c4e15d8872b9/Items%20Editing/bfut_Copy%20items%20to%20project%20markers,%20remove%20overlaps.lua</source>
</version>
<version name="2.3" author="bfut" time="2022-11-19T14:59:35Z">
<changelog><![CDATA[+ support time signature markers]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/566f070bc827cf0bc53ec362ad81389bc7d34e5c/Items%20Editing/bfut_Copy%20items%20to%20project%20markers,%20remove%20overlaps.lua</source>
</version>
</reapack>
<reapack name="bfut_Copy items to regions.lua" type="script" desc="bfut_Copy items to regions (propagate)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Copies selected items to project regions.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO USE:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab There must be at least one region.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Select media item(s).\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 3)\tx360\tab Run the script.\sa180\par}
}
]]></description>
<link rel="website">https://github.com/bfut</link>
</metadata>
<version name="2.3" author="bfut" time="2023-10-11T05:14:54Z">
<changelog><![CDATA[REQUIRES: Reaper v6.82 or later
+ initial version]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/74892c97352335da38592901180543f7b5cfc196/Items%20Editing/bfut_Copy%20items%20to%20regions.lua</source>
</version>
</reapack>
<reapack name="bfut_Copy items within time selection to project markers, remove overlaps.lua" type="script" desc="bfut_Copy items within time selection to project markers, remove overlaps">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Propagates selected items within time selection to project markers.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO USE:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab There must be at least one project marker.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Select media item(s).\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 3)\tx360\tab Set time selection that (partially) overlaps selected item(s).\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 4)\tx360\tab Run the script.\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 REQUIRES: Reaper v6.70 or later\par}
}
]]></description>
<link rel="website">https://github.com/bfut</link>
</metadata>
<version name="2.1" author="bfut" time="2020-02-27T19:37:14Z">
<changelog><![CDATA[+ initial version]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/72bfd0a204857ad2ed7186e08ad44e1f053b0f2b/Items%20Editing/bfut_Copy%20items%20within%20time%20selection%20to%20project%20markers,%20remove%20overlaps.lua</source>
</version>
<version name="2.2" author="bfut" time="2022-11-15T10:39:03Z">
<changelog><![CDATA[+ ignore markers with distance to next below time range length threshold
+ Fix: strictly paste items to area between markers
+ Fix: paste items to respective original tracks]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/e65ec48b908b5e9af07fc9668fa5c4e15d8872b9/Items%20Editing/bfut_Copy%20items%20within%20time%20selection%20to%20project%20markers,%20remove%20overlaps.lua</source>
</version>
<version name="2.3" author="bfut" time="2022-11-19T14:59:35Z">
<changelog><![CDATA[+ support time signature markers]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/566f070bc827cf0bc53ec362ad81389bc7d34e5c/Items%20Editing/bfut_Copy%20items%20within%20time%20selection%20to%20project%20markers,%20remove%20overlaps.lua</source>
</version>
</reapack>
<reapack name="bfut_Create razor edit area from take marker section under mouse.lua" type="script" desc="bfut_Create razor edit area from take marker section under mouse">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Select take marker section\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Create razor edit area from take marker section under mouse.lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Set time selection to take marker section under mouse.lua\sa180\par}
}
]]></description>
</metadata>
<version name="1.0" author="bfut" time="2026-04-02T22:05:50Z">
<source main="main">https://github.com/bfut/ReaScripts/raw/5075161017214dc8a801c648cf7cbdae7364cf99/Items%20Editing/bfut_Create%20razor%20edit%20area%20from%20take%20marker%20section%20under%20mouse.lua</source>
</version>
</reapack>
<reapack name="bfut_Extract loop section under mouse cursor to new item.lua" type="script" desc="bfut_Extract loop section under mouse cursor to new item">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO USE:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Hover mouse over looped media item.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Run the script. REQUIRES: Reaper v6.12c or later\sa180\par}
}
]]></description>
<link rel="website">https://github.com/bfut</link>
</metadata>
<version name="1.0" author="bfut" time="2020-07-01T21:55:25Z">
<changelog><![CDATA[+ initial commit]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/0b3dc44e7b06992ecdefd59f1f4ae46b2c757eb5/Items%20Editing/bfut_Extract%20loop%20section%20under%20mouse%20cursor%20to%20new%20item.lua</source>
</version>
<version name="1.1" author="bfut" time="2020-07-11T22:21:54Z">
<changelog><![CDATA[+ support time signature markers]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/6b2a01ad987cc1103383bcaf6e0098fbfe0b0d11/Items%20Editing/bfut_Extract%20loop%20section%20under%20mouse%20cursor%20to%20new%20item.lua</source>
</version>
</reapack>
<reapack name="bfut_MIDI notes to empty items (explode note rows to subtracks).lua" type="script" desc="bfut_MIDI notes to empty items (explode note rows to subtracks)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Convert MIDI notes to items\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to items (explode note rows to subtracks).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to items (notes to subtrack, note pitch as item pitch).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to items (notes to subtrack, note pitch as item rate).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to empty items (explode note rows to subtracks).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to empty items (notes to subtrack, note pitch as item pitch).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to empty items (notes to subtrack, note pitch as item rate).lua\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Converts MIDI notes to media items in one go.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO SET UP ITEM/SAMPLE LOADER:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Select MIDI item(s) on one track.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Select another track with various media items.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 3)\tx360\tab Each used note row will point to one of the media items.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 4)\tx360\tab If there are not enough media items, you'll get empty items.\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO USE:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Select MIDI item(s).\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Select a track. (optional)\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 3)\tx360\tab Run the script.\sa180\par}
}
]]></description>
<link rel="website">https://github.com/bfut</link>
</metadata>
<version name="1.2" author="bfut" time="2020-07-01T12:58:20Z">
<changelog><![CDATA[+ convert note multiples from looped items, obeying take playrate]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/8f167dccf19784c3d50084c25bc3b2860cc2f6da/Items%20Editing/bfut_MIDI%20notes%20to%20empty%20items%20(explode%20note%20rows%20to%20subtracks).lua</source>
</version>
<version name="1.3" author="bfut" time="2020-12-18T05:37:49Z">
<changelog><![CDATA[+ support time signature markers
# Fix: no more side-effects due to arrange view zoom-level
# 'note velocity to item volume' off by default]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/425e945a0bf2995fc6b2acd20d5ed9938fa34260/Items%20Editing/bfut_MIDI%20notes%20to%20empty%20items%20(explode%20note%20rows%20to%20subtracks).lua</source>
</version>
<version name="1.4" author="bfut" time="2022-09-24T21:25:01Z">
<changelog><![CDATA[+ avoid creating excessive items from lengths below range threshold]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/edc32a41d2b44aca5f9c354a7f320a6e6e557181/Items%20Editing/bfut_MIDI%20notes%20to%20empty%20items%20(explode%20note%20rows%20to%20subtracks).lua</source>
</version>
<version name="1.5" author="bfut" time="2022-11-12T22:03:27Z">
<changelog><![CDATA[+ Copy item note text to pasted items
+ Fix: item take colors in pasted items]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/5aa1ee58b1f25439231280c12512981ef739dd2c/Items%20Editing/bfut_MIDI%20notes%20to%20empty%20items%20(explode%20note%20rows%20to%20subtracks).lua</source>
</version>
<version name="1.6" author="bfut" time="2022-11-12T22:54:31Z">
<changelog><![CDATA[+ Copy item note text to pasted items
+ Fix: item take colors in pasted items
+ Fix: adjust pitch for all takes in 'note pitch as item pitch' flavor]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/8c3ba71df4f3b5af60dc8b802038b0ff4f43c5f3/Items%20Editing/bfut_MIDI%20notes%20to%20empty%20items%20(explode%20note%20rows%20to%20subtracks).lua</source>
</version>
<version name="1.7" author="bfut" time="2022-11-28T13:25:54Z">
<changelog><![CDATA[+ preserve more item properties, especially group ID]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/102784d7b1b9774066c4ba7df15ab83bb35f3642/Items%20Editing/bfut_MIDI%20notes%20to%20empty%20items%20(explode%20note%20rows%20to%20subtracks).lua</source>
</version>
<version name="1.8" author="bfut" time="2023-09-27T16:51:46Z">
<changelog><![CDATA[REQUIRES: Reaper v6.82 or later
+ performance improvements
- no longer preserve free item position]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/64973d25f103978c26b92c2259751ed8f4a0172f/Items%20Editing/bfut_MIDI%20notes%20to%20empty%20items%20(explode%20note%20rows%20to%20subtracks).lua</source>
</version>
</reapack>
<reapack name="bfut_MIDI notes to empty items (notes to subtrack, note pitch as item pitch).lua" type="script" desc="bfut_MIDI notes to empty items (notes to subtrack, note pitch as item pitch)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Convert MIDI notes to items\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to items (explode note rows to subtracks).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to items (notes to subtrack, note pitch as item pitch).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to items (notes to subtrack, note pitch as item rate).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to empty items (explode note rows to subtracks).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to empty items (notes to subtrack, note pitch as item pitch).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to empty items (notes to subtrack, note pitch as item rate).lua\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Converts MIDI notes to media items in one go.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO SET UP ITEM/SAMPLE LOADER:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Select MIDI item(s) on one track.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Select another track with various media items.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 3)\tx360\tab Each used note row will point to one of the media items.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 4)\tx360\tab If there are not enough media items, you'll get empty items.\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO USE:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Select MIDI item(s).\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Select a track. (optional)\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 3)\tx360\tab Run the script.\sa180\par}
}
]]></description>
<link rel="website">https://github.com/bfut</link>
</metadata>
<version name="1.2" author="bfut" time="2020-07-01T12:58:35Z">
<changelog><![CDATA[+ convert note multiples from looped items, obeying take playrate]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/d9771b3f7f3eb6ca0da19c44551a5eda58c2103b/Items%20Editing/bfut_MIDI%20notes%20to%20empty%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20pitch).lua</source>
</version>
<version name="1.3" author="bfut" time="2020-12-18T05:38:05Z">
<changelog><![CDATA[+ support time signature markers
# Fix: no more side-effects due to arrange view zoom-level
# 'note velocity to item volume' off by default]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/8902a9eb5117a951a3298ee94f300e668d5068f4/Items%20Editing/bfut_MIDI%20notes%20to%20empty%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20pitch).lua</source>
</version>
<version name="1.4" author="bfut" time="2022-09-24T21:25:01Z">
<changelog><![CDATA[+ avoid creating excessive items from lengths below range threshold]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/edc32a41d2b44aca5f9c354a7f320a6e6e557181/Items%20Editing/bfut_MIDI%20notes%20to%20empty%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20pitch).lua</source>
</version>
<version name="1.5" author="bfut" time="2022-11-12T22:03:27Z">
<changelog><![CDATA[+ Copy item note text to pasted items
+ Fix: item take colors in pasted items]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/5aa1ee58b1f25439231280c12512981ef739dd2c/Items%20Editing/bfut_MIDI%20notes%20to%20empty%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20pitch).lua</source>
</version>
<version name="1.6" author="bfut" time="2022-11-12T22:54:31Z">
<changelog><![CDATA[+ Copy item note text to pasted items
+ Fix: item take colors in pasted items
+ Fix: adjust pitch for all takes in 'note pitch as item pitch' flavor]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/8c3ba71df4f3b5af60dc8b802038b0ff4f43c5f3/Items%20Editing/bfut_MIDI%20notes%20to%20empty%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20pitch).lua</source>
</version>
<version name="1.7" author="bfut" time="2022-11-28T13:25:54Z">
<changelog><![CDATA[+ preserve more item properties, especially group ID]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/102784d7b1b9774066c4ba7df15ab83bb35f3642/Items%20Editing/bfut_MIDI%20notes%20to%20empty%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20pitch).lua</source>
</version>
<version name="1.8" author="bfut" time="2023-09-27T16:51:46Z">
<changelog><![CDATA[REQUIRES: Reaper v6.82 or later
+ performance improvements
- no longer preserve free item position]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/64973d25f103978c26b92c2259751ed8f4a0172f/Items%20Editing/bfut_MIDI%20notes%20to%20empty%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20pitch).lua</source>
</version>
</reapack>
<reapack name="bfut_MIDI notes to empty items (notes to subtrack, note pitch as item rate).lua" type="script" desc="bfut_MIDI notes to empty items (notes to subtrack, note pitch as item rate)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Convert MIDI notes to items\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to items (explode note rows to subtracks).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to items (notes to subtrack, note pitch as item pitch).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to items (notes to subtrack, note pitch as item rate).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to empty items (explode note rows to subtracks).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to empty items (notes to subtrack, note pitch as item pitch).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to empty items (notes to subtrack, note pitch as item rate).lua\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Converts MIDI notes to media items in one go.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO SET UP ITEM/SAMPLE LOADER:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Select MIDI item(s) on one track.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Select another track with various media items.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 3)\tx360\tab Each used note row will point to one of the media items.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 4)\tx360\tab If there are not enough media items, you'll get empty items.\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO USE:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Select MIDI item(s).\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Select a track. (optional)\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 3)\tx360\tab Run the script.\sa180\par}
}
]]></description>
<link rel="website">https://github.com/bfut</link>
</metadata>
<version name="1.2" author="bfut" time="2020-07-01T12:58:53Z">
<changelog><![CDATA[+ convert note multiples from looped items, obeying take playrate]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/328d641568bf15aee8364e90a331392dd4e98088/Items%20Editing/bfut_MIDI%20notes%20to%20empty%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20rate).lua</source>
</version>
<version name="1.3" author="bfut" time="2020-12-18T05:38:19Z">
<changelog><![CDATA[+ support time signature markers
# Fix: no more side-effects due to arrange view zoom-level
# 'note velocity to item volume' off by default]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/a87368ca0238319a32b0e1bf22d01c916e0fb377/Items%20Editing/bfut_MIDI%20notes%20to%20empty%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20rate).lua</source>
</version>
<version name="1.4" author="bfut" time="2022-09-24T21:25:01Z">
<changelog><![CDATA[+ avoid creating excessive items from lengths below range threshold]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/edc32a41d2b44aca5f9c354a7f320a6e6e557181/Items%20Editing/bfut_MIDI%20notes%20to%20empty%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20rate).lua</source>
</version>
<version name="1.5" author="bfut" time="2022-11-12T22:03:27Z">
<changelog><![CDATA[+ Copy item note text to pasted items
+ Fix: item take colors in pasted items]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/5aa1ee58b1f25439231280c12512981ef739dd2c/Items%20Editing/bfut_MIDI%20notes%20to%20empty%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20rate).lua</source>
</version>
<version name="1.6" author="bfut" time="2022-11-12T22:54:31Z">
<changelog><![CDATA[+ Copy item note text to pasted items
+ Fix: item take colors in pasted items
+ Fix: adjust pitch for all takes in 'note pitch as item pitch' flavor]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/8c3ba71df4f3b5af60dc8b802038b0ff4f43c5f3/Items%20Editing/bfut_MIDI%20notes%20to%20empty%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20rate).lua</source>
</version>
<version name="1.7" author="bfut" time="2022-11-28T13:25:54Z">
<changelog><![CDATA[+ preserve more item properties, especially group ID]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/102784d7b1b9774066c4ba7df15ab83bb35f3642/Items%20Editing/bfut_MIDI%20notes%20to%20empty%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20rate).lua</source>
</version>
<version name="1.8" author="bfut" time="2023-09-27T16:51:46Z">
<changelog><![CDATA[REQUIRES: Reaper v6.82 or later
+ performance improvements
- no longer preserve free item position]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/64973d25f103978c26b92c2259751ed8f4a0172f/Items%20Editing/bfut_MIDI%20notes%20to%20empty%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20rate).lua</source>
</version>
</reapack>
<reapack name="bfut_MIDI notes to items (explode note rows to subtracks).lua" type="script" desc="bfut_MIDI notes to items (explode note rows to subtracks)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Convert MIDI notes to items\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to items (explode note rows to subtracks).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to items (notes to subtrack, note pitch as item pitch).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to items (notes to subtrack, note pitch as item rate).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to empty items (explode note rows to subtracks).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to empty items (notes to subtrack, note pitch as item pitch).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to empty items (notes to subtrack, note pitch as item rate).lua\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Converts MIDI notes to media items in one go.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO SET UP ITEM/SAMPLE LOADER:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Select MIDI item(s) on one track.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Select another track with various media items.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 3)\tx360\tab Each used note row will point to one of the media items.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 4)\tx360\tab If there are not enough media items, you'll get empty items.\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO USE:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Select MIDI item(s).\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Select a track. (optional)\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 3)\tx360\tab Run the script.\sa180\par}
}
]]></description>
<link rel="website">https://github.com/bfut</link>
</metadata>
<version name="1.0" author="bfut" time="2018-01-27T07:13:37Z">
<source main="main">https://github.com/bfut/ReaScripts/raw/94ec804d13e2b9073d8ad3d4b3ea68e221a24456/Items%20Editing/bfut_MIDI%20notes%20to%20items%20(explode%20note%20rows%20to%20subtracks).lua</source>
</version>
<version name="1.1" author="bfut" time="2020-02-27T19:20:55Z">
<changelog><![CDATA[+ convert note velocity to item volume
+ obey MIDI item start/end
+ improved performance]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/eb3dc8a43d7dc9824ad5cbf71141bdb9e5ae6e30/Items%20Editing/bfut_MIDI%20notes%20to%20items%20(explode%20note%20rows%20to%20subtracks).lua</source>
</version>
<version name="1.2" author="bfut" time="2020-07-01T12:56:45Z">
<changelog><![CDATA[+ convert note multiples from looped items, obeying take playrate]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/a7c03bcfa9ec283be4bbee5960e9cb3563d20beb/Items%20Editing/bfut_MIDI%20notes%20to%20items%20(explode%20note%20rows%20to%20subtracks).lua</source>
</version>
<version name="1.3" author="bfut" time="2020-12-18T05:38:32Z">
<changelog><![CDATA[+ support time signature markers
# Fix: no more side-effects due to arrange view zoom-level
# 'note velocity to item volume' off by default]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/f7ccefbe3f5195d2d498232305951840f8a0d6c9/Items%20Editing/bfut_MIDI%20notes%20to%20items%20(explode%20note%20rows%20to%20subtracks).lua</source>
</version>
<version name="1.4" author="bfut" time="2022-09-24T21:25:01Z">
<changelog><![CDATA[+ avoid creating excessive items from lengths below range threshold]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/edc32a41d2b44aca5f9c354a7f320a6e6e557181/Items%20Editing/bfut_MIDI%20notes%20to%20items%20(explode%20note%20rows%20to%20subtracks).lua</source>
</version>
<version name="1.5" author="bfut" time="2022-11-12T22:03:27Z">
<changelog><![CDATA[+ Copy item note text to pasted items
+ Fix: item take colors in pasted items]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/5aa1ee58b1f25439231280c12512981ef739dd2c/Items%20Editing/bfut_MIDI%20notes%20to%20items%20(explode%20note%20rows%20to%20subtracks).lua</source>
</version>
<version name="1.6" author="bfut" time="2022-11-12T22:54:31Z">
<changelog><![CDATA[+ Copy item note text to pasted items
+ Fix: item take colors in pasted items
+ Fix: adjust pitch for all takes in 'note pitch as item pitch' flavor]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/8c3ba71df4f3b5af60dc8b802038b0ff4f43c5f3/Items%20Editing/bfut_MIDI%20notes%20to%20items%20(explode%20note%20rows%20to%20subtracks).lua</source>
</version>
<version name="1.7" author="bfut" time="2022-11-28T13:25:54Z">
<changelog><![CDATA[+ preserve more item properties, especially group ID]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/102784d7b1b9774066c4ba7df15ab83bb35f3642/Items%20Editing/bfut_MIDI%20notes%20to%20items%20(explode%20note%20rows%20to%20subtracks).lua</source>
</version>
<version name="1.8" author="bfut" time="2023-09-27T16:51:46Z">
<changelog><![CDATA[REQUIRES: Reaper v6.82 or later
+ performance improvements
- no longer preserve free item position]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/64973d25f103978c26b92c2259751ed8f4a0172f/Items%20Editing/bfut_MIDI%20notes%20to%20items%20(explode%20note%20rows%20to%20subtracks).lua</source>
</version>
</reapack>
<reapack name="bfut_MIDI notes to items (notes to subtrack, note pitch as item pitch).lua" type="script" desc="bfut_MIDI notes to items (notes to subtrack, note pitch as item pitch)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Convert MIDI notes to items\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to items (explode note rows to subtracks).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to items (notes to subtrack, note pitch as item pitch).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to items (notes to subtrack, note pitch as item rate).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to empty items (explode note rows to subtracks).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to empty items (notes to subtrack, note pitch as item pitch).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to empty items (notes to subtrack, note pitch as item rate).lua\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Converts MIDI notes to media items in one go.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO SET UP ITEM/SAMPLE LOADER:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Select MIDI item(s) on one track.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Select another track with various media items.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 3)\tx360\tab Each used note row will point to one of the media items.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 4)\tx360\tab If there are not enough media items, you'll get empty items.\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO USE:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Select MIDI item(s).\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Select a track. (optional)\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 3)\tx360\tab Run the script.\sa180\par}
}
]]></description>
<link rel="website">https://github.com/bfut</link>
</metadata>
<version name="1.0" author="bfut" time="2018-01-27T07:13:37Z">
<source main="main">https://github.com/bfut/ReaScripts/raw/94ec804d13e2b9073d8ad3d4b3ea68e221a24456/Items%20Editing/bfut_MIDI%20notes%20to%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20pitch).lua</source>
</version>
<version name="1.1" author="bfut" time="2020-02-27T19:21:26Z">
<changelog><![CDATA[+ convert note velocity to item volume
+ obey MIDI item start/end
+ improved performance]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/16b61d48d4fdfa794c9c3c07be2e451d1c1bd502/Items%20Editing/bfut_MIDI%20notes%20to%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20pitch).lua</source>
</version>
<version name="1.2" author="bfut" time="2020-07-01T12:57:34Z">
<changelog><![CDATA[+ convert note multiples from looped items, obeying take playrate]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/689233e38060b387d9dae6f1667286804523e483/Items%20Editing/bfut_MIDI%20notes%20to%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20pitch).lua</source>
</version>
<version name="1.3" author="bfut" time="2020-12-18T05:38:45Z">
<changelog><![CDATA[+ support time signature markers
# Fix: no more side-effects due to arrange view zoom-level
# 'note velocity to item volume' off by default]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/78f4a3ff92917413bd812dec9597237ecd566340/Items%20Editing/bfut_MIDI%20notes%20to%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20pitch).lua</source>
</version>
<version name="1.4" author="bfut" time="2022-09-24T21:25:01Z">
<changelog><![CDATA[+ avoid creating excessive items from lengths below range threshold]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/edc32a41d2b44aca5f9c354a7f320a6e6e557181/Items%20Editing/bfut_MIDI%20notes%20to%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20pitch).lua</source>
</version>
<version name="1.5" author="bfut" time="2022-11-12T22:03:27Z">
<changelog><![CDATA[+ Copy item note text to pasted items
+ Fix: item take colors in pasted items]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/5aa1ee58b1f25439231280c12512981ef739dd2c/Items%20Editing/bfut_MIDI%20notes%20to%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20pitch).lua</source>
</version>
<version name="1.6" author="bfut" time="2022-11-12T22:54:31Z">
<changelog><![CDATA[+ Copy item note text to pasted items
+ Fix: item take colors in pasted items
+ Fix: adjust pitch for all takes in 'note pitch as item pitch' flavor]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/8c3ba71df4f3b5af60dc8b802038b0ff4f43c5f3/Items%20Editing/bfut_MIDI%20notes%20to%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20pitch).lua</source>
</version>
<version name="1.7" author="bfut" time="2022-11-28T13:25:54Z">
<changelog><![CDATA[+ preserve more item properties, especially group ID]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/102784d7b1b9774066c4ba7df15ab83bb35f3642/Items%20Editing/bfut_MIDI%20notes%20to%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20pitch).lua</source>
</version>
<version name="1.8" author="bfut" time="2023-09-27T16:51:46Z">
<changelog><![CDATA[REQUIRES: Reaper v6.82 or later
+ performance improvements
- no longer preserve free item position]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/64973d25f103978c26b92c2259751ed8f4a0172f/Items%20Editing/bfut_MIDI%20notes%20to%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20pitch).lua</source>
</version>
</reapack>
<reapack name="bfut_MIDI notes to items (notes to subtrack, note pitch as item rate).lua" type="script" desc="bfut_MIDI notes to items (notes to subtrack, note pitch as item rate)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Convert MIDI notes to items\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to items (explode note rows to subtracks).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to items (notes to subtrack, note pitch as item pitch).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to items (notes to subtrack, note pitch as item rate).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to empty items (explode note rows to subtracks).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to empty items (notes to subtrack, note pitch as item pitch).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_MIDI notes to empty items (notes to subtrack, note pitch as item rate).lua\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Converts MIDI notes to media items in one go.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO SET UP ITEM/SAMPLE LOADER:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Select MIDI item(s) on one track.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Select another track with various media items.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 3)\tx360\tab Each used note row will point to one of the media items.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 4)\tx360\tab If there are not enough media items, you'll get empty items.\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO USE:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Select MIDI item(s).\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Select a track. (optional)\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 3)\tx360\tab Run the script.\sa180\par}
}
]]></description>
<link rel="website">https://github.com/bfut</link>
</metadata>
<version name="1.0" author="bfut" time="2018-01-27T07:13:37Z">
<source main="main">https://github.com/bfut/ReaScripts/raw/94ec804d13e2b9073d8ad3d4b3ea68e221a24456/Items%20Editing/bfut_MIDI%20notes%20to%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20rate).lua</source>
</version>
<version name="1.1" author="bfut" time="2020-02-27T19:21:52Z">
<changelog><![CDATA[+ convert note velocity to item volume
+ obey MIDI item start/end
+ improved performance]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/7a215368aea282ce0dcc94b6989112b78dd373eb/Items%20Editing/bfut_MIDI%20notes%20to%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20rate).lua</source>
</version>
<version name="1.2" author="bfut" time="2020-07-01T12:57:54Z">
<changelog><![CDATA[+ convert note multiples from looped items, obeying take playrate]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/f337425e8965d3642a66a633b6643af8fbd77434/Items%20Editing/bfut_MIDI%20notes%20to%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20rate).lua</source>
</version>
<version name="1.3" author="bfut" time="2020-12-18T05:38:57Z">
<changelog><![CDATA[+ support time signature markers
# Fix: no more side-effects due to arrange view zoom-level
# 'note velocity to item volume' off by default]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/676fdc8164344c67805cfb3680855d6e79965bf5/Items%20Editing/bfut_MIDI%20notes%20to%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20rate).lua</source>
</version>
<version name="1.4" author="bfut" time="2022-09-24T21:25:01Z">
<changelog><![CDATA[+ avoid creating excessive items from lengths below range threshold]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/edc32a41d2b44aca5f9c354a7f320a6e6e557181/Items%20Editing/bfut_MIDI%20notes%20to%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20rate).lua</source>
</version>
<version name="1.5" author="bfut" time="2022-11-12T22:03:27Z">
<changelog><![CDATA[+ Copy item note text to pasted items
+ Fix: item take colors in pasted items]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/5aa1ee58b1f25439231280c12512981ef739dd2c/Items%20Editing/bfut_MIDI%20notes%20to%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20rate).lua</source>
</version>
<version name="1.6" author="bfut" time="2022-11-12T22:54:31Z">
<changelog><![CDATA[+ Copy item note text to pasted items
+ Fix: item take colors in pasted items
+ Fix: adjust pitch for all takes in 'note pitch as item pitch' flavor]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/8c3ba71df4f3b5af60dc8b802038b0ff4f43c5f3/Items%20Editing/bfut_MIDI%20notes%20to%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20rate).lua</source>
</version>
<version name="1.7" author="bfut" time="2022-11-28T13:25:54Z">
<changelog><![CDATA[+ preserve more item properties, especially group ID]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/102784d7b1b9774066c4ba7df15ab83bb35f3642/Items%20Editing/bfut_MIDI%20notes%20to%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20rate).lua</source>
</version>
<version name="1.8" author="bfut" time="2023-09-27T16:51:46Z">
<changelog><![CDATA[REQUIRES: Reaper v6.82 or later
+ performance improvements
- no longer preserve free item position]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/64973d25f103978c26b92c2259751ed8f4a0172f/Items%20Editing/bfut_MIDI%20notes%20to%20items%20(notes%20to%20subtrack,%20note%20pitch%20as%20item%20rate).lua</source>
</version>
</reapack>
<reapack name="bfut_Paste item from clipboard to selected items (replace).lua" type="script" desc="bfut_Paste item from clipboard to selected items (replace)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO USE:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Select media item.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Run script "bfut_Copy item to clipboard".\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 3)\tx360\tab Select other media item(s).\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 4)\tx360\tab Run script "bfut_Paste item from clipboard to selected items (replace)".\sa180\par}
}
]]></description>
<link rel="website">https://github.com/bfut</link>
</metadata>
<version name="1.0" author="bfut" time="2018-10-06T19:25:26Z">
<source main="main">https://github.com/bfut/ReaScripts/raw/7ba682890db29889d7704bd8685bde4319246a11/Items%20Editing/bfut_Paste%20item%20from%20clipboard%20to%20selected%20items%20(replace).lua</source>
</version>
<version name="1.1" author="bfut" time="2019-07-20T08:45:30Z">
<source main="main">https://github.com/bfut/ReaScripts/raw/706b5b41b0f5fa32f7f4ff2b0b8c8b1d9851bb7c/Items%20Editing/bfut_Paste%20item%20from%20clipboard%20to%20selected%20items%20(replace).lua</source>
</version>
<version name="1.2" author="bfut" time="2020-02-22T12:48:11Z">
<changelog><![CDATA[+ native pooled (ghost) MIDI item behavior
+ Fix: replace FXIDs in replaced items
Requires SWS v2.11.0.0 or later]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/d969c76506db5b84efa1125742a0651709108a32/Items%20Editing/bfut_Paste%20item%20from%20clipboard%20to%20selected%20items%20(replace).lua</source>
</version>
<version name="1.3" author="bfut" time="2023-10-17T22:00:04Z">
<changelog><![CDATA[REQUIRES: Reaper v7.00 or later
+ add support for item lanes / free item position: preserve positions of selected items
# this script set version is incompatible with any earlier versions]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/b7cd6cf55138fdb79d0daee6c707d8e8df78b493/Items%20Editing/bfut_Paste%20item%20from%20clipboard%20to%20selected%20items%20(replace).lua</source>
</version>
</reapack>
<reapack name="bfut_Remove item under mouse cursor (delete).lua" type="script" desc="bfut_Remove item under mouse cursor (delete)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Step sequencer for items\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Step sequencer (copy first item on track and fill grid bar under mouse)\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Step sequencer (copy first item on track to grid bar under mouse).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Remove item under mouse cursor (delete).lua\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO USE:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Hover mouse over item.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Run the script.\sa180\par}
}
]]></description>
<link rel="website">https://github.com/bfut</link>
</metadata>
<version name="1.0" author="bfut" time="2019-12-29T19:41:45Z">
<source main="main">https://github.com/bfut/ReaScripts/raw/1886f389de482bfa5913ec75d7b8d1c9709deed4/Items%20Editing/bfut_Remove%20item%20under%20mouse%20cursor%20(delete).lua</source>
</version>
<version name="1.1" author="bfut" time="2020-02-22T12:47:52Z">
<changelog><![CDATA[+ no longer requires SWS extension]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/e141498931f8625bb925cddc2fa8336c93b5806c/Items%20Editing/bfut_Remove%20item%20under%20mouse%20cursor%20(delete).lua</source>
</version>
<version name="2.6" author="bfut" time="2023-09-16T11:09:02Z">
<changelog><![CDATA[+ performance improvements]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/ab5c2fae47fa2800331fd74dd1269900311008ef/Items%20Editing/bfut_Remove%20item%20under%20mouse%20cursor%20(delete).lua</source>
</version>
</reapack>
<reapack name="bfut_Replace item under mouse cursor with selected item.lua" type="script" desc="bfut_Replace item under mouse cursor with selected item">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO USE:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Select media item.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Hover mouse over another item.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 3)\tx360\tab Run the script.\sa180\par}
}
]]></description>
<link rel="website">https://github.com/bfut</link>
</metadata>
<version name="1.0" author="bfut" time="2018-10-06T19:25:26Z">
<source main="main">https://github.com/bfut/ReaScripts/raw/7ba682890db29889d7704bd8685bde4319246a11/Items%20Editing/bfut_Replace%20item%20under%20mouse%20cursor%20with%20selected%20item.lua</source>
</version>
<version name="1.1" author="bfut" time="2019-07-20T08:44:41Z">
<source main="main">https://github.com/bfut/ReaScripts/raw/76ae20f26cb5dbd6fa006fe2a78b9cb5f88f8187/Items%20Editing/bfut_Replace%20item%20under%20mouse%20cursor%20with%20selected%20item.lua</source>
</version>
<version name="1.2" author="bfut" time="2020-02-22T12:48:33Z">
<changelog><![CDATA[+ native pooled (ghost) MIDI item behavior
+ Fix: replace FXIDs in replaced item]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/e55faeadf37cd3c1f6feaf6b91abc7d62c3dee10/Items%20Editing/bfut_Replace%20item%20under%20mouse%20cursor%20with%20selected%20item.lua</source>
</version>
<version name="1.3" author="bfut" time="2023-10-17T22:00:04Z">
<changelog><![CDATA[REQUIRES: Reaper v7.00 or later
+ add support for item lanes / free item position: preserve position of item under mouse]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/b7cd6cf55138fdb79d0daee6c707d8e8df78b493/Items%20Editing/bfut_Replace%20item%20under%20mouse%20cursor%20with%20selected%20item.lua</source>
</version>
</reapack>
<reapack name="bfut_Select items of less than 1 sample in length.lua" type="script" desc="bfut_Select items of less than 1 sample in length">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO USE:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Run the script. REQUIRES: Reaper v6.70 or later\sa180\par}
}
]]></description>
<link rel="website">https://github.com/bfut</link>
</metadata>
<version name="1.0" author="bfut" time="2022-11-28T10:02:48Z">
<source main="main">https://github.com/bfut/ReaScripts/raw/cf43cdf8bb76f489fc993d218c85df7c9a8b0539/Items%20Editing/bfut_Select%20items%20of%20less%20than%201%20sample%20in%20length.lua</source>
</version>
</reapack>
<reapack name="bfut_Set time selection to take marker section under mouse.lua" type="script" desc="bfut_Set time selection to take marker section under mouse">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Select take marker section\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Create razor edit area from take marker section under mouse.lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Set time selection to take marker section under mouse.lua\sa180\par}
}
]]></description>
</metadata>
<version name="1.0" author="bfut" time="2026-04-02T22:05:50Z">
<source main="main">https://github.com/bfut/ReaScripts/raw/5075161017214dc8a801c648cf7cbdae7364cf99/Items%20Editing/bfut_Set%20time%20selection%20to%20take%20marker%20section%20under%20mouse.lua</source>
</version>
</reapack>
<reapack name="bfut_Split looped item into separate items.lua" type="script" desc="bfut_Split looped item into separate items">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO USE:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Select media item(s).\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Run the script. REQUIRES: Reaper v6.12c or later\sa180\par}
}
]]></description>
<link rel="website">https://github.com/bfut</link>
</metadata>
<version name="1.0" author="bfut" time="2018-01-27T07:13:37Z">
<source main="main">https://github.com/bfut/ReaScripts/raw/94ec804d13e2b9073d8ad3d4b3ea68e221a24456/Items%20Editing/bfut_Split%20looped%20item%20into%20separate%20items.lua</source>
</version>
<version name="1.1" author="bfut" time="2020-02-22T12:49:01Z">
<changelog><![CDATA[+ ignore locked items]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/7c0aa9392415db6f8a12e8b1aa7990da61af697e/Items%20Editing/bfut_Split%20looped%20item%20into%20separate%20items.lua</source>
</version>
<version name="1.2" author="bfut" time="2020-07-01T21:55:54Z">
<changelog><![CDATA[+ obey take source start offset]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/1c980e76fe68fe6d31ed67b2e96d5fa64a865053/Items%20Editing/bfut_Split%20looped%20item%20into%20separate%20items.lua</source>
</version>
<version name="1.3" author="bfut" time="2020-07-11T22:21:20Z">
<changelog><![CDATA[+ support time signature markers
# Fix: no more infinite loop for empty items]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/ffdd41dbba9425101592b9f14a6dc72daef23d75/Items%20Editing/bfut_Split%20looped%20item%20into%20separate%20items.lua</source>
</version>
</reapack>
<reapack name="bfut_Step sequencer (copy first item on track and fill grid bar under mouse).lua" type="script" desc="bfut_Step sequencer (copy first item on track and fill grid bar under mouse)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Step sequencer for items\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Step sequencer (copy first item on track and fill grid bar under mouse)\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Step sequencer (copy first item on track to grid bar under mouse).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Remove item under mouse cursor (delete).lua\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Copies first item on track under mouse cursor to grid bar under mouse cursor.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO USE:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab There should be at least one item on the track under mouse cursor. (optional)\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Hover mouse over track in arrange view.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 3)\tx360\tab Run the script.\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO SET UP:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Install the scripts.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Optionally toggle ON, "Options > Trim content behind media items when editing"\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 3)\tx360\tab Works well with both, mouse modifiers and keyboard shortcuts. Holding a key combination, continuously executes a script.\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 POSSIBLE USAGE: Add source media item at the beginning of a target track. Set a time selection (e.g., 16 grid bars). Hit play. As you add and remove media items, REAPER's arrange view now behaves like a pattern-based step sequencer. Try adjusting the grid divison.\par}
}
]]></description>
<link rel="website">https://github.com/bfut</link>
</metadata>
<version name="2.0" author="bfut" time="2019-12-31T16:08:19Z">
<source main="main">https://github.com/bfut/ReaScripts/raw/0c388ab2df0a2038a8679b7f943ed78efb73b76a/Items%20Editing/bfut_Step%20sequencer%20(copy%20first%20item%20on%20track%20and%20fill%20grid%20bar%20under%20mouse).lua</source>
</version>
<version name="2.5" author="bfut" time="2020-02-23T17:13:05Z">
<changelog><![CDATA[+ native item snap behavior
+ native trim behind items behavior
+ Fix: arrange view scrolling
+ performance improvements]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/c09c54773c19890e2c7985c822cf0be7b3b9e1e3/Items%20Editing/bfut_Step%20sequencer%20(copy%20first%20item%20on%20track%20and%20fill%20grid%20bar%20under%20mouse).lua</source>
</version>
<version name="2.6" author="bfut" time="2023-10-17T22:00:04Z">
<changelog><![CDATA[REQUIRES: Reaper v7.00 or later
+ add support for item lanes / item position: use item lane / item position under mouse
+ change snap behavior: nearest grid division instead of always previous grid division]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/b7cd6cf55138fdb79d0daee6c707d8e8df78b493/Items%20Editing/bfut_Step%20sequencer%20(copy%20first%20item%20on%20track%20and%20fill%20grid%20bar%20under%20mouse).lua</source>
</version>
</reapack>
<reapack name="bfut_Step sequencer (copy first item on track to grid bar under mouse).lua" type="script" desc="bfut_Step sequencer (copy first item on track to grid bar under mouse)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Step sequencer for items\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Step sequencer (copy first item on track and fill grid bar under mouse)\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Step sequencer (copy first item on track to grid bar under mouse).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Remove item under mouse cursor (delete).lua\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Copies first item on track under mouse cursor to grid bar under mouse cursor.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO USE:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab There should be at least one item on the track under mouse cursor. (optional)\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Hover mouse over track in arrange view.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 3)\tx360\tab Run the script.\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO SET UP:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Install the scripts.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Optionally toggle ON, "Options > Trim content behind media items when editing"\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 3)\tx360\tab Works well with both, mouse modifiers and keyboard shortcuts. Holding a key combination, continuously executes a script.\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 POSSIBLE USAGE: Add source media item at the beginning of a target track. Set a time selection (e.g., 16 grid bars). Hit play. As you add and remove media items, REAPER's arrange view now behaves like a pattern-based step sequencer. Try adjusting the grid divison.\par}
}
]]></description>
<link rel="website">https://github.com/bfut</link>
</metadata>
<version name="2.0" author="bfut" time="2019-12-31T16:08:37Z">
<source main="main">https://github.com/bfut/ReaScripts/raw/45940cb86b82e7716918e195375985b4bc5e9102/Items%20Editing/bfut_Step%20sequencer%20(copy%20first%20item%20on%20track%20to%20grid%20bar%20under%20mouse).lua</source>
</version>
<version name="2.5" author="bfut" time="2020-02-23T17:14:19Z">
<changelog><![CDATA[+ native item snap behavior
+ native trim behind items behavior
+ Fix: arrange view scrolling
+ performance improvements]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/e3c84f1e1d7d7a246a724c65146e08326dc6a998/Items%20Editing/bfut_Step%20sequencer%20(copy%20first%20item%20on%20track%20to%20grid%20bar%20under%20mouse).lua</source>
</version>
<version name="2.6" author="bfut" time="2023-10-17T22:00:04Z">
<changelog><![CDATA[REQUIRES: Reaper v7.00 or later
+ add support for item lanes / item position: use item lane / item position under mouse
+ change snap behavior: nearest grid division instead of always previous grid division]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/b7cd6cf55138fdb79d0daee6c707d8e8df78b493/Items%20Editing/bfut_Step%20sequencer%20(copy%20first%20item%20on%20track%20to%20grid%20bar%20under%20mouse).lua</source>
</version>
</reapack>
<reapack name="bfut_Trim to source media lengths (limit items lengths).lua" type="script" desc="bfut_Trim to source media lengths (limit items lengths)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO USE:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Select media item(s).\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Run the script. REQUIRES: Reaper v5.99 or later\sa180\par}
}
]]></description>
<link rel="website">https://github.com/bfut</link>
</metadata>
<version name="1.0" author="bfut" time="2018-01-27T07:13:37Z">
<source main="main">https://github.com/bfut/ReaScripts/raw/94ec804d13e2b9073d8ad3d4b3ea68e221a24456/Items%20Editing/bfut_Trim%20to%20source%20media%20lengths%20(limit%20items%20lengths).lua</source>
</version>
<version name="1.1" author="bfut" time="2020-02-22T12:49:20Z">
<changelog><![CDATA[+ ignore locked items]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/a4e6be2cdc7a09f480d4e96c080f87bedf17a7db/Items%20Editing/bfut_Trim%20to%20source%20media%20lengths%20(limit%20items%20lengths).lua</source>
</version>
</reapack>
<reapack name="bfut_Unselect grouped items.lua" type="script" desc="bfut_Unselect grouped items">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO USE:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Select item(s).\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Run the script. REQUIRES: Reaper v6.16 or later\sa180\par}
}
]]></description>
<link rel="website">https://github.com/bfut</link>
</metadata>
<version name="1.0" author="bfut" time="2020-12-11T00:12:22Z">
<source main="main">https://github.com/bfut/ReaScripts/raw/0ce6227f17bdc72caf5be76454507bfede7e2c97/Items%20Editing/bfut_Unselect%20grouped%20items.lua</source>
</version>
</reapack>
<reapack name="bfut_Unselect items outside time selection.lua" type="script" desc="bfut_Unselect items outside time selection">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO USE:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Run the script. REQUIRES: Reaper v6.70 or later\sa180\par}
}
]]></description>
<link rel="website">https://github.com/bfut</link>
</metadata>
<version name="1.0" author="bfut" time="2022-11-19T14:58:49Z">
<source main="main">https://github.com/bfut/ReaScripts/raw/77aaff49a1221540b009af6503145e9a6d2fb2a3/Items%20Editing/bfut_Unselect%20items%20outside%20time%20selection.lua</source>
</version>
</reapack>
<reapack name="bfut_Unselect items touching time selection.lua" type="script" desc="bfut_Unselect items touching time selection">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO USE:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Run the script. REQUIRES: Reaper v6.70 or later\sa180\par}
}
]]></description>
<link rel="website">https://github.com/bfut</link>
</metadata>
<version name="1.0" author="bfut" time="2022-11-19T14:59:15Z">
<source main="main">https://github.com/bfut/ReaScripts/raw/0198c966592fdcfd636cf880b4f3d73b844f7918/Items%20Editing/bfut_Unselect%20items%20touching%20time%20selection.lua</source>
</version>
</reapack>
<reapack name="bfut_Unselect items within time selection.lua" type="script" desc="bfut_Unselect items within time selection">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO USE:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Run the script. REQUIRES: Reaper v6.70 or later\sa180\par}
}
]]></description>
<link rel="website">https://github.com/bfut</link>
</metadata>
<version name="1.0" author="bfut" time="2022-11-19T14:59:01Z">
<source main="main">https://github.com/bfut/ReaScripts/raw/3f8e773b00fe34769d41cb7dee1cd5c70ad8b7d5/Items%20Editing/bfut_Unselect%20items%20within%20time%20selection.lua</source>
</version>
</reapack>
<reapack name="bfut_Unselect ungrouped items.lua" type="script" desc="bfut_Unselect ungrouped items">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO USE:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Select item(s).\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Run the script. REQUIRES: Reaper v6.16 or later\sa180\par}
}
]]></description>
<link rel="website">https://github.com/bfut</link>
</metadata>
<version name="1.0" author="bfut" time="2020-12-11T00:13:10Z">
<source main="main">https://github.com/bfut/ReaScripts/raw/25610b39fc6f4d3c21498571f9c17280c53b9d73/Items%20Editing/bfut_Unselect%20ungrouped%20items.lua</source>
</version>
</reapack>
</category>
<category name="Items Properties">
<reapack name="bfut_Copy item properties to clipboard.lua" type="script" desc="bfut_Copy item properties to clipboard">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Copy and paste properties\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Copy item properties to clipboard.lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Paste item properties from clipboard to set selected items property (volume).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Paste item properties from clipboard to set selected items property (length).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Paste item properties from clipboard to set selected items property (snapoffset).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Paste item properties from clipboard to set selected items property (fadeinlength).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Paste item properties from clipboard to set selected items property (fadeoutlength).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Paste item properties from clipboard to set selected items property (fadeincurvature).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Paste item properties from clipboard to set selected items property (fadeoutcurvature).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Paste item properties from clipboard to set selected items property (autofadeinlength).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Paste item properties from clipboard to set selected items property (autofadeoutlength).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Paste item properties from clipboard to set selected items property (fadeinshape).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Paste item properties from clipboard to set selected items property (fadeoutshape).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Paste item properties from clipboard to set selected items property (lowpassfade).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Paste item properties from clipboard to set selected items property (activetake).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Paste item properties from clipboard to set selected items property (fixedlane).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Paste item properties from clipboard to set selected items property (freeitemposition).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Paste item properties from clipboard to set selected items take property (startoffset).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Paste item properties from clipboard to set selected items take property (volume).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Paste item properties from clipboard to set selected items take property (pan).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Paste item properties from clipboard to set selected items take property (panlaw).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Paste item properties from clipboard to set selected items take property (playrate).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Paste item properties from clipboard to set selected items take property (pitch).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Paste item properties from clipboard to set selected items take property (preservepitch).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Paste item properties from clipboard to set selected items take property (channelmode).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Paste item properties from clipboard to set selected items take property (pitchmode).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Paste item properties from clipboard to set selected items take property (recordpassid).lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Paste item properties from clipboard to set selected items take markers.lua\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab bfut_Paste item properties from clipboard to set selected items take stretch markers.lua\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Copies and sets specific property in selected items. Observes item lock status.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 HOW TO USE:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 1)\tx360\tab Select media item.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 2)\tx360\tab Run script "bfut_Copy item properties to clipboard"\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 3)\tx360\tab Select other media item(s).\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 4)\tx360\tab Run one of the scripts "bfut_Paste item properties from clipboard to set selected items ... (...)"\sa180\par}
}
]]></description>
<link rel="website">https://github.com/bfut</link>
</metadata>
<version name="1.0" author="bfut" time="2023-04-25T17:04:03Z">
<source main="main">https://github.com/bfut/ReaScripts/raw/5e3a4c6495142c79bdc54e0e5d7baaf6f5108968/Items%20Properties/bfut_Copy%20item%20properties%20to%20clipboard.lua</source>
</version>
<version name="1.1" author="bfut" time="2023-04-25T17:06:02Z">
<changelog><![CDATA[+ support more item and item take properties]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/d25caeb2385aaafa40d73402f481d2a62e88f450/Items%20Properties/bfut_Copy%20item%20properties%20to%20clipboard.lua</source>
</version>
<version name="1.2" author="bfut" time="2023-04-27T17:08:33Z">
<changelog><![CDATA[+ improved performance]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/080999a334aaf2852c23eaefc910a70fae0da6dc/Items%20Properties/bfut_Copy%20item%20properties%20to%20clipboard.lua</source>
</version>
<version name="1.3" author="bfut" time="2023-04-28T11:57:13Z">
<changelog><![CDATA[+ support copy-/pasting stretch markers
+ this script set version is incompatible with any earlier versions]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/3b55f19434f9aef7d8651c1c0efb00dff17ea0e6/Items%20Properties/bfut_Copy%20item%20properties%20to%20clipboard.lua</source>
</version>
<version name="1.4" author="bfut" time="2023-10-17T22:00:04Z">
<changelog><![CDATA[REQUIRES: Reaper v7.00 or later
+ add support for fixed item lane property, see new script (fixedlane)
+ add support for free item position property, see new script (freeitemposition)
# this script set version is incompatible with any earlier versions]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/b7cd6cf55138fdb79d0daee6c707d8e8df78b493/Items%20Properties/bfut_Copy%20item%20properties%20to%20clipboard.lua</source>
</version>
<version name="1.5" author="bfut" time="2025-11-30T16:56:32Z">
<changelog><![CDATA[REQUIRES: Reaper v7.55 or later
+ extend support for item fade properties, see new scripts (fadeincurvature, fadeoutcurvature, autofadeinlength, autofadeoutlength, lowpassfade)
+ add support for active take property, see new script (activetake)
# this script set version is incompatible with any earlier versions]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/e8652dca5c73f3e29440942ddf80bf6a7fce5dbb/Items%20Properties/bfut_Copy%20item%20properties%20to%20clipboard.lua</source>
</version>
<version name="1.6" author="bfut" time="2025-12-14T23:26:32Z">
<changelog><![CDATA[REQUIRES: Reaper v7.56 or later
+ support copy-/pasting take markers
+ extend support for item take properties, see new scripts (panlaw, preservepitch, channelmode, pitchmode, recordpassid)
# this script set version is incompatible with any earlier versions]]></changelog>
<source main="main">https://github.com/bfut/ReaScripts/raw/f6760603779369d8e0f463fefd273bfdab9feb56/Items%20Properties/bfut_Copy%20item%20properties%20to%20clipboard.lua</source>
</version>
</reapack>
<reapack name="bfut_Paste item properties from clipboard to set selected items property (activetake).lua" type="script" desc="bfut_Paste item properties from clipboard to set selected items property (activetake)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}