Skip to content

Commit

Permalink
Update amagalma_Smart Crossfade.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
amagalma committed Sep 25, 2024
1 parent 6cc356b commit 2b699f1
Showing 1 changed file with 17 additions and 9 deletions.
26 changes: 17 additions & 9 deletions Items Editing/amagalma_Smart Crossfade.lua
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
-- @description Smart Crossfade
-- @author amagalma
-- @version 1.71
-- @version 1.72
-- @changelog
-- - fixed bug with Razor Area and enabled option "Trim content behind media items when editing"
-- - added User Setting (inside the script) for maximum gap allowance between two selected items that will crossfade (fill-in gaps)
-- @link https://forum.cockos.com/showthread.php?t=195490
-- @donation https://www.paypal.me/amagalma
-- @about
Expand Down Expand Up @@ -32,6 +32,10 @@ local remove_timesel = 1 -- Set to 1 if you want to remove the time selection (e
-- Razor Edit area settings --
local remove_RE_area = 1 -- Set to 1 if you want to remove the Razor Edit area (else keep it) --
--
-- Maximum gap between two selected items (not in time selection or RE area) that can crossfade --
-- (set it to -1, if you want it to be equal to the default split crossfade length) --
local maximum_gap = 125 -- ms. --
--
---------------------------------------------------------------------------------------------------


Expand All @@ -54,6 +58,9 @@ if xfadeshape < 0 or xfadeshape > 7 then
xfadeshape = tonumber(({reaper.get_config_var_string( "defxfadeshape" )})[2]) or 7
end

maximum_gap = maximum_gap/1000
maximum_gap = maximum_gap > -1 and maximum_gap or xfadetime


-- Razor Edit
--------------------------------
Expand Down Expand Up @@ -246,10 +253,11 @@ for tr = 1, #categorized_item do -- tracks
local second_end = second_start + reaper.GetMediaItemInfo_Value(item, "D_LENGTH")
local first_start = reaper.GetMediaItemInfo_Value(prev_item, "D_POSITION")
local first_end = first_start + reaper.GetMediaItemInfo_Value(prev_item, "D_LENGTH")
if first_end < second_start - xfadetime and (sel_start == sel_end or (first_end < sel_start and second_start > sel_end)) then
if first_end < second_start - maximum_gap and (sel_start == sel_end or (first_end < sel_start and second_start > sel_end)) then
-- items do not touch and there is no time selection covering parts of both items
-- do nothing
Msg("not touch - gap greater than xfadetime")
Msg("not touch - gap greater than maximum_gap")
Msg(string.format("Gap is %f seconds", second_start - first_end))
--[[elseif geq( second_start - first_end, xfadetime) then
--leq( first_start, second_start) and geq( first_end, second_end) then
-- one item encloses the other
Expand All @@ -273,7 +281,7 @@ for tr = 1, #categorized_item do -- tracks
reaper.SetMediaItemSelected(item, false)
change = true
end
elseif geq(second_start, first_end) and leq(second_start, first_end + xfadetime)
elseif geq(second_start, first_end) and leq(second_start, first_end + maximum_gap)
then -- items are adjacent (or there is a gap smaller or equal to the crossfade time)
Msg("adjacent - gap: " .. second_start - first_end)
if not CrossfadeOK(item, prev_item, second_start, first_end) then
Expand All @@ -284,7 +292,7 @@ for tr = 1, #categorized_item do -- tracks
end
reaper.SetMediaItemSelected(prev_item, true)
reaper.ApplyNudge(0, 1, 3, 1, second_start, 0, 0)
FadeOut(prev_item, xfadetime)
FadeOut(prev_item, maximum_gap)
reaper.SetMediaItemSelected(prev_item, false)
if groupid ~= 0 then
reaper.SetMediaItemInfo_Value( prev_item, "I_GROUPID", groupid )
Expand All @@ -295,9 +303,9 @@ for tr = 1, #categorized_item do -- tracks
reaper.SetMediaItemInfo_Value( item, "I_GROUPID", 0 )
end
reaper.SetMediaItemSelected(item, true)
reaper.ApplyNudge(0, 1, 1, 1, second_start - xfadetime, 0, 0)
Msg(xfadetime)
FadeIn(item, xfadetime)
reaper.ApplyNudge(0, 1, 1, 1, second_start - maximum_gap, 0, 0)
Msg(maximum_gap)
FadeIn(item, maximum_gap)
reaper.SetMediaItemSelected(item, false)
if groupid ~= 0 then
reaper.SetMediaItemInfo_Value( item, "I_GROUPID", groupid )
Expand Down

0 comments on commit 2b699f1

Please sign in to comment.