├── ASIHTTP ├── ASIAuthenticationDialog.h ├── ASIAuthenticationDialog.m ├── ASICacheDelegate.h ├── ASIDownloadCache.h ├── ASIDownloadCache.m ├── ASIFormDataRequest.h ├── ASIFormDataRequest.m ├── ASIHTTPRequest.h ├── ASIHTTPRequest.m ├── ASIHTTPRequestConfig.h ├── ASIHTTPRequestDelegate.h ├── ASIInputStream.h ├── ASIInputStream.m ├── ASINetworkQueue.h ├── ASINetworkQueue.m ├── ASIProgressDelegate.h └── Reachability │ ├── .svn │ ├── all-wcprops │ ├── entries │ └── text-base │ │ ├── Reachability.h.svn-base │ │ └── Reachability.m.svn-base │ ├── Reachability.h │ └── Reachability.m ├── CADebugMacros.h ├── CAStreamBasicDescription.h ├── Classes ├── MicrophoneInput.h ├── MicrophoneInput.m ├── TSLibraryImport.h ├── TSLibraryImport.m ├── echoprintAppDelegate.h ├── echoprintAppDelegate.m ├── echoprintViewController.h └── echoprintViewController.m ├── Codegen.h ├── Codegen_wrapper.cpp ├── Codegen_wrapper.h ├── GetPCMFromFile.cpp ├── GetPCMFromFile.h ├── JSON ├── JSON.h ├── NSObject+SBJSON.h ├── NSObject+SBJSON.m ├── NSString+SBJSON.h ├── NSString+SBJSON.m ├── SBJSON.h ├── SBJSON.m ├── SBJsonBase.h ├── SBJsonBase.m ├── SBJsonParser.h ├── SBJsonParser.m ├── SBJsonWriter.h └── SBJsonWriter.m ├── MainWindow.xib ├── README.md ├── echoprint-Info.plist ├── echoprint.xcodeproj ├── bwhitman.mode1v3 ├── bwhitman.pbxuser └── project.pbxproj ├── echoprintViewController.xib ├── echoprint_Prefix.pch └── main.m /ASIHTTP/ASIAuthenticationDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/ASIHTTP/ASIAuthenticationDialog.h -------------------------------------------------------------------------------- /ASIHTTP/ASIAuthenticationDialog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/ASIHTTP/ASIAuthenticationDialog.m -------------------------------------------------------------------------------- /ASIHTTP/ASICacheDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/ASIHTTP/ASICacheDelegate.h -------------------------------------------------------------------------------- /ASIHTTP/ASIDownloadCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/ASIHTTP/ASIDownloadCache.h -------------------------------------------------------------------------------- /ASIHTTP/ASIDownloadCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/ASIHTTP/ASIDownloadCache.m -------------------------------------------------------------------------------- /ASIHTTP/ASIFormDataRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/ASIHTTP/ASIFormDataRequest.h -------------------------------------------------------------------------------- /ASIHTTP/ASIFormDataRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/ASIHTTP/ASIFormDataRequest.m -------------------------------------------------------------------------------- /ASIHTTP/ASIHTTPRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/ASIHTTP/ASIHTTPRequest.h -------------------------------------------------------------------------------- /ASIHTTP/ASIHTTPRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/ASIHTTP/ASIHTTPRequest.m -------------------------------------------------------------------------------- /ASIHTTP/ASIHTTPRequestConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/ASIHTTP/ASIHTTPRequestConfig.h -------------------------------------------------------------------------------- /ASIHTTP/ASIHTTPRequestDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/ASIHTTP/ASIHTTPRequestDelegate.h -------------------------------------------------------------------------------- /ASIHTTP/ASIInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/ASIHTTP/ASIInputStream.h -------------------------------------------------------------------------------- /ASIHTTP/ASIInputStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/ASIHTTP/ASIInputStream.m -------------------------------------------------------------------------------- /ASIHTTP/ASINetworkQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/ASIHTTP/ASINetworkQueue.h -------------------------------------------------------------------------------- /ASIHTTP/ASINetworkQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/ASIHTTP/ASINetworkQueue.m -------------------------------------------------------------------------------- /ASIHTTP/ASIProgressDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/ASIHTTP/ASIProgressDelegate.h -------------------------------------------------------------------------------- /ASIHTTP/Reachability/.svn/all-wcprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/ASIHTTP/Reachability/.svn/all-wcprops -------------------------------------------------------------------------------- /ASIHTTP/Reachability/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/ASIHTTP/Reachability/.svn/entries -------------------------------------------------------------------------------- /ASIHTTP/Reachability/.svn/text-base/Reachability.h.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/ASIHTTP/Reachability/.svn/text-base/Reachability.h.svn-base -------------------------------------------------------------------------------- /ASIHTTP/Reachability/.svn/text-base/Reachability.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/ASIHTTP/Reachability/.svn/text-base/Reachability.m.svn-base -------------------------------------------------------------------------------- /ASIHTTP/Reachability/Reachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/ASIHTTP/Reachability/Reachability.h -------------------------------------------------------------------------------- /ASIHTTP/Reachability/Reachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/ASIHTTP/Reachability/Reachability.m -------------------------------------------------------------------------------- /CADebugMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/CADebugMacros.h -------------------------------------------------------------------------------- /CAStreamBasicDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/CAStreamBasicDescription.h -------------------------------------------------------------------------------- /Classes/MicrophoneInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/Classes/MicrophoneInput.h -------------------------------------------------------------------------------- /Classes/MicrophoneInput.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/Classes/MicrophoneInput.m -------------------------------------------------------------------------------- /Classes/TSLibraryImport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/Classes/TSLibraryImport.h -------------------------------------------------------------------------------- /Classes/TSLibraryImport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/Classes/TSLibraryImport.m -------------------------------------------------------------------------------- /Classes/echoprintAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/Classes/echoprintAppDelegate.h -------------------------------------------------------------------------------- /Classes/echoprintAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/Classes/echoprintAppDelegate.m -------------------------------------------------------------------------------- /Classes/echoprintViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/Classes/echoprintViewController.h -------------------------------------------------------------------------------- /Classes/echoprintViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/Classes/echoprintViewController.m -------------------------------------------------------------------------------- /Codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/Codegen.h -------------------------------------------------------------------------------- /Codegen_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/Codegen_wrapper.cpp -------------------------------------------------------------------------------- /Codegen_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/Codegen_wrapper.h -------------------------------------------------------------------------------- /GetPCMFromFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/GetPCMFromFile.cpp -------------------------------------------------------------------------------- /GetPCMFromFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/GetPCMFromFile.h -------------------------------------------------------------------------------- /JSON/JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/JSON/JSON.h -------------------------------------------------------------------------------- /JSON/NSObject+SBJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/JSON/NSObject+SBJSON.h -------------------------------------------------------------------------------- /JSON/NSObject+SBJSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/JSON/NSObject+SBJSON.m -------------------------------------------------------------------------------- /JSON/NSString+SBJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/JSON/NSString+SBJSON.h -------------------------------------------------------------------------------- /JSON/NSString+SBJSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/JSON/NSString+SBJSON.m -------------------------------------------------------------------------------- /JSON/SBJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/JSON/SBJSON.h -------------------------------------------------------------------------------- /JSON/SBJSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/JSON/SBJSON.m -------------------------------------------------------------------------------- /JSON/SBJsonBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/JSON/SBJsonBase.h -------------------------------------------------------------------------------- /JSON/SBJsonBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/JSON/SBJsonBase.m -------------------------------------------------------------------------------- /JSON/SBJsonParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/JSON/SBJsonParser.h -------------------------------------------------------------------------------- /JSON/SBJsonParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/JSON/SBJsonParser.m -------------------------------------------------------------------------------- /JSON/SBJsonWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/JSON/SBJsonWriter.h -------------------------------------------------------------------------------- /JSON/SBJsonWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/JSON/SBJsonWriter.m -------------------------------------------------------------------------------- /MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/MainWindow.xib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/README.md -------------------------------------------------------------------------------- /echoprint-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/echoprint-Info.plist -------------------------------------------------------------------------------- /echoprint.xcodeproj/bwhitman.mode1v3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/echoprint.xcodeproj/bwhitman.mode1v3 -------------------------------------------------------------------------------- /echoprint.xcodeproj/bwhitman.pbxuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/echoprint.xcodeproj/bwhitman.pbxuser -------------------------------------------------------------------------------- /echoprint.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/echoprint.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /echoprintViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/echoprintViewController.xib -------------------------------------------------------------------------------- /echoprint_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/echoprint_Prefix.pch -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echonest/echoprint-ios-sample/HEAD/main.m --------------------------------------------------------------------------------