├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE │ ├── normal_pull_request.md │ └── release_pull_request.md ├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── CODE_OF_CONDUCT.md ├── Example ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard ├── Info.plist ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── SceneDelegate.swift ├── VideoPlayerView.swift └── video.mp4 ├── ExampleMacOS ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ └── Main.storyboard ├── ExampleMacOS.entitlements ├── Info.plist └── Preview Content │ └── Preview Assets.xcassets │ └── Contents.json ├── LICENSE.md ├── Package.swift ├── README.md ├── SVEVideoUI.xcodeproj ├── SVEVideoUITests_Info.plist ├── SVEVideoUI_Info.plist ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ └── xcschemes │ ├── Example.xcscheme │ ├── ExampleMacOS.xcscheme │ └── SVEVideoUI-Package.xcscheme ├── Sources └── SVEVideoUI │ └── Video.swift ├── Tests ├── LinuxMain.swift ├── README.md └── SVEVideoUITests │ ├── SVEVideoUITests.swift │ └── XCTestManifests.swift └── screenshots_1.png /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/normal_pull_request.md: -------------------------------------------------------------------------------- 1 | Test 123 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/release_pull_request.md: -------------------------------------------------------------------------------- 1 | Release PR 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/Example/Info.plist -------------------------------------------------------------------------------- /Example/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/Example/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/Example/SceneDelegate.swift -------------------------------------------------------------------------------- /Example/VideoPlayerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/Example/VideoPlayerView.swift -------------------------------------------------------------------------------- /Example/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/Example/video.mp4 -------------------------------------------------------------------------------- /ExampleMacOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/ExampleMacOS/AppDelegate.swift -------------------------------------------------------------------------------- /ExampleMacOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/ExampleMacOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ExampleMacOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/ExampleMacOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ExampleMacOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/ExampleMacOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ExampleMacOS/ExampleMacOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/ExampleMacOS/ExampleMacOS.entitlements -------------------------------------------------------------------------------- /ExampleMacOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/ExampleMacOS/Info.plist -------------------------------------------------------------------------------- /ExampleMacOS/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/ExampleMacOS/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/README.md -------------------------------------------------------------------------------- /SVEVideoUI.xcodeproj/SVEVideoUITests_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/SVEVideoUI.xcodeproj/SVEVideoUITests_Info.plist -------------------------------------------------------------------------------- /SVEVideoUI.xcodeproj/SVEVideoUI_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/SVEVideoUI.xcodeproj/SVEVideoUI_Info.plist -------------------------------------------------------------------------------- /SVEVideoUI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/SVEVideoUI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SVEVideoUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/SVEVideoUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SVEVideoUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/SVEVideoUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SVEVideoUI.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/SVEVideoUI.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /SVEVideoUI.xcodeproj/xcshareddata/xcschemes/Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/SVEVideoUI.xcodeproj/xcshareddata/xcschemes/Example.xcscheme -------------------------------------------------------------------------------- /SVEVideoUI.xcodeproj/xcshareddata/xcschemes/ExampleMacOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/SVEVideoUI.xcodeproj/xcshareddata/xcschemes/ExampleMacOS.xcscheme -------------------------------------------------------------------------------- /SVEVideoUI.xcodeproj/xcshareddata/xcschemes/SVEVideoUI-Package.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/SVEVideoUI.xcodeproj/xcshareddata/xcschemes/SVEVideoUI-Package.xcscheme -------------------------------------------------------------------------------- /Sources/SVEVideoUI/Video.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/Sources/SVEVideoUI/Video.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/Tests/README.md -------------------------------------------------------------------------------- /Tests/SVEVideoUITests/SVEVideoUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/Tests/SVEVideoUITests/SVEVideoUITests.swift -------------------------------------------------------------------------------- /Tests/SVEVideoUITests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/Tests/SVEVideoUITests/XCTestManifests.swift -------------------------------------------------------------------------------- /screenshots_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioEstevao/SVEVideoUI/HEAD/screenshots_1.png --------------------------------------------------------------------------------