├── WeChatSightDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── wukong.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── WeChatSightDemo.xcscheme │ └── xcschememanagement.plist ├── WeChatSightDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── sight_video_focus.imageset │ │ ├── Contents.json │ │ ├── sight_video_focus@2x.png │ │ └── sight_video_focus@3x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Category │ ├── UIImageView+PlayGIF.h │ └── UIImageView+PlayGIF.m ├── Controller │ ├── WCSCaptureViewController.h │ ├── WCSCaptureViewController.m │ ├── WCSPlayMovieController.h │ ├── WCSPlayMovieController.m │ ├── WCSPreviewViewController.h │ └── WCSPreviewViewController.m ├── Info.plist ├── View │ ├── WKScaleButton.h │ └── WKScaleButton.m ├── ViewController.h ├── ViewController.m ├── WKMovieRecorder │ ├── WKMovieRecorder.h │ ├── WKMovieRecorder.m │ ├── WKMovieWriter.h │ ├── WKMovieWriter.m │ ├── WKProgressView.h │ ├── WKProgressView.m │ ├── WKTestAudioOutput.h │ ├── WKTestAudioOutput.m │ ├── WKVideoConverter.h │ └── WKVideoConverter.m └── main.m ├── WeChatSightDemoTests ├── Info.plist └── WeChatSightDemoTests.m └── WeChatSightDemoUITests ├── Info.plist └── WeChatSightDemoUITests.m /WeChatSightDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WeChatSightDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WeChatSightDemo.xcodeproj/xcuserdata/wukong.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo.xcodeproj/xcuserdata/wukong.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /WeChatSightDemo.xcodeproj/xcuserdata/wukong.xcuserdatad/xcschemes/WeChatSightDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo.xcodeproj/xcuserdata/wukong.xcuserdatad/xcschemes/WeChatSightDemo.xcscheme -------------------------------------------------------------------------------- /WeChatSightDemo.xcodeproj/xcuserdata/wukong.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo.xcodeproj/xcuserdata/wukong.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /WeChatSightDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/AppDelegate.h -------------------------------------------------------------------------------- /WeChatSightDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/AppDelegate.m -------------------------------------------------------------------------------- /WeChatSightDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /WeChatSightDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /WeChatSightDemo/Assets.xcassets/sight_video_focus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/Assets.xcassets/sight_video_focus.imageset/Contents.json -------------------------------------------------------------------------------- /WeChatSightDemo/Assets.xcassets/sight_video_focus.imageset/sight_video_focus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/Assets.xcassets/sight_video_focus.imageset/sight_video_focus@2x.png -------------------------------------------------------------------------------- /WeChatSightDemo/Assets.xcassets/sight_video_focus.imageset/sight_video_focus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/Assets.xcassets/sight_video_focus.imageset/sight_video_focus@3x.png -------------------------------------------------------------------------------- /WeChatSightDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /WeChatSightDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /WeChatSightDemo/Category/UIImageView+PlayGIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/Category/UIImageView+PlayGIF.h -------------------------------------------------------------------------------- /WeChatSightDemo/Category/UIImageView+PlayGIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/Category/UIImageView+PlayGIF.m -------------------------------------------------------------------------------- /WeChatSightDemo/Controller/WCSCaptureViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/Controller/WCSCaptureViewController.h -------------------------------------------------------------------------------- /WeChatSightDemo/Controller/WCSCaptureViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/Controller/WCSCaptureViewController.m -------------------------------------------------------------------------------- /WeChatSightDemo/Controller/WCSPlayMovieController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/Controller/WCSPlayMovieController.h -------------------------------------------------------------------------------- /WeChatSightDemo/Controller/WCSPlayMovieController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/Controller/WCSPlayMovieController.m -------------------------------------------------------------------------------- /WeChatSightDemo/Controller/WCSPreviewViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/Controller/WCSPreviewViewController.h -------------------------------------------------------------------------------- /WeChatSightDemo/Controller/WCSPreviewViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/Controller/WCSPreviewViewController.m -------------------------------------------------------------------------------- /WeChatSightDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/Info.plist -------------------------------------------------------------------------------- /WeChatSightDemo/View/WKScaleButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/View/WKScaleButton.h -------------------------------------------------------------------------------- /WeChatSightDemo/View/WKScaleButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/View/WKScaleButton.m -------------------------------------------------------------------------------- /WeChatSightDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/ViewController.h -------------------------------------------------------------------------------- /WeChatSightDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/ViewController.m -------------------------------------------------------------------------------- /WeChatSightDemo/WKMovieRecorder/WKMovieRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/WKMovieRecorder/WKMovieRecorder.h -------------------------------------------------------------------------------- /WeChatSightDemo/WKMovieRecorder/WKMovieRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/WKMovieRecorder/WKMovieRecorder.m -------------------------------------------------------------------------------- /WeChatSightDemo/WKMovieRecorder/WKMovieWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/WKMovieRecorder/WKMovieWriter.h -------------------------------------------------------------------------------- /WeChatSightDemo/WKMovieRecorder/WKMovieWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/WKMovieRecorder/WKMovieWriter.m -------------------------------------------------------------------------------- /WeChatSightDemo/WKMovieRecorder/WKProgressView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/WKMovieRecorder/WKProgressView.h -------------------------------------------------------------------------------- /WeChatSightDemo/WKMovieRecorder/WKProgressView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/WKMovieRecorder/WKProgressView.m -------------------------------------------------------------------------------- /WeChatSightDemo/WKMovieRecorder/WKTestAudioOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/WKMovieRecorder/WKTestAudioOutput.h -------------------------------------------------------------------------------- /WeChatSightDemo/WKMovieRecorder/WKTestAudioOutput.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/WKMovieRecorder/WKTestAudioOutput.m -------------------------------------------------------------------------------- /WeChatSightDemo/WKMovieRecorder/WKVideoConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/WKMovieRecorder/WKVideoConverter.h -------------------------------------------------------------------------------- /WeChatSightDemo/WKMovieRecorder/WKVideoConverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/WKMovieRecorder/WKVideoConverter.m -------------------------------------------------------------------------------- /WeChatSightDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemo/main.m -------------------------------------------------------------------------------- /WeChatSightDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemoTests/Info.plist -------------------------------------------------------------------------------- /WeChatSightDemoTests/WeChatSightDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemoTests/WeChatSightDemoTests.m -------------------------------------------------------------------------------- /WeChatSightDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemoUITests/Info.plist -------------------------------------------------------------------------------- /WeChatSightDemoUITests/WeChatSightDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuKongCoo1/WeChatSightDemo/HEAD/WeChatSightDemoUITests/WeChatSightDemoUITests.m --------------------------------------------------------------------------------