Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/healscodes/vorbis-swift
Thin wrapper around libvorbis for Swift5+
https://github.com/healscodes/vorbis-swift
audio audio-codec audio-processing swift-wrapper swift5 vorbis
Last synced: 24 days ago
JSON representation
Thin wrapper around libvorbis for Swift5+
- Host: GitHub
- URL: https://github.com/healscodes/vorbis-swift
- Owner: HealsCodes
- License: other
- Created: 2024-04-15T23:57:35.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-04-21T14:57:37.000Z (7 months ago)
- Last Synced: 2024-04-21T18:39:54.599Z (7 months ago)
- Topics: audio, audio-codec, audio-processing, swift-wrapper, swift5, vorbis
- Language: Swift
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vorbis-swift
This package was created to provide an easy-to-maintain binding for [libvorbis](https://www.xiph.org/vorbis/doc/libogg/index.html).# Version
The current release supports libvorbis v1.3.7# Usage
This package is supposed to be used with SwiftPM or added as a Package dependency from XCode.For Swift Package Manager add the following lines your Package.swift under `dependencies`:
```swift
.package(
name: "vorbis-swift",
url: "https://github.com/HealsCodes/vorbis-swift.git",
from: "1.3.7"
)
```To use the package in your swift code simply import it:
```swift
import LibVorbis
```# Licensing
This project is under MIT license.libogg sources are pulled from [https://gitlab.xiph.org/vorbis](https://gitlab.xiph.org/xiph/vorbis/).
Vorbis is licensed under the [New BSD License](https://wiki.xiph.org/XiphWiki:Copyrights).