当前位置: 首页 > 软件库 > 其他开源 > 物联网 >

AVPlayerItemHomeOutput

授权协议 MIT License
开发语言 JavaScript
所属分类 其他开源、 物联网
软件类型 开源软件
地区 不详
投 递 者 黄靖
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

AVPlayerItemHomeOutput

AVPlayerItemHomeOutput

The AVPlayerItemHomeOutput lets you coordinate the output of content associated with your HomeKit lightbulbs.

In other words, becomes #Ambilight. ��

Works with all HomeKit (and HomeBridge) compatible lightbulbs.

AVPlayerItemHomeOutput

Installation

AVPlayerItemHomeOutput is available through CocoaPods. To installit, simply add the following line to your Podfile:

pod 'AVPlayerItemHomeOutput'

Or you can install it with Carthage:

github "alexruperez/AVPlayerItemHomeOutput"

Or install it with Swift Package Manager:

dependencies: [
    .Package(url: "https://github.com/alexruperez/AVPlayerItemHomeOutput.git")
]

Usage

let sample = URL(string: "https://raw.githubusercontent.com/bower-media-samples/big-buck-bunny-1080p-30s/master/video.mp4")!
let asset = AVAsset(url: sample)
let playerItem = AVPlayerItem(asset: asset)
let homeOutput = AVPlayerItemHomeOutput(playerItem) // Only create your instance...
homeOutput.setDelegate(self, queue: nil) // Optional AVPlayerItemOutputPullDelegate.
playerItem.add(homeOutput) // ...and add it to your AVPlayerItem!
let playerViewController = AVPlayerViewController()
playerViewController.player = AVPlayer(playerItem: playerItem)
present(playerViewController, animated: true) {
        playerViewController.player?.play()
}

Don't forget:

Add NSHomeKitUsageDescription key to your Info.plist to specify the use of HomeKit in your app.

Etc.

  • Contributions are very welcome.
  • Attribution is appreciated (let's spread the word!), but not mandatory.

Authors

alexruperez, contact@alexruperez.com

License

AVPlayerItemHomeOutput is available under the MIT license. See the LICENSE file for more info.