├── DownloadMediaDemo ├── DownloadMediaDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── zzi.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── zzi.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── DownloadMediaDemo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── PlayIcon.imageset │ │ ├── Contents.json │ │ └── Play.pdf │ └── StopIcon.imageset │ │ ├── Contents.json │ │ └── Stop.pdf │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── Player │ ├── MediaPlayer.swift │ └── PlayerView.swift │ ├── ResourceLoaderDelegates │ └── SimpleResourceLoaderDelegate.swift │ └── ViewControllers │ ├── OptionsViewController.swift │ ├── SimpleExportViewController.swift │ ├── SimpleResourceLoaderViewController.swift │ └── VideoViewController.swift ├── Images ├── Img1.jpg ├── Img2.jpg ├── Img3.jpg └── header1.jpg └── README.md /DownloadMediaDemo/DownloadMediaDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ZGroupSolutionsArticles/Article_EZ002/HEAD/DownloadMediaDemo/DownloadMediaDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DownloadMediaDemo/DownloadMediaDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ZGroupSolutionsArticles/Article_EZ002/HEAD/DownloadMediaDemo/DownloadMediaDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DownloadMediaDemo/DownloadMediaDemo.xcodeproj/project.xcworkspace/xcuserdata/zzi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ZGroupSolutionsArticles/Article_EZ002/HEAD/DownloadMediaDemo/DownloadMediaDemo.xcodeproj/project.xcworkspace/xcuserdata/zzi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DownloadMediaDemo/DownloadMediaDemo.xcodeproj/xcuserdata/zzi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ZGroupSolutionsArticles/Article_EZ002/HEAD/DownloadMediaDemo/DownloadMediaDemo.xcodeproj/xcuserdata/zzi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /DownloadMediaDemo/DownloadMediaDemo.xcodeproj/xcuserdata/zzi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ZGroupSolutionsArticles/Article_EZ002/HEAD/DownloadMediaDemo/DownloadMediaDemo.xcodeproj/xcuserdata/zzi.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DownloadMediaDemo/DownloadMediaDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ZGroupSolutionsArticles/Article_EZ002/HEAD/DownloadMediaDemo/DownloadMediaDemo/AppDelegate.swift -------------------------------------------------------------------------------- /DownloadMediaDemo/DownloadMediaDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ZGroupSolutionsArticles/Article_EZ002/HEAD/DownloadMediaDemo/DownloadMediaDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DownloadMediaDemo/DownloadMediaDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ZGroupSolutionsArticles/Article_EZ002/HEAD/DownloadMediaDemo/DownloadMediaDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /DownloadMediaDemo/DownloadMediaDemo/Assets.xcassets/PlayIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ZGroupSolutionsArticles/Article_EZ002/HEAD/DownloadMediaDemo/DownloadMediaDemo/Assets.xcassets/PlayIcon.imageset/Contents.json -------------------------------------------------------------------------------- /DownloadMediaDemo/DownloadMediaDemo/Assets.xcassets/PlayIcon.imageset/Play.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ZGroupSolutionsArticles/Article_EZ002/HEAD/DownloadMediaDemo/DownloadMediaDemo/Assets.xcassets/PlayIcon.imageset/Play.pdf -------------------------------------------------------------------------------- /DownloadMediaDemo/DownloadMediaDemo/Assets.xcassets/StopIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ZGroupSolutionsArticles/Article_EZ002/HEAD/DownloadMediaDemo/DownloadMediaDemo/Assets.xcassets/StopIcon.imageset/Contents.json -------------------------------------------------------------------------------- /DownloadMediaDemo/DownloadMediaDemo/Assets.xcassets/StopIcon.imageset/Stop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ZGroupSolutionsArticles/Article_EZ002/HEAD/DownloadMediaDemo/DownloadMediaDemo/Assets.xcassets/StopIcon.imageset/Stop.pdf -------------------------------------------------------------------------------- /DownloadMediaDemo/DownloadMediaDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ZGroupSolutionsArticles/Article_EZ002/HEAD/DownloadMediaDemo/DownloadMediaDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /DownloadMediaDemo/DownloadMediaDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ZGroupSolutionsArticles/Article_EZ002/HEAD/DownloadMediaDemo/DownloadMediaDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DownloadMediaDemo/DownloadMediaDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ZGroupSolutionsArticles/Article_EZ002/HEAD/DownloadMediaDemo/DownloadMediaDemo/Info.plist -------------------------------------------------------------------------------- /DownloadMediaDemo/DownloadMediaDemo/Player/MediaPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ZGroupSolutionsArticles/Article_EZ002/HEAD/DownloadMediaDemo/DownloadMediaDemo/Player/MediaPlayer.swift -------------------------------------------------------------------------------- /DownloadMediaDemo/DownloadMediaDemo/Player/PlayerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ZGroupSolutionsArticles/Article_EZ002/HEAD/DownloadMediaDemo/DownloadMediaDemo/Player/PlayerView.swift -------------------------------------------------------------------------------- /DownloadMediaDemo/DownloadMediaDemo/ResourceLoaderDelegates/SimpleResourceLoaderDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ZGroupSolutionsArticles/Article_EZ002/HEAD/DownloadMediaDemo/DownloadMediaDemo/ResourceLoaderDelegates/SimpleResourceLoaderDelegate.swift -------------------------------------------------------------------------------- /DownloadMediaDemo/DownloadMediaDemo/ViewControllers/OptionsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ZGroupSolutionsArticles/Article_EZ002/HEAD/DownloadMediaDemo/DownloadMediaDemo/ViewControllers/OptionsViewController.swift -------------------------------------------------------------------------------- /DownloadMediaDemo/DownloadMediaDemo/ViewControllers/SimpleExportViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ZGroupSolutionsArticles/Article_EZ002/HEAD/DownloadMediaDemo/DownloadMediaDemo/ViewControllers/SimpleExportViewController.swift -------------------------------------------------------------------------------- /DownloadMediaDemo/DownloadMediaDemo/ViewControllers/SimpleResourceLoaderViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ZGroupSolutionsArticles/Article_EZ002/HEAD/DownloadMediaDemo/DownloadMediaDemo/ViewControllers/SimpleResourceLoaderViewController.swift -------------------------------------------------------------------------------- /DownloadMediaDemo/DownloadMediaDemo/ViewControllers/VideoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ZGroupSolutionsArticles/Article_EZ002/HEAD/DownloadMediaDemo/DownloadMediaDemo/ViewControllers/VideoViewController.swift -------------------------------------------------------------------------------- /Images/Img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ZGroupSolutionsArticles/Article_EZ002/HEAD/Images/Img1.jpg -------------------------------------------------------------------------------- /Images/Img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ZGroupSolutionsArticles/Article_EZ002/HEAD/Images/Img2.jpg -------------------------------------------------------------------------------- /Images/Img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ZGroupSolutionsArticles/Article_EZ002/HEAD/Images/Img3.jpg -------------------------------------------------------------------------------- /Images/header1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ZGroupSolutionsArticles/Article_EZ002/HEAD/Images/header1.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ZGroupSolutionsArticles/Article_EZ002/HEAD/README.md --------------------------------------------------------------------------------