https://github.com/sdwebimage/svt-av1-xcode
A wrapper for SVT-AV1 + Xcode project. Support SwiftPM && CocoaPods.
https://github.com/sdwebimage/svt-av1-xcode
Last synced: 18 days ago
JSON representation
A wrapper for SVT-AV1 + Xcode project. Support SwiftPM && CocoaPods.
- Host: GitHub
- URL: https://github.com/sdwebimage/svt-av1-xcode
- Owner: SDWebImage
- Created: 2021-07-23T09:26:53.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2023-09-27T12:30:41.000Z (almost 2 years ago)
- Last Synced: 2025-06-04T02:42:50.111Z (25 days ago)
- Language: Ruby
- Size: 6.84 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# svt-av1 + Xcode
[](https://travis-ci.org/SDWebImage/svt-av1-Xcode)
[](http://cocoapods.org/pods/svt-av1)
[](http://cocoapods.org/pods/svt-av1)
[](http://cocoapods.org/pods/svt-av1)
[](https://swift.org/package-manager/)A wrapper for [svt-av1](https://gitlab.com/AOMediaCodec/SVT-AV1) + Xcode project.
This enables CocoaPods && SwiftPM support.This repo also including the CocoaPods's spec file to use svt-av1.
## Requirements
+ iOS 8
+ macOS 10.10
+ tvOS 9.0
+ watchOS 2.0## Installation
### CocoaPods
svt-av1 is available through [CocoaPods](https://github.com/CocoaPods/CocoaPods).
```
pod 'svt-av1'
```### SwiftPM
svt-av1 is available through [Swift Package Manager](https://img.shields.io/badge/SwiftPM-compatible-brightgreen.svg).
```swift
let package = Package(
dependencies: [
.package(url: "https://github.com/SDWebImage/svt-av1-Xcode", from: "0.8.7")
],
// ...
)
```## Usage
Use svt-av1 as you would normally, this is just a repo that adds an Xcode proj.
For Swift Package Manager user, it's recommended to use the modular import instead of C headers.
Note you should use `svt_av1` instead of `svt-av1` when using modular import.
+ Objective-C
```objective-c
@import svt-av1;
// or if you don't use module
#import
```+ Swift
```swift
import svt_av1
```## License
svt-av1 is available under the [BSD 3-Clause Clear License](https://gitlab.com/AOMediaCodec/SVT-AV1/-/blob/master/LICENSE.md).