0

SuperpoweredAdvancedAudioPlayer cannot open "ipod-library://item/item.m4a?id=PERSISTANT_ID".

Was this path prohibited? I'm having trouble playing Music.app songs.

There was no problem with iOS12.
Can't play with this path from iOS13.

macOS 10.15 Beta(19A546d)
iOS 13.1(17A5821e)

player = new SuperpoweredAdvancedAudioPlayer(NULL, NULL, 44100, 0);
player->open([[NSURL URLWithString:@"ipod-library://item/item.m4a?id= PERSISTANT_ID"] fileSystemRepresentation]);
Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62
Hada
  • 11
  • I'm getting the same issue on iOS 13.0 GM. An interesting observation is .mp3 files work but .m4a files do not. – BradzTech Sep 16 '19 at 02:10

3 Answers3

0

from superpowered support.

we will investigate this when iOS 13 will have an official release. iOS betas have many features turned off and on from version to version.

Hada
  • 11
0

The upcoming Superpowered release will be compatible with this feature of iOS 13. Expect it in a few days.

Gabor Szanto
  • 1,329
  • 8
  • 12
  • I applied the new version(2.0) and confirmed that the music can play "ipod-library://item/item.m4a?id=PERSISTANT_ID". Thank you! – Hada Sep 18 '19 at 08:24
0

upgrade Superpowered 2.0

・fix to namespace Superpowered

・missing link OpenSource

 SuperpoweredIOSAudioIO.h/m,SuperpoweredNBandEQ.h/cpp

・StereoMixer

 process()

 Levels -> Gain

・SuperpoweredAdvancedAudioPlayerEvent -> PlayerEvent

problem

SuperpoweredAdvancedAudioPlayerEvent_EOF is missing.

Perhaps AdvancedAudioPlayer::eofRecently() instead.

Hada
  • 11