A Swift wrapper to use libogg api.
Intension of this project is to support audio player SDK with a platform independend XCFramework that can be integrated in Swift projects via CocoaPod.
It supports iOS devices and simulators (version 9 to 14) and macOS (versions 10.10 to 11.2).
The supported version of libogg API is 1.3.4.
After integration use
import YbridOgg
in your Swift code.
The Cocoa Podfile of a project using this framework, should look like
platform :ios, '9.0'
target 'player-sdk-swift' do
use_frameworks!
source 'https://github.com/CocoaPods/Specs.git'
pod 'YbridOgg'
end
The Package.swift using this framework should look like
...
dependencies: [
.package(
name: "YbridOgg",
url: "git@github.com:ybrid/ogg-swift.git",
from: "0.8.0"),
...
If you manage packages in another way you may download YbridOgg.xcframework.zip from the latest release of this repository and embed it into your own project manually.
Unzip the file into a directory called 'Frameworks' of your XCode project. In the properties editor, drag and drop the directory into the section 'Frameworks, Libraries and Embedded Content' of the target's 'General' tab.
You are welcome to contribute.
This project is under MIT license. It makes use of the sources for ogg from xiph.org/downloads. Ogg is licensed under the New BSD License. See the LICENSE file.