ESTMusicIndicator alternatives and similar libraries
Based on the "Audio" category.
Alternatively, view EstMusicIndicator alternatives based on common mentions on social networks and blogs.
-
AudioKit
Swift audio synthesis, processing, & analysis platform for iOS, macOS and tvOS -
EZAudio
An iOS and macOS audio visualization framework built upon Core Audio useful for anyone doing real-time, low-latency audio processing and visualizations. -
StreamingKit
A fast and extensible gapless AudioPlayer/AudioStreamer for OSX and iOS (iPhone, iPad) -
novocaine
Painless high-performance audio on iOS and Mac OS X -
FDWaveformView
Reads an audio file and displays the waveform -
PandoraPlayer
🅿️ PandoraPlayer is a lightweight music player for iOS, based on AudioKit and completely written in Swift. -
SubtleVolume
Replace the system volume popup with a more subtle indicator. -
SwiftySound
SwiftySound is a simple library that lets you play sounds with a single line of code. -
AudioPlayer
AudioPlayer is syntax and feature sugar over AVPlayer. It plays your audio files (local & remote). -
IQAudioRecorderController
A drop-in universal library allows to record audio within the app with a nice User Interface. -
Jukebox
Player for streaming local and remote audio files. Written in Swift. -
TheAmazingAudioEngine2
The Amazing Audio Engine is a sophisticated framework for iOS audio applications, built so you don't have to. -
MusicKit
A framework for composing and transforming music in Swift -
QuietModemKit
iOS framework for the Quiet Modem (data over sound) -
FDSoundActivatedRecorder
Start recording when the user speaks -
AudioPlayerSwift
AudioPlayer is a simple class for playing audio in iOS, macOS and tvOS apps. -
ModernAVPlayer
ModernAVPlayer is a persistence AVPlayer wrapper -
Chirp
The easiest way to prepare, play, and remove sounds in your Swift app! -
SRGMediaPlayer-iOS
An advanced media player library, simple and reliable -
sound-fader-ios
A sound fader for AVAudioPlayer written in Swift for iOS, tvOS and macOS. -
BPMAnalyser
Fast and simple instrument to get the BPM rate from your audio-files. -
QHSpeechSynthesizerQueue
Queue management system for AVSpeechSynthesizer
Appwrite - The Open Source Firebase alternative introduces iOS support
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of ESTMusicIndicator or a related project?
README
Cool Animated music indicator view written in Swift.
ESTMusicIndicator is an implementation of NAKPlaybackIndicatorView in Swift for iOS 8.
- 本人著作的书籍《Laravel 入门教程》已正式发布,有兴趣的朋友可点击 此处 作进一步了解。
You may interested in my other project
- PHPHub-iOS PHPHub for iOS is the universal iPhone and iPad application for PHPHub.
- ESTMusicPlayer An elegant and simple iOS music player.
- ESTCollectionViewDropDownList A demo implementation of a drop down tag list view for iOS.
- Hodor A simple solution to localize your iOS App quickly.
Requirements
- An iPhone/iPad running iOS 8.0+
- Xcode 7.0 or above
Screenshots
Run the Demo
$ open Example/ESTMusicIndicator.xcodeproj
Installation
CocoaPods
CocoaPods is a dependency manager for Cocoa projects.
CocoaPods 0.36 adds supports for Swift and embedded frameworks. You can install it with the following command:
$ gem install cocoapods
To integrate ESTMusicIndicatorView into your Xcode project using CocoaPods, specify it in your Podfile:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!
pod 'ESTMusicIndicator'
Then, run the following command:
$ pod install
You can check out this link for more information about how to use CocoaPods.
Manually
- Clone this project or download it.
- Drag and drop Classes folder to your workspace
Usage
Simple Example:
let indicator = ESTMusicIndicatorView.init(frame: CGRect.zero)
indicator.tintColor = .red
indicator.sizeToFit()
view.addSubview(indicator)
Initially the state
property is ESTMusicIndicatorViewStateStopped and the hidesWhenStopped
property is YES.
Thus, the view is hidden at this time.
The view appears and the bars start animation.
indicator.state = .playing;
The bars stop animation and become idle.
indicator.state = .paused;
The view becomes hidden.
indicator.state = .stopped;
You can use ESTMusicIndicatorView in both code and Storyboard, and it works well with both Auto Layout and frame-based layout.
Code with Auto Layout
let indicator = ESTMusicIndicatorView.init(frame: CGRect.zero)
indicator.translatesAutoresizingMaskIntoConstraints = false
view.addSubview(indicator)
Then, add some positioning layout constraints. Note that normally you don't need to add sizing constraints since ESTMusicIndicatorView has an intrinsic content size. It will be automatically resized to fit its content.
Code with Frame-Based Layout
let indicator = ESTMusicIndicatorView.init(frame: CGRect.zero)
view.addSubview(indicator)
indicator.sizeToFit() // Resize itself to fit its content.
Customization
Color
The color of the bars can be changed by setting tintColor
property (UIView
) of the view or its ancestor view.
Size
Normally the view can be automatically resized to fit its content by:
- Omitting sizing constraints in Auto Layout, since it has an intrinsic content size.
- Calling
sizeToFit
in frame-based layout.
Or if you explicitly specify size, the bars will be placed in the center of the view.
Contact
You can ping me on Twitter or follow me on Weibo If you find an issue.
Contributing
Thank you for your interest in contributing to Hodor! Your ideas for improving this app are greatly appreciated. The best way to contribute is by submitting a pull request. I'll do my best to respond to you as soon as possible. You can also submit a new GitHub issue if you find bugs or have questions.
Thanks for
License
Copyright (c) 2017-2018 Paul King
Released under the MIT license
*Note that all licence references and agreements mentioned in the ESTMusicIndicator README section above
are relevant to that project's source code only.