Any way to shorten this music?


So I made this music and I want to put it in my game as a loop (and I want it to be like the music never stops) but there is an extra 3 seconds of nothing after.

So I’m asking you guys: Are there any ways I can shorten it to get rid of the 3 seconds?

GarageBand or something?

I’m not someone who edits or creates music but what about Audacity?

2 Likes

This is probably a bug that happens to mp3 files it happens to me, too.

Simply just reset the time position:

Sound.TimePosition.Changed:Connect(function()
    if Sound.TimePosition >= Sound.Timelength - 3 then
        Sound.TimePosition = 0
    end
end)
1 Like

Idk I tried using GarageBand to shorten it and when I did AirDrop to my phone I clicked Export area cycle thing or whatever and I guess now there is just a small gap:

I’m just gonna put @VegetationBush’s post as the solution because I’m probably gonna do that if I have to make music shorter.

Sometimes in your DAW, even if you have no audio in the region at the end. If there is a region at the end left open and the DAW isn’t told to only record the parts with audio in, it will save the empty trail at the end into the mp3 or etc. So you will need to double check your DAW and remove any empty space after the audio, if this may be the issue.

1 Like