MusicTrackCut
MusicTrackCut
- Subject: MusicTrackCut
- From: Randy Young <email@hidden>
- Date: Mon, 26 Jan 2004 20:45:16 -0500
Hi.. I'm trying to do a simple cut from all tracks with MusicTrackCut
from doing what i do i below ... i get a clipped sound of the first
events then silence in the sequence for a period then the sequence
resumes..
from what i understand MusicTrackCut should move up all events
following the cut so that the sequence plays continuously minus the cut
information
am i misunderstanding something?
MusicTrack srcTrack;
UInt32 i;
UInt32 ntracks;
MusicSequenceGetTrackCount (seq, &ntracks);
for (i = 0; i < ntracks; ++i) {
MusicSequenceGetIndTrack(seq,i, &srcTrack);
MusicTrackCut(srcTrack,0.0,64.0);
}
thanks
Randy
_______________________________________________
coreaudio-api mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/coreaudio-api
Do not post admin requests to the list. They will be ignored.