https://github.com/sdwebimage/libde265-xcode
A wrapper for libde265 + Xcode project. Support Carthage && CocoaPods && SwiftPM.
https://github.com/sdwebimage/libde265-xcode
carthage h265 hevc ios macos swiftpm tvos wachos
Last synced: 18 days ago
JSON representation
A wrapper for libde265 + Xcode project. Support Carthage && CocoaPods && SwiftPM.
- Host: GitHub
- URL: https://github.com/sdwebimage/libde265-xcode
- Owner: SDWebImage
- Created: 2018-12-01T12:56:15.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-12-21T17:30:40.000Z (over 1 year ago)
- Last Synced: 2025-06-04T03:24:30.541Z (24 days ago)
- Topics: carthage, h265, hevc, ios, macos, swiftpm, tvos, wachos
- Language: Ruby
- Homepage:
- Size: 114 KB
- Stars: 13
- Watchers: 7
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# libde265 + Xcode
[](https://travis-ci.org/SDWebImage/libde265-Xcode)
[](http://cocoapods.org/pods/libde265)
[](http://cocoapods.org/pods/libde265)
[](http://cocoapods.org/pods/libde265)
[](https://swift.org/package-manager/)
[](https://github.com/SDWebImage/libde265-Xcode)A wrapper for [libde265](https://github.com/strukturag/libde265) + Xcode project.
This enables Carthage supportThis repo also including the CocoaPods's spec file to use libde265 with the dependency management instead of the vendored library.
## Requirements
+ iOS 8
+ macOS 10.10
+ tvOS 9.0
+ watchOS 2.0## Installation
### Carthage
libde265 is (via this repo) available through [Carthage](https://github.com/Carthage/Carthage).
```
github "SDWebImage/libde265-Xcode"
```### CocoaPods
libde265 is available through [CocoaPods](https://github.com/CocoaPods/CocoaPods).
```
pod 'libde265'
```#### Swift Package Manager (Xcode 11+)
libde265 is available through [Swift Package Manager](https://swift.org/package-manager).
```swift
let package = Package(
dependencies: [
.package(url: "https://github.com/SDWebImage/libde265-Xcode.git", from: "1.0.6")
]
)
```## Note
The `1.0.9-beta` version does not present in upstream [libde265 releases](https://github.com/strukturag/libde265/releases).
We use the master `e587ef6e` SHA instead and fix some Xcode integration issues.## Usage
This library support HEVC(H.265) decoding. Check the [libde265's official site](https://www.libde265.org/) for more detail information.
Use libde265 as you would normally, this is just a repo that adds an Xcode proj.
## License
libde265 is available under the GNU Lesser General Public License. See [the LICENSE file](https://github.com/strukturag/libde265/blob/master/COPYING) for more info.