gitextract_iqm9pz60/ ├── .github/ │ └── workflows/ │ └── tests.yml ├── .gitignore ├── .spi.yml ├── .swiftpm/ │ └── xcode/ │ ├── package.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── xcshareddata/ │ └── xcschemes/ │ └── Waveform.xcscheme ├── Demo/ │ ├── WaveformDemo/ │ │ ├── Assets.xcassets/ │ │ │ ├── AccentColor.colorset/ │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── MinimapView.swift │ │ ├── Preview Content/ │ │ │ └── Preview Assets.xcassets/ │ │ │ └── Contents.json │ │ ├── WaveformDemo.entitlements │ │ └── WaveformDemoApp.swift │ └── WaveformDemo.xcodeproj/ │ ├── project.pbxproj │ └── project.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ └── IDEWorkspaceChecks.plist ├── LICENSE ├── Package.swift ├── README.md ├── Sources/ │ └── Waveform/ │ ├── AVAudio+FloatData.swift │ ├── Helpers.swift │ ├── Renderer.swift │ ├── SampleBuffer.swift │ ├── Waveform.docc/ │ │ └── Waveform.md │ ├── Waveform.metal │ └── Waveform.swift ├── Tests/ │ └── WaveformTests/ │ ├── MTLTexture+Image.swift │ ├── WaveformTests.swift │ └── beat.aiff └── Waveform.playground/ ├── Contents.swift └── contents.xcplayground