├── .gitignore ├── .swift-version ├── .travis.yml ├── AVPlayerItemHomeOutput.gif ├── AVPlayerItemHomeOutput.jpg ├── AVPlayerItemHomeOutput.podspec ├── AVPlayerItemHomeOutput.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── Core.xcscheme │ ├── Example.xcscheme │ ├── iOS.xcscheme │ ├── tvExample.xcscheme │ └── tvOS.xcscheme ├── AVPlayerItemHomeOutput.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── CHANGELOG.md ├── Core ├── AVPlayerItemHomeOutput.h ├── AVPlayerItemHomeOutput.swift ├── HomeManager.swift └── Info.plist ├── Example ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-57x57@1x.png │ │ ├── Icon-App-57x57@2x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-72x72@1x.png │ │ ├── Icon-App-72x72@2x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ ├── Icon-App-83.5x83.5@2x.png │ │ ├── Icon-Small-50x50@1x.png │ │ └── Icon-Small-50x50@2x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Example.entitlements ├── Info.plist └── ViewController.swift ├── ExampleUITests └── ExampleUITests.swift ├── LICENSE ├── Package.swift ├── README.md ├── Tests ├── AVPlayerItemHomeOutputTests.swift ├── Info.plist └── Lenna.png ├── _config.yml └── tvExample ├── Assets.xcassets ├── App Icon & Top Shelf Image.brandassets │ ├── App Icon - Large.imagestack │ │ ├── Back.imagestacklayer │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Front.imagestacklayer │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ └── Middle.imagestacklayer │ │ │ ├── Content.imageset │ │ │ └── Contents.json │ │ │ └── Contents.json │ ├── App Icon - Small.imagestack │ │ ├── Back.imagestacklayer │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Front.imagestacklayer │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ └── Middle.imagestacklayer │ │ │ ├── Content.imageset │ │ │ └── Contents.json │ │ │ └── Contents.json │ ├── Contents.json │ ├── Top Shelf Image Wide.imageset │ │ └── Contents.json │ └── Top Shelf Image.imageset │ │ └── Contents.json ├── Contents.json └── LaunchImage.launchimage │ └── Contents.json ├── Base.lproj └── Main.storyboard └── Info.plist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/.travis.yml -------------------------------------------------------------------------------- /AVPlayerItemHomeOutput.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/AVPlayerItemHomeOutput.gif -------------------------------------------------------------------------------- /AVPlayerItemHomeOutput.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/AVPlayerItemHomeOutput.jpg -------------------------------------------------------------------------------- /AVPlayerItemHomeOutput.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/AVPlayerItemHomeOutput.podspec -------------------------------------------------------------------------------- /AVPlayerItemHomeOutput.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/AVPlayerItemHomeOutput.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AVPlayerItemHomeOutput.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/AVPlayerItemHomeOutput.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AVPlayerItemHomeOutput.xcodeproj/xcshareddata/xcschemes/Core.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/AVPlayerItemHomeOutput.xcodeproj/xcshareddata/xcschemes/Core.xcscheme -------------------------------------------------------------------------------- /AVPlayerItemHomeOutput.xcodeproj/xcshareddata/xcschemes/Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/AVPlayerItemHomeOutput.xcodeproj/xcshareddata/xcschemes/Example.xcscheme -------------------------------------------------------------------------------- /AVPlayerItemHomeOutput.xcodeproj/xcshareddata/xcschemes/iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/AVPlayerItemHomeOutput.xcodeproj/xcshareddata/xcschemes/iOS.xcscheme -------------------------------------------------------------------------------- /AVPlayerItemHomeOutput.xcodeproj/xcshareddata/xcschemes/tvExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/AVPlayerItemHomeOutput.xcodeproj/xcshareddata/xcschemes/tvExample.xcscheme -------------------------------------------------------------------------------- /AVPlayerItemHomeOutput.xcodeproj/xcshareddata/xcschemes/tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/AVPlayerItemHomeOutput.xcodeproj/xcshareddata/xcschemes/tvOS.xcscheme -------------------------------------------------------------------------------- /AVPlayerItemHomeOutput.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/AVPlayerItemHomeOutput.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AVPlayerItemHomeOutput.xcworkspace/xcshareddata/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/AVPlayerItemHomeOutput.xcworkspace/xcshareddata/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Core/AVPlayerItemHomeOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Core/AVPlayerItemHomeOutput.h -------------------------------------------------------------------------------- /Core/AVPlayerItemHomeOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Core/AVPlayerItemHomeOutput.swift -------------------------------------------------------------------------------- /Core/HomeManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Core/HomeManager.swift -------------------------------------------------------------------------------- /Core/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Core/Info.plist -------------------------------------------------------------------------------- /Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png -------------------------------------------------------------------------------- /Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Example.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Example/Example.entitlements -------------------------------------------------------------------------------- /Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Example/Info.plist -------------------------------------------------------------------------------- /Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Example/ViewController.swift -------------------------------------------------------------------------------- /ExampleUITests/ExampleUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/ExampleUITests/ExampleUITests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/README.md -------------------------------------------------------------------------------- /Tests/AVPlayerItemHomeOutputTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Tests/AVPlayerItemHomeOutputTests.swift -------------------------------------------------------------------------------- /Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Tests/Info.plist -------------------------------------------------------------------------------- /Tests/Lenna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/Tests/Lenna.png -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/_config.yml -------------------------------------------------------------------------------- /tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json -------------------------------------------------------------------------------- /tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json -------------------------------------------------------------------------------- /tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json -------------------------------------------------------------------------------- /tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/tvExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /tvExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/tvExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /tvExample/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/tvExample/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /tvExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/tvExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /tvExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/AVPlayerItemHomeOutput/HEAD/tvExample/Info.plist --------------------------------------------------------------------------------