An open API service indexing awesome lists of open source software.

https://github.com/yspreen/waveform-test


https://github.com/yspreen/waveform-test

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# waveform-test

image

```swift

var clipped: some View {
WaveformView(
audioURL: url,
configuration: .init(
size: .init(width: 300, height: 50),
style: .striped(.init(
color: .blue, width: 3, lineCap: .round
))
)
)
.frame(width: 300, height: 50)
.background(Color.white)
}

var scaled: some View {
WaveformView(
audioURL: url,
configuration: .init(
size: .init(width: 300, height: 50),
style: .striped(.init(
color: .blue, width: 3, lineCap: .round
)),
verticalScalingFactor: 0.5
)
)
.frame(width: 300, height: 50)
.background(Color.white)
}

```