├── LICENSE ├── README.md ├── videoplayer.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── ashishsingh.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── ashishsingh.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── videoplayer ├── AppDelegate.swift ├── AppImageView.swift ├── AppUtilities.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── comment.imageset │ │ ├── Contents.json │ │ └── comment@2x.png │ ├── heart.imageset │ │ ├── Contents.json │ │ └── heart@2x.png │ └── viewed.imageset │ │ ├── Contents.json │ │ └── viewed@2x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ShotTableViewCell.swift ├── ShotTableViewCell.xib ├── VideoPlayLibrary │ ├── ASVideoContainer.swift │ ├── ASVideoLayerObject.swift │ └── ASVideoPlayerController.swift └── ViewController.swift ├── videoplayerTests ├── Info.plist └── videoplayerTests.swift └── videoplayerUITests ├── Info.plist └── videoplayerUITests.swift /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/README.md -------------------------------------------------------------------------------- /videoplayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /videoplayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /videoplayer.xcodeproj/project.xcworkspace/xcuserdata/ashishsingh.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayer.xcodeproj/project.xcworkspace/xcuserdata/ashishsingh.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /videoplayer.xcodeproj/xcuserdata/ashishsingh.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayer.xcodeproj/xcuserdata/ashishsingh.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /videoplayer.xcodeproj/xcuserdata/ashishsingh.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayer.xcodeproj/xcuserdata/ashishsingh.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /videoplayer/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayer/AppDelegate.swift -------------------------------------------------------------------------------- /videoplayer/AppImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayer/AppImageView.swift -------------------------------------------------------------------------------- /videoplayer/AppUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayer/AppUtilities.swift -------------------------------------------------------------------------------- /videoplayer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /videoplayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /videoplayer/Assets.xcassets/comment.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayer/Assets.xcassets/comment.imageset/Contents.json -------------------------------------------------------------------------------- /videoplayer/Assets.xcassets/comment.imageset/comment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayer/Assets.xcassets/comment.imageset/comment@2x.png -------------------------------------------------------------------------------- /videoplayer/Assets.xcassets/heart.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayer/Assets.xcassets/heart.imageset/Contents.json -------------------------------------------------------------------------------- /videoplayer/Assets.xcassets/heart.imageset/heart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayer/Assets.xcassets/heart.imageset/heart@2x.png -------------------------------------------------------------------------------- /videoplayer/Assets.xcassets/viewed.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayer/Assets.xcassets/viewed.imageset/Contents.json -------------------------------------------------------------------------------- /videoplayer/Assets.xcassets/viewed.imageset/viewed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayer/Assets.xcassets/viewed.imageset/viewed@2x.png -------------------------------------------------------------------------------- /videoplayer/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayer/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /videoplayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /videoplayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayer/Info.plist -------------------------------------------------------------------------------- /videoplayer/ShotTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayer/ShotTableViewCell.swift -------------------------------------------------------------------------------- /videoplayer/ShotTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayer/ShotTableViewCell.xib -------------------------------------------------------------------------------- /videoplayer/VideoPlayLibrary/ASVideoContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayer/VideoPlayLibrary/ASVideoContainer.swift -------------------------------------------------------------------------------- /videoplayer/VideoPlayLibrary/ASVideoLayerObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayer/VideoPlayLibrary/ASVideoLayerObject.swift -------------------------------------------------------------------------------- /videoplayer/VideoPlayLibrary/ASVideoPlayerController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayer/VideoPlayLibrary/ASVideoPlayerController.swift -------------------------------------------------------------------------------- /videoplayer/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayer/ViewController.swift -------------------------------------------------------------------------------- /videoplayerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayerTests/Info.plist -------------------------------------------------------------------------------- /videoplayerTests/videoplayerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayerTests/videoplayerTests.swift -------------------------------------------------------------------------------- /videoplayerUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayerUITests/Info.plist -------------------------------------------------------------------------------- /videoplayerUITests/videoplayerUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0309/AutoVideoPlayer/HEAD/videoplayerUITests/videoplayerUITests.swift --------------------------------------------------------------------------------