Skip to content

a SIMPLE Audio Waveform View in Swift for iOS and it will adjust to fit the frame automatically

License

Notifications You must be signed in to change notification settings

1c7/ASAudioWaveformView

 
 

Repository files navigation

ASAudioWaveformView

Version License Platform

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

zoom

Requirements

swift 5.0+

Installation

ASAudioWaveformView is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'ASAudioWaveformView'

Usage

there are two ways to create waveform view, waveform will adjust to fit the frame automatically

  1. init with frame. completion is Optional

    let wave = ASAudioWaveformView.create(frame: CGRect(x: 0, y: 40, width: 200, height: 100)) { (config) in
        let url = Bundle.main.url(forResource: "test", withExtension: "mp3")
        config.audioURL(url).maxSamplesCount(500).fillColor(.systemTeal)
    } completion: { (empty) in
        print("-->draw Complete ,empty: \(empty)")
    }
  2. if you use Autolayout or set the frame later. completion is Optional

    let wave = ASAudioWaveformView()
    wave.createWaveform { (config) in
            let url = Bundle.main.url(forResource: "test", withExtension: "mp3")
            config.audioURL(url).positionType(.top).fillColor(.green)
    } completion: { (empty) in
        print("-->draw Complete ,empty: \(empty)")
    }

config waveform

    /// config waveform postion, the default is center
    public func positionType(_ type: ASAudioWaveformView.PositionType) -> ASAudioWaveformConfig

    /// config waveform content style, the default is polyline
    public func contentType(_ type: ASAudioWaveformView.ContentType) -> ASAudioWaveformConfig

    /// config waveform fill color, the default is yellow
    public func fillColor(_ color: UIColor) -> ASAudioWaveformConfig

    /// config waveform audio source
    public func audioURL(_ URL: URL?) -> ASAudioWaveformConfig

    /// config max samples count, the default is 1000
    public func maxSamplesCount(_ count: Int) -> ASAudioWaveformConfig
  1. position type center, content type polyLine

    center

  2. position type top, content type polyLine

    top

  3. position type bottom, content type polyLine

    bottom

  4. position type center, content type singleLine

    single

reload with different audio URL

waveform will adjust to fit the frame automatically

/// Refresh waveform by audio url
public func refreshWaveform(with audioURL: URL?)

Author

Andrew Shen, iandrew@126.com

License

ASAudioWaveformView is available under the MIT license. See the LICENSE file for more info.

About

a SIMPLE Audio Waveform View in Swift for iOS and it will adjust to fit the frame automatically

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 90.6%
  • Ruby 9.4%