You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 7, 2019. It is now read-only.
Hello man, nice library, but how i can get cache time for streaming audio or mb present value of cached time? And second, where i can implement Audio Units for example iPodEQ or Reverb2? Sorry for my broken english and thanks for this library!
The text was updated successfully, but these errors were encountered:
Regarding the caching. Right now there is no dedicated caching policy, you can think about current caches as temporary files. Since it's impossible to download large files (like FLAC) into memory and I didn't want to block HTTP connection, I'm storing downloaded files into application cache folder(NSCachesDirectory). So OS will manage this caches for us, it will be cleaned once system requires resources, this process is totally nondeterministic. If you want to implement dedicated caching strategy I recommend to take a look into NSURLCache.
About nodes and constructing graphs. I just pushed small change in b943430, which adds new method- (void)playUrl:(NSURL *)url withOutputUnitClass:(Class)outputUnitClass. You can subclass ORGMOutputUnit, define your graph there. Example implementation can be found in ORGMOutputUnit.m (which is default output right now), it is basically simple OutputUnit for Remote I/O node.
Hello man, nice library, but how i can get cache time for streaming audio or mb present value of cached time? And second, where i can implement Audio Units for example iPodEQ or Reverb2? Sorry for my broken english and thanks for this library!
The text was updated successfully, but these errors were encountered: