├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── SoundWave.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── SoundWave.xcscheme │ └── Target Support Files │ │ ├── Pods-SoundWave_Example │ │ ├── Info.plist │ │ ├── Pods-SoundWave_Example-Info.plist │ │ ├── Pods-SoundWave_Example-acknowledgements.markdown │ │ ├── Pods-SoundWave_Example-acknowledgements.plist │ │ ├── Pods-SoundWave_Example-dummy.m │ │ ├── Pods-SoundWave_Example-frameworks.sh │ │ ├── Pods-SoundWave_Example-resources.sh │ │ ├── Pods-SoundWave_Example-umbrella.h │ │ ├── Pods-SoundWave_Example.debug.xcconfig │ │ ├── Pods-SoundWave_Example.modulemap │ │ └── Pods-SoundWave_Example.release.xcconfig │ │ ├── Pods-SoundWave_Tests │ │ ├── Info.plist │ │ ├── Pods-SoundWave_Tests-Info.plist │ │ ├── Pods-SoundWave_Tests-acknowledgements.markdown │ │ ├── Pods-SoundWave_Tests-acknowledgements.plist │ │ ├── Pods-SoundWave_Tests-dummy.m │ │ ├── Pods-SoundWave_Tests-frameworks.sh │ │ ├── Pods-SoundWave_Tests-resources.sh │ │ ├── Pods-SoundWave_Tests-umbrella.h │ │ ├── Pods-SoundWave_Tests.debug.xcconfig │ │ ├── Pods-SoundWave_Tests.modulemap │ │ └── Pods-SoundWave_Tests.release.xcconfig │ │ └── SoundWave │ │ ├── Info.plist │ │ ├── SoundWave-Info.plist │ │ ├── SoundWave-dummy.m │ │ ├── SoundWave-prefix.pch │ │ ├── SoundWave-umbrella.h │ │ ├── SoundWave.modulemap │ │ └── SoundWave.xcconfig ├── SoundWave.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── SoundWave-Example.xcscheme ├── SoundWave.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── SoundWave │ ├── AppDelegate.swift │ ├── AudioErrorType.swift │ ├── AudioPlayerManager.swift │ ├── AudioRecorderManager.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Bell.wav │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Pause-Button.imageset │ │ │ ├── Contents.json │ │ │ ├── Pause-Button.png │ │ │ ├── Pause-Button@2x.png │ │ │ └── Pause-Button@3x.png │ │ ├── Play-Button.imageset │ │ │ ├── Contents.json │ │ │ ├── Play-Button.png │ │ │ ├── Play-Button@2x.png │ │ │ └── Play-Button@3x.png │ │ └── Record-Button.imageset │ │ │ ├── Contents.json │ │ │ ├── Record-Button.png │ │ │ ├── Record-Button@2x.png │ │ │ └── Record-Button@3x.png │ ├── Info.plist │ ├── SoundWave+Helpers.swift │ ├── ViewController.swift │ └── ViewModel.swift └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── README.md ├── Readme-Images ├── On-The-Fly.gif ├── Play.gif └── SoundWave.png ├── SoundWave.podspec ├── SoundWave ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── AVAudioFileExtensions.swift │ ├── AudioContext.swift │ ├── AudioVisualizationView.swift │ ├── AudioVisualizationView.xib │ ├── BaseNibView.swift │ └── Chronometer.swift └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/SoundWave.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Local Podspecs/SoundWave.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/SoundWave.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/SoundWave.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SoundWave_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/Pods-SoundWave_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SoundWave_Example/Pods-SoundWave_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/Pods-SoundWave_Example/Pods-SoundWave_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SoundWave_Example/Pods-SoundWave_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/Pods-SoundWave_Example/Pods-SoundWave_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SoundWave_Example/Pods-SoundWave_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/Pods-SoundWave_Example/Pods-SoundWave_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SoundWave_Example/Pods-SoundWave_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/Pods-SoundWave_Example/Pods-SoundWave_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SoundWave_Example/Pods-SoundWave_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/Pods-SoundWave_Example/Pods-SoundWave_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SoundWave_Example/Pods-SoundWave_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/Pods-SoundWave_Example/Pods-SoundWave_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SoundWave_Example/Pods-SoundWave_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/Pods-SoundWave_Example/Pods-SoundWave_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SoundWave_Example/Pods-SoundWave_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/Pods-SoundWave_Example/Pods-SoundWave_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SoundWave_Example/Pods-SoundWave_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/Pods-SoundWave_Example/Pods-SoundWave_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SoundWave_Example/Pods-SoundWave_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/Pods-SoundWave_Example/Pods-SoundWave_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SoundWave_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/Pods-SoundWave_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SoundWave_Tests/Pods-SoundWave_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/Pods-SoundWave_Tests/Pods-SoundWave_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SoundWave_Tests/Pods-SoundWave_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/Pods-SoundWave_Tests/Pods-SoundWave_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SoundWave_Tests/Pods-SoundWave_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/Pods-SoundWave_Tests/Pods-SoundWave_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SoundWave_Tests/Pods-SoundWave_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/Pods-SoundWave_Tests/Pods-SoundWave_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SoundWave_Tests/Pods-SoundWave_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/Pods-SoundWave_Tests/Pods-SoundWave_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SoundWave_Tests/Pods-SoundWave_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/Pods-SoundWave_Tests/Pods-SoundWave_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SoundWave_Tests/Pods-SoundWave_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/Pods-SoundWave_Tests/Pods-SoundWave_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SoundWave_Tests/Pods-SoundWave_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/Pods-SoundWave_Tests/Pods-SoundWave_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SoundWave_Tests/Pods-SoundWave_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/Pods-SoundWave_Tests/Pods-SoundWave_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SoundWave_Tests/Pods-SoundWave_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/Pods-SoundWave_Tests/Pods-SoundWave_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SoundWave/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/SoundWave/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SoundWave/SoundWave-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/SoundWave/SoundWave-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SoundWave/SoundWave-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/SoundWave/SoundWave-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SoundWave/SoundWave-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/SoundWave/SoundWave-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SoundWave/SoundWave-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/SoundWave/SoundWave-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SoundWave/SoundWave.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/SoundWave/SoundWave.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SoundWave/SoundWave.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Pods/Target Support Files/SoundWave/SoundWave.xcconfig -------------------------------------------------------------------------------- /Example/SoundWave.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/SoundWave.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SoundWave.xcodeproj/xcshareddata/xcschemes/SoundWave-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave.xcodeproj/xcshareddata/xcschemes/SoundWave-Example.xcscheme -------------------------------------------------------------------------------- /Example/SoundWave.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SoundWave.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/SoundWave/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave/AppDelegate.swift -------------------------------------------------------------------------------- /Example/SoundWave/AudioErrorType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave/AudioErrorType.swift -------------------------------------------------------------------------------- /Example/SoundWave/AudioPlayerManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave/AudioPlayerManager.swift -------------------------------------------------------------------------------- /Example/SoundWave/AudioRecorderManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave/AudioRecorderManager.swift -------------------------------------------------------------------------------- /Example/SoundWave/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/SoundWave/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/SoundWave/Bell.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave/Bell.wav -------------------------------------------------------------------------------- /Example/SoundWave/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/SoundWave/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/SoundWave/Images.xcassets/Pause-Button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave/Images.xcassets/Pause-Button.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SoundWave/Images.xcassets/Pause-Button.imageset/Pause-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave/Images.xcassets/Pause-Button.imageset/Pause-Button.png -------------------------------------------------------------------------------- /Example/SoundWave/Images.xcassets/Pause-Button.imageset/Pause-Button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave/Images.xcassets/Pause-Button.imageset/Pause-Button@2x.png -------------------------------------------------------------------------------- /Example/SoundWave/Images.xcassets/Pause-Button.imageset/Pause-Button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave/Images.xcassets/Pause-Button.imageset/Pause-Button@3x.png -------------------------------------------------------------------------------- /Example/SoundWave/Images.xcassets/Play-Button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave/Images.xcassets/Play-Button.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SoundWave/Images.xcassets/Play-Button.imageset/Play-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave/Images.xcassets/Play-Button.imageset/Play-Button.png -------------------------------------------------------------------------------- /Example/SoundWave/Images.xcassets/Play-Button.imageset/Play-Button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave/Images.xcassets/Play-Button.imageset/Play-Button@2x.png -------------------------------------------------------------------------------- /Example/SoundWave/Images.xcassets/Play-Button.imageset/Play-Button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave/Images.xcassets/Play-Button.imageset/Play-Button@3x.png -------------------------------------------------------------------------------- /Example/SoundWave/Images.xcassets/Record-Button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave/Images.xcassets/Record-Button.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SoundWave/Images.xcassets/Record-Button.imageset/Record-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave/Images.xcassets/Record-Button.imageset/Record-Button.png -------------------------------------------------------------------------------- /Example/SoundWave/Images.xcassets/Record-Button.imageset/Record-Button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave/Images.xcassets/Record-Button.imageset/Record-Button@2x.png -------------------------------------------------------------------------------- /Example/SoundWave/Images.xcassets/Record-Button.imageset/Record-Button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave/Images.xcassets/Record-Button.imageset/Record-Button@3x.png -------------------------------------------------------------------------------- /Example/SoundWave/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave/Info.plist -------------------------------------------------------------------------------- /Example/SoundWave/SoundWave+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave/SoundWave+Helpers.swift -------------------------------------------------------------------------------- /Example/SoundWave/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave/ViewController.swift -------------------------------------------------------------------------------- /Example/SoundWave/ViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/SoundWave/ViewModel.swift -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/README.md -------------------------------------------------------------------------------- /Readme-Images/On-The-Fly.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Readme-Images/On-The-Fly.gif -------------------------------------------------------------------------------- /Readme-Images/Play.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Readme-Images/Play.gif -------------------------------------------------------------------------------- /Readme-Images/SoundWave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/Readme-Images/SoundWave.png -------------------------------------------------------------------------------- /SoundWave.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/SoundWave.podspec -------------------------------------------------------------------------------- /SoundWave/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SoundWave/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SoundWave/Classes/AVAudioFileExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/SoundWave/Classes/AVAudioFileExtensions.swift -------------------------------------------------------------------------------- /SoundWave/Classes/AudioContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/SoundWave/Classes/AudioContext.swift -------------------------------------------------------------------------------- /SoundWave/Classes/AudioVisualizationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/SoundWave/Classes/AudioVisualizationView.swift -------------------------------------------------------------------------------- /SoundWave/Classes/AudioVisualizationView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/SoundWave/Classes/AudioVisualizationView.xib -------------------------------------------------------------------------------- /SoundWave/Classes/BaseNibView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/SoundWave/Classes/BaseNibView.swift -------------------------------------------------------------------------------- /SoundWave/Classes/Chronometer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienFalcou/SoundWave/HEAD/SoundWave/Classes/Chronometer.swift -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------