Go to file
Thong Nguyen db5b9d92ed Updated README 2014-02-02 15:24:36 +00:00
ExampleApp Changed canonical format to fixed point for all platforms. Added metering view on ExampleAppMac 2014-02-02 14:19:12 +00:00
ExampleAppMac Changed canonical format to fixed point for all platforms. Added metering view on ExampleAppMac 2014-02-02 14:19:12 +00:00
StreamingKit Updated podspecs to include OSX 2014-02-02 15:15:48 +00:00
StreamingKit.xcworkspace Added OSX build targets and ExampleAppMac. Added AudioUnit as a dependent framework in podspec 2014-02-02 13:14:37 +00:00
.gitignore Add xcuserdata to gitignore 2013-03-24 16:25:46 +00:00
LICENSE Adding podspec and LICENSE for Cocoapods integratino 2013-04-08 10:54:23 +00:00
README.md Updated README 2014-02-02 15:24:36 +00:00
StreamingKit-head.podspec Updated podspecs to include OSX 2014-02-02 15:15:48 +00:00
StreamingKit.podspec Updated podspecs to include OSX 2014-02-02 15:15:48 +00:00

README.md

StreamingKit

StreamingKit (formally Audjustable) is an audio streaming library for iOS and Mac OSX. StreamingKit uses CoreAudio to decompress and playback audio whilst providing a clean and simple object-oriented API.

The primary motivation of this project was to decouple the input data sources from the actual player logic in order to allow advanced customizable input handling such as HTTP streaming, encryption/decryption, auto-recovery, dynamic-buffering. Along the way other features such as gapless playback were added.

Main Features

  • Simple OOP API
  • Easy to read source
  • Mostly asynchronous API
  • Buffered and gapless playback between all format types
  • Easy to implement audio data sources (Local, HTTP, Auto Recovering HTTP DataSources are provided)
  • Easy to extend DataSource to support adaptive buffering, encryption, etc
  • Optimised for low CPU/battery usage
  • Comes with example iOS and Mac OSX apps
  • As of version 0.2.0 StreamingKit uses the AudioUnit API rather than the slower AudioQueues API which allows real-time interception of the raw PCM data for features such as level metering, EQ, etc.

Installation

StreamingKit is also available as a Cocoapod and a static lib. You can also simply copy all the source files located inside StreamingKit/StreamingKit/* into your Xcode project.

Example

There are two main classes. The STKDataSource class which is the abstract base class for the various compressed audio data sources. The STKAudioPlayer class manages and renders audio from a queue DataSources. By default STKAudioPlayer will automatically parse URLs and create the appropriate data source internally.

Play an MP3 over HTTP

STKAudioPlayer* audioPlayer = [[STKAudioPlayer alloc] init];
audioPlayer.delegate = self;

[audioPlayer play:@"http://fs.bloom.fm/oss/audiosamples/sample.mp3"];

Intercept PCM data just before its played

[audioPlayer appendFrameFilterWithName:@"MyCustomFilter" block:^(UInt32 channelsPerFrame, UInt32 bytesPerFrame, UInt32 frameCount, void* frames)
{
   ...
}

More

More documentation is available on the project wiki

Authors and Contributors

Copyright (c) 2012-2014, Thong Nguyen (@tumtumtum)