Posts

Post not yet marked as solved
0 Replies
191 Views
I'm working on an application that aims to deliver a DJ-like experience by overlapping songs and implementing volume fading. During development, I've encountered a roadblock due to the MusicPlayerController singleton behavior in iOS, which seems to only support playback of one audio stream at a time and doesn't support overlapping of songs or fading volume between tracks. I understand that Apple Music content is protected and that playback through Apple MusicKit must respect the DRM and licensing agreements. However, I've noticed an application called "Mixonset" that seems to be able to stream songs from Apple Music, use the music player, and create an overlapping effect of songs for users. Could anyone share insights on how Mixonset might be achieving this within the constraints of the Apple MusicKit? Is there any approach that I could explore to implement similar functionality, such as overlapping songs or crossfading while adhering to Apple's guidelines and without violating any terms of service? Any advice or direction towards documentation and API capabilities that could support these features would be greatly appreciated. Thank you for your assistance.
Posted Last updated
.
Post not yet marked as solved
0 Replies
1k Views
I am using apple MusicKit to song streaming based on action per seconds at specific seconds i try to stop the playing music and start the next on on the queue. i alwyas get this error i am sure that i stopped and then try to play and seekToTime. this is my next function : async function next(time) { const music = MusicKit.getInstance(); await music.skipToNextItem(); await music.play(); await music.seekToTime(time); return; } this is it's call in condition : music.stop().then(function () { next(100) });`
Posted Last updated
.