This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import AVFoundation | |
import Combine | |
// from: https://gist.github.com/MaximKotliar/c8b628ff9c7644b596711152594e1024 | |
public class AVVideoPlayer: AVPlayer { | |
public var delegate: AVVideoPlayerDelegate? { didSet { self.setupObservers() } } | |
private var cancellables: Set<AnyCancellable> = [] | |
public func stop() { | |
self.pause() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Plugin: https://github.com/ztalbot2000/homebridge-cmd4 | |
# | |
# config.json | |
# | |
# ... | |
# { | |
# "platform": "Cmd4", | |
# "name": "Cmd4", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Plugin: https://github.com/ztalbot2000/homebridge-cmd4 | |
# | |
# config.json | |
# | |
# ... | |
# { | |
# "platform": "Cmd4", | |
# "name": "Cmd4", |