Nikita Ivaniushchenko
Nikita Ivaniushchenko
Which settings do you want?
Well, in my project code that plays music from given URL looks like this: ``` - (void)preloadMixWithUrl:(NSUrl*)url { self.player = nil; NSURL *URL = [self.class URLForMix:self.mix]; if (url == nil)...
That is meant to be in NIAudioManager, sorry, can not help via teamviewer
Ah, wait, all necessary code is there, just try to pass URL of stream. ``` NSURL *url = [NSURL URLWithString:@"http://music.myradio.ua/Jazz_news128.mp3"]; [NIAudioManager defaultManager].fileToPlay = url; [NIAudioManager defaultManager].paused = NO; ```
Dont' look on my code from first answers, that is basically NIAudioManager's prototype. Just add this: NSURL *url = [NSURL URLWithString:@"http://mixes.bassblog.pro/Promo_Audio_Podcast_005_mixed_by_Death_Addams.mp3"]; [NIAudioManager defaultManager].fileToPlay = url; [NIAudioManager defaultManager].paused = NO; to...
Now fixing issues and submitting PR with fix to `FFmpeg`
I also had same error while building. That's why I mentioned submitting PR with fix to `FFmpeg` You can resolve the issue yourself by changing following lines in `libavcodec/videotoolbox.c` ```...
@levigroker there is no ready-made configuration for it, since arm64 Macs did not exist at that time. But I believe it's doable. You can take a look at `configure()` function...
Ok, I will try to fork the repo and experiment with it