forked from dmrschmidt/DSWaveformImage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SwiftUIExampleView.swift
200 lines (167 loc) · 7.53 KB
/
SwiftUIExampleView.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
import DSWaveformImage
import DSWaveformImageViews
import SwiftUI
@available(iOS 14.0, *)
struct SwiftUIExampleView: View {
private static let colors = [UIColor.systemPink, UIColor.systemBlue, UIColor.systemGreen]
private static var randomColor: UIColor { colors.randomElement()! }
private static var audioURLs: [URL?] = [
Bundle.main.url(forResource: "example_sound", withExtension: "m4a"),
Bundle.main.url(forResource: "example_sound_2", withExtension: "m4a")
]
private static var randomURL: URL? { audioURLs.randomElement()! }
@StateObject private var audioRecorder: AudioRecorder = AudioRecorder()
@State private var audioURL: URL? = Self.randomURL
@State var configuration: Waveform.Configuration = Waveform.Configuration(
style: .outlined(.blue, 3),
verticalScalingFactor: 0.5
)
@State var liveConfiguration: Waveform.Configuration = Waveform.Configuration(
style: .striped(.init(color: randomColor, width: 3, spacing: 3))
)
@State var silence: Bool = true
@State var selection: Bool = true
var body: some View {
VStack {
Text("SwiftUI examples")
.font(.largeTitle.bold())
if #available(iOS 15.0, *) {
Picker("Hey", selection: $selection) {
Text("Recorder Example").tag(true)
Text("Overview").tag(false)
}
.pickerStyle(.segmented)
.padding(.horizontal)
if selection {
recordingExample
} else {
overview
}
} else {
Text("WaveformView & WaveformLiveCanvas require iOS 15.0")
}
}
.padding(.vertical, 20)
}
@available(iOS 15.0, *)
@ViewBuilder
private var recordingExample: some View {
HStack {
Button {
configuration = configuration.with(style: .filled(Self.randomColor))
liveConfiguration = liveConfiguration.with(style: .striped(.init(color: Self.randomColor, width: 3, spacing: 3)))
} label: {
Label("color", systemImage: "arrow.triangle.2.circlepath")
.frame(maxWidth: .infinity)
}
.font(.body.bold())
.padding()
.background(Color(.systemGray6))
.cornerRadius(10)
Button {
audioURL = Self.randomURL
print("will draw \(audioURL!)")
} label: {
Label("waveform", systemImage: "arrow.triangle.2.circlepath")
.frame(maxWidth: .infinity)
}
.font(.body.bold())
.padding()
.background(Color(.systemGray6))
.cornerRadius(10)
}
.padding()
if let audioURL {
WaveformView(
audioURL: audioURL,
configuration: configuration,
renderer: CircularWaveformRenderer(kind: .ring(0.7))
)
}
VStack {
Toggle("draw silence", isOn: $silence).padding()
WaveformLiveCanvas(
samples: audioRecorder.samples,
configuration: liveConfiguration,
renderer: CircularWaveformRenderer(kind: .circle),
shouldDrawSilencePadding: silence
)
}
RecordingIndicatorView(
samples: audioRecorder.samples,
duration: audioRecorder.recordingTime,
isRecording: $audioRecorder.isRecording
)
.padding()
}
@ViewBuilder
private var overview: some View {
if let audioURL {
HStack {
VStack {
WaveformView(audioURL: audioURL, configuration: .init(style: .filled(.red)))
WaveformView(audioURL: audioURL, configuration: .init(style: .outlined(.black, 0.5)))
WaveformView(audioURL: audioURL, configuration: .init(style: .gradient([.yellow, .orange])))
WaveformView(audioURL: audioURL, configuration: .init(style: .gradientOutlined([.yellow, .orange], 1)))
WaveformView(audioURL: audioURL, configuration: .init(style: .striped(.init(color: .red, width: 2, spacing: 1))))
}
VStack {
WaveformView(audioURL: audioURL, configuration: .init(style: .filled(.red)), renderer: CircularWaveformRenderer())
WaveformView(audioURL: audioURL, configuration: .init(style: .outlined(.black, 0.5)), renderer: CircularWaveformRenderer())
WaveformView(audioURL: audioURL, configuration: .init(style: .gradient([.yellow, .orange])), renderer: CircularWaveformRenderer())
WaveformView(audioURL: audioURL, configuration: .init(style: .gradientOutlined([.yellow, .orange], 1)), renderer: CircularWaveformRenderer())
WaveformView(audioURL: audioURL, configuration: .init(style: .striped(.init(color: .red, width: 2, spacing: 2))), renderer: CircularWaveformRenderer())
}
VStack {
WaveformView(audioURL: audioURL, configuration: .init(style: .filled(.red)), renderer: CircularWaveformRenderer(kind: .ring(0.5)))
WaveformView(audioURL: audioURL, configuration: .init(style: .outlined(.black, 0.5)), renderer: CircularWaveformRenderer(kind: .ring(0.5)))
WaveformView(audioURL: audioURL, configuration: .init(style: .gradient([.yellow, .orange])), renderer: CircularWaveformRenderer(kind: .ring(0.5)))
WaveformView(audioURL: audioURL, configuration: .init(style: .gradientOutlined([.yellow, .orange], 1)), renderer: CircularWaveformRenderer(kind: .ring(0.5)))
WaveformView(audioURL: audioURL, configuration: .init(style: .striped(.init(color: .red, width: 2, spacing: 2))), renderer: CircularWaveformRenderer(kind: .ring(0.5)))
}
}
}
}
}
@available(iOS 15.0, *)
struct LiveRecordingView_Previews: PreviewProvider {
static var previews: some View {
SwiftUIExampleView()
}
}
private class AudioRecorder: NSObject, ObservableObject, RecordingDelegate {
@Published var samples: [Float] = []
@Published var recordingTime: TimeInterval = 0
@Published var isRecording: Bool = false {
didSet {
guard oldValue != isRecording else { return }
isRecording ? startRecording() : stopRecording()
}
}
private let audioManager: SCAudioManager
override init() {
audioManager = SCAudioManager()
super.init()
audioManager.prepareAudioRecording()
audioManager.recordingDelegate = self
}
func startRecording() {
samples = []
audioManager.startRecording()
isRecording = true
}
func stopRecording() {
audioManager.stopRecording()
isRecording = false
}
// MARK: - RecordingDelegate
func audioManager(_ manager: SCAudioManager!, didAllowRecording flag: Bool) {}
func audioManager(_ manager: SCAudioManager!, didFinishRecordingSuccessfully flag: Bool) {}
func audioManager(_ manager: SCAudioManager!, didUpdateRecordProgress progress: CGFloat) {
let linear = 1 - pow(10, manager.lastAveragePower() / 20)
// Here we add the same sample 3 times to speed up the animation.
// Usually you'd just add the sample once.
recordingTime = audioManager.currentRecordingTime
samples += [linear, linear, linear]
}
}