├── .gitignore ├── .swiftformat ├── Example └── VLCUIExample │ ├── .DS_Store │ ├── Cartfile │ ├── Cartfile.resolved │ ├── Shared │ ├── ContentView.swift │ ├── ContentViewModel.swift │ └── IntExtensions.swift │ ├── VLCUIExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── iOS.xcscheme │ │ ├── macOS.xcscheme │ │ └── tvOS.xcscheme │ ├── iOS │ ├── .DS_Store │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── OverlayView.swift │ └── iOSExample.swift │ ├── macOS │ ├── .DS_Store │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── OverlayView.swift │ ├── macOSExample.entitlements │ └── macOSExample.swift │ └── tvOS │ ├── .DS_Store │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── App Icon & Top Shelf Image.brandassets │ │ ├── App Icon - App Store.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.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 │ ├── OverlayView.swift │ └── tvOSExample.swift ├── LICENSE ├── Package.swift ├── README.md └── Sources └── VLCUI ├── Extensions ├── CGSizeExtensions.swift ├── CheckedContinuationExtensions.swift ├── ColorExtensions.swift ├── DurationExtensions.swift ├── FontExtensions.swift ├── IntExtensions.swift ├── OptionalExtensions.swift ├── VLCMediaExtensions.swift ├── VLCMediaPlayerExtensions.swift └── ViewExtensions.swift ├── PlatformTypes.swift ├── UIVLCVideoPlayerView.swift ├── VLCVideoPlayer ├── AspectRatio.swift ├── Configuration.swift ├── Error.swift ├── LoggingLevel.swift ├── MediaTrack.swift ├── PlaybackChild.swift ├── PlaybackInformation.swift ├── Proxy.swift ├── Selectors.swift ├── State.swift ├── ThumbnailHandler.swift └── VLCVideoPlayer.swift └── VLCVideoPlayerLogger.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/.swiftformat -------------------------------------------------------------------------------- /Example/VLCUIExample/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/.DS_Store -------------------------------------------------------------------------------- /Example/VLCUIExample/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/Cartfile -------------------------------------------------------------------------------- /Example/VLCUIExample/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/Cartfile.resolved -------------------------------------------------------------------------------- /Example/VLCUIExample/Shared/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/Shared/ContentView.swift -------------------------------------------------------------------------------- /Example/VLCUIExample/Shared/ContentViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/Shared/ContentViewModel.swift -------------------------------------------------------------------------------- /Example/VLCUIExample/Shared/IntExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/Shared/IntExtensions.swift -------------------------------------------------------------------------------- /Example/VLCUIExample/VLCUIExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/VLCUIExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/VLCUIExample/VLCUIExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/VLCUIExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/VLCUIExample/VLCUIExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/VLCUIExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/VLCUIExample/VLCUIExample.xcodeproj/xcshareddata/xcschemes/iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/VLCUIExample.xcodeproj/xcshareddata/xcschemes/iOS.xcscheme -------------------------------------------------------------------------------- /Example/VLCUIExample/VLCUIExample.xcodeproj/xcshareddata/xcschemes/macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/VLCUIExample.xcodeproj/xcshareddata/xcschemes/macOS.xcscheme -------------------------------------------------------------------------------- /Example/VLCUIExample/VLCUIExample.xcodeproj/xcshareddata/xcschemes/tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/VLCUIExample.xcodeproj/xcshareddata/xcschemes/tvOS.xcscheme -------------------------------------------------------------------------------- /Example/VLCUIExample/iOS/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/iOS/.DS_Store -------------------------------------------------------------------------------- /Example/VLCUIExample/iOS/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/iOS/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Example/VLCUIExample/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/VLCUIExample/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/VLCUIExample/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/iOS/Info.plist -------------------------------------------------------------------------------- /Example/VLCUIExample/iOS/OverlayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/iOS/OverlayView.swift -------------------------------------------------------------------------------- /Example/VLCUIExample/iOS/iOSExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/iOS/iOSExample.swift -------------------------------------------------------------------------------- /Example/VLCUIExample/macOS/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/macOS/.DS_Store -------------------------------------------------------------------------------- /Example/VLCUIExample/macOS/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/macOS/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Example/VLCUIExample/macOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/macOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/VLCUIExample/macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/macOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/VLCUIExample/macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/macOS/Info.plist -------------------------------------------------------------------------------- /Example/VLCUIExample/macOS/OverlayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/macOS/OverlayView.swift -------------------------------------------------------------------------------- /Example/VLCUIExample/macOS/macOSExample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/macOS/macOSExample.entitlements -------------------------------------------------------------------------------- /Example/VLCUIExample/macOS/macOSExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/macOS/macOSExample.swift -------------------------------------------------------------------------------- /Example/VLCUIExample/tvOS/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/tvOS/.DS_Store -------------------------------------------------------------------------------- /Example/VLCUIExample/tvOS/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/tvOS/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json -------------------------------------------------------------------------------- /Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json -------------------------------------------------------------------------------- /Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VLCUIExample/tvOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/tvOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/VLCUIExample/tvOS/OverlayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/tvOS/OverlayView.swift -------------------------------------------------------------------------------- /Example/VLCUIExample/tvOS/tvOSExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Example/VLCUIExample/tvOS/tvOSExample.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/README.md -------------------------------------------------------------------------------- /Sources/VLCUI/Extensions/CGSizeExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Sources/VLCUI/Extensions/CGSizeExtensions.swift -------------------------------------------------------------------------------- /Sources/VLCUI/Extensions/CheckedContinuationExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Sources/VLCUI/Extensions/CheckedContinuationExtensions.swift -------------------------------------------------------------------------------- /Sources/VLCUI/Extensions/ColorExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Sources/VLCUI/Extensions/ColorExtensions.swift -------------------------------------------------------------------------------- /Sources/VLCUI/Extensions/DurationExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Sources/VLCUI/Extensions/DurationExtensions.swift -------------------------------------------------------------------------------- /Sources/VLCUI/Extensions/FontExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Sources/VLCUI/Extensions/FontExtensions.swift -------------------------------------------------------------------------------- /Sources/VLCUI/Extensions/IntExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Sources/VLCUI/Extensions/IntExtensions.swift -------------------------------------------------------------------------------- /Sources/VLCUI/Extensions/OptionalExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Sources/VLCUI/Extensions/OptionalExtensions.swift -------------------------------------------------------------------------------- /Sources/VLCUI/Extensions/VLCMediaExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Sources/VLCUI/Extensions/VLCMediaExtensions.swift -------------------------------------------------------------------------------- /Sources/VLCUI/Extensions/VLCMediaPlayerExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Sources/VLCUI/Extensions/VLCMediaPlayerExtensions.swift -------------------------------------------------------------------------------- /Sources/VLCUI/Extensions/ViewExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Sources/VLCUI/Extensions/ViewExtensions.swift -------------------------------------------------------------------------------- /Sources/VLCUI/PlatformTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Sources/VLCUI/PlatformTypes.swift -------------------------------------------------------------------------------- /Sources/VLCUI/UIVLCVideoPlayerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Sources/VLCUI/UIVLCVideoPlayerView.swift -------------------------------------------------------------------------------- /Sources/VLCUI/VLCVideoPlayer/AspectRatio.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Sources/VLCUI/VLCVideoPlayer/AspectRatio.swift -------------------------------------------------------------------------------- /Sources/VLCUI/VLCVideoPlayer/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Sources/VLCUI/VLCVideoPlayer/Configuration.swift -------------------------------------------------------------------------------- /Sources/VLCUI/VLCVideoPlayer/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Sources/VLCUI/VLCVideoPlayer/Error.swift -------------------------------------------------------------------------------- /Sources/VLCUI/VLCVideoPlayer/LoggingLevel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Sources/VLCUI/VLCVideoPlayer/LoggingLevel.swift -------------------------------------------------------------------------------- /Sources/VLCUI/VLCVideoPlayer/MediaTrack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Sources/VLCUI/VLCVideoPlayer/MediaTrack.swift -------------------------------------------------------------------------------- /Sources/VLCUI/VLCVideoPlayer/PlaybackChild.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Sources/VLCUI/VLCVideoPlayer/PlaybackChild.swift -------------------------------------------------------------------------------- /Sources/VLCUI/VLCVideoPlayer/PlaybackInformation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Sources/VLCUI/VLCVideoPlayer/PlaybackInformation.swift -------------------------------------------------------------------------------- /Sources/VLCUI/VLCVideoPlayer/Proxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Sources/VLCUI/VLCVideoPlayer/Proxy.swift -------------------------------------------------------------------------------- /Sources/VLCUI/VLCVideoPlayer/Selectors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Sources/VLCUI/VLCVideoPlayer/Selectors.swift -------------------------------------------------------------------------------- /Sources/VLCUI/VLCVideoPlayer/State.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Sources/VLCUI/VLCVideoPlayer/State.swift -------------------------------------------------------------------------------- /Sources/VLCUI/VLCVideoPlayer/ThumbnailHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Sources/VLCUI/VLCVideoPlayer/ThumbnailHandler.swift -------------------------------------------------------------------------------- /Sources/VLCUI/VLCVideoPlayer/VLCVideoPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Sources/VLCUI/VLCVideoPlayer/VLCVideoPlayer.swift -------------------------------------------------------------------------------- /Sources/VLCUI/VLCVideoPlayerLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LePips/VLCUI/HEAD/Sources/VLCUI/VLCVideoPlayerLogger.swift --------------------------------------------------------------------------------