├── .gitignore ├── LICENSE ├── README.md ├── STLBGVideo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── STLBGVideo ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Demo │ ├── ViewController.h │ └── ViewController.m ├── Other │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Info.plist │ └── main.m ├── Resources │ └── BridgeLoop-640p.mp4 └── STLBGVideo │ ├── C415F3F13BBD50B1-info.plist │ ├── STLVideoFunctions.h │ ├── STLVideoFunctions.m │ ├── STLVideoViewController.h │ └── STLVideoViewController.m ├── STLBGVideoTests ├── Info.plist └── STLBGVideoTests.m └── package.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneLeon/STLBGVideo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneLeon/STLBGVideo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneLeon/STLBGVideo/HEAD/README.md -------------------------------------------------------------------------------- /STLBGVideo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneLeon/STLBGVideo/HEAD/STLBGVideo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /STLBGVideo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneLeon/STLBGVideo/HEAD/STLBGVideo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /STLBGVideo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneLeon/STLBGVideo/HEAD/STLBGVideo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /STLBGVideo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneLeon/STLBGVideo/HEAD/STLBGVideo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /STLBGVideo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneLeon/STLBGVideo/HEAD/STLBGVideo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /STLBGVideo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneLeon/STLBGVideo/HEAD/STLBGVideo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /STLBGVideo/Demo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneLeon/STLBGVideo/HEAD/STLBGVideo/Demo/ViewController.h -------------------------------------------------------------------------------- /STLBGVideo/Demo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneLeon/STLBGVideo/HEAD/STLBGVideo/Demo/ViewController.m -------------------------------------------------------------------------------- /STLBGVideo/Other/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneLeon/STLBGVideo/HEAD/STLBGVideo/Other/AppDelegate.h -------------------------------------------------------------------------------- /STLBGVideo/Other/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneLeon/STLBGVideo/HEAD/STLBGVideo/Other/AppDelegate.m -------------------------------------------------------------------------------- /STLBGVideo/Other/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneLeon/STLBGVideo/HEAD/STLBGVideo/Other/Info.plist -------------------------------------------------------------------------------- /STLBGVideo/Other/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneLeon/STLBGVideo/HEAD/STLBGVideo/Other/main.m -------------------------------------------------------------------------------- /STLBGVideo/Resources/BridgeLoop-640p.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneLeon/STLBGVideo/HEAD/STLBGVideo/Resources/BridgeLoop-640p.mp4 -------------------------------------------------------------------------------- /STLBGVideo/STLBGVideo/C415F3F13BBD50B1-info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneLeon/STLBGVideo/HEAD/STLBGVideo/STLBGVideo/C415F3F13BBD50B1-info.plist -------------------------------------------------------------------------------- /STLBGVideo/STLBGVideo/STLVideoFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneLeon/STLBGVideo/HEAD/STLBGVideo/STLBGVideo/STLVideoFunctions.h -------------------------------------------------------------------------------- /STLBGVideo/STLBGVideo/STLVideoFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneLeon/STLBGVideo/HEAD/STLBGVideo/STLBGVideo/STLVideoFunctions.m -------------------------------------------------------------------------------- /STLBGVideo/STLBGVideo/STLVideoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneLeon/STLBGVideo/HEAD/STLBGVideo/STLBGVideo/STLVideoViewController.h -------------------------------------------------------------------------------- /STLBGVideo/STLBGVideo/STLVideoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneLeon/STLBGVideo/HEAD/STLBGVideo/STLBGVideo/STLVideoViewController.m -------------------------------------------------------------------------------- /STLBGVideoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneLeon/STLBGVideo/HEAD/STLBGVideoTests/Info.plist -------------------------------------------------------------------------------- /STLBGVideoTests/STLBGVideoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneLeon/STLBGVideo/HEAD/STLBGVideoTests/STLBGVideoTests.m -------------------------------------------------------------------------------- /package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneLeon/STLBGVideo/HEAD/package.sh --------------------------------------------------------------------------------