Title: Re: Looping a _SND* File?
Post by: TerryRitchie on September 26, 2018, 12:54:16 pm
I'm all for using code whenever possible and practical. However, it sounds like he simply wants it to loop without the pause embedded in the music itself.
Using a coding a approach means having to monitor it constantly. Removing the dead space completely means no monitoring:
_SNDLOOP music&
Fire and forget.
Title: Re: Looping a _SND* File?
Post by: Petr on September 26, 2018, 01:20:39 pm
Yes it is true. I see that I have understood the problem described again wrongly. Well, if sndloop wants no pause and the MP3 file has a gap at the end, say 3 minutes lenght and at the end pause 1 second, it can also be solved with one line.
IF _SNDLENGHT (musicloop)> 179 THEN _SNDSETPOS (musicloop), 0. But of course, everyone will do it on their own.
Title: Re: Looping a _SND* File?
Post by: SirCrow on September 30, 2018, 10:11:30 am
I didn't think there was any silence at the end, but I'll check to make sure. Thanks.