├── .github └── workflows │ └── test.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── asset.go ├── asset_test.go ├── audio_test.go ├── go.mod ├── go.sum ├── mixer.go ├── mixer_test.go ├── repeat.go ├── repeat_test.go ├── source.go ├── source_test.go ├── track.go └── track_test.go /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipelined/audio/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipelined/audio/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipelined/audio/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipelined/audio/HEAD/README.md -------------------------------------------------------------------------------- /asset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipelined/audio/HEAD/asset.go -------------------------------------------------------------------------------- /asset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipelined/audio/HEAD/asset_test.go -------------------------------------------------------------------------------- /audio_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipelined/audio/HEAD/audio_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipelined/audio/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipelined/audio/HEAD/go.sum -------------------------------------------------------------------------------- /mixer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipelined/audio/HEAD/mixer.go -------------------------------------------------------------------------------- /mixer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipelined/audio/HEAD/mixer_test.go -------------------------------------------------------------------------------- /repeat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipelined/audio/HEAD/repeat.go -------------------------------------------------------------------------------- /repeat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipelined/audio/HEAD/repeat_test.go -------------------------------------------------------------------------------- /source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipelined/audio/HEAD/source.go -------------------------------------------------------------------------------- /source_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipelined/audio/HEAD/source_test.go -------------------------------------------------------------------------------- /track.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipelined/audio/HEAD/track.go -------------------------------------------------------------------------------- /track_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipelined/audio/HEAD/track_test.go --------------------------------------------------------------------------------