├── VideoDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── biyuhuaping.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── biyuhuaping.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── VideoDemo.xcscheme │ └── xcschememanagement.plist ├── VideoDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── RecorderVideo │ │ ├── Contents.json │ │ ├── lz_new_rightbutton.imageset │ │ │ ├── Contents.json │ │ │ ├── lz_new_rightbutton@2x.png │ │ │ └── lz_new_rightbutton@3x.png │ │ ├── lz_recorder_change.imageset │ │ │ ├── Contents.json │ │ │ ├── lz_recorder_change@2x.png │ │ │ └── lz_recorder_change@3x.png │ │ ├── lz_recorder_change_hd.imageset │ │ │ ├── Contents.json │ │ │ ├── lz_recorder_change_hd@2x.png │ │ │ └── lz_recorder_change_hd@3x.png │ │ ├── lz_recorder_confirm.imageset │ │ │ ├── Contents.json │ │ │ ├── lz_recorder_confirm@2x.png │ │ │ └── lz_recorder_confirm@3x.png │ │ ├── lz_recorder_confirm_hd.imageset │ │ │ ├── Contents.json │ │ │ ├── lz_recorder_confirm_hd@2x.png │ │ │ └── lz_recorder_confirm_hd@3x.png │ │ ├── lz_recorder_delete.imageset │ │ │ ├── Contents.json │ │ │ ├── lz_recorder_delete@2x.png │ │ │ └── lz_recorder_delete@3x.png │ │ ├── lz_recorder_delete_hd.imageset │ │ │ ├── Contents.json │ │ │ ├── lz_recorder_delete_hd@2x.png │ │ │ └── lz_recorder_delete_hd@3x.png │ │ ├── lz_recorder_flash.imageset │ │ │ ├── Contents.json │ │ │ ├── lz_recorder_flash@2x.png │ │ │ └── lz_recorder_flash@3x.png │ │ ├── lz_recorder_flash_hd.imageset │ │ │ ├── Contents.json │ │ │ ├── lz_recorder_flash_hd@2x.png │ │ │ └── lz_recorder_flash_hd@3x.png │ │ ├── lz_recorder_grid.imageset │ │ │ ├── Contents.json │ │ │ ├── lz_recorder_grid@2x.png │ │ │ └── lz_recorder_grid@3x.png │ │ ├── lz_recorder_grid_hd.imageset │ │ │ ├── Contents.json │ │ │ ├── lz_recorder_grid_hd@2x.png │ │ │ └── lz_recorder_grid_hd@3x.png │ │ ├── lz_recorder_line_hd.imageset │ │ │ ├── Contents.json │ │ │ ├── lz_recorder_line_hd@2x.png │ │ │ └── lz_recorder_line_hd@3x.png │ │ ├── lz_recorder_recorder.imageset │ │ │ ├── Contents.json │ │ │ ├── lz_recorder_recorder@2x.png │ │ │ └── lz_recorder_recorder@3x.png │ │ ├── lz_recorder_snapshot.imageset │ │ │ ├── Contents.json │ │ │ ├── lz_recorder_snapshot@2x.png │ │ │ └── lz_recorder_snapshot@3x.png │ │ └── lz_recorder_snapshot_hd.imageset │ │ │ ├── Contents.json │ │ │ ├── lz_recorder_snapshot_hd@2x.png │ │ │ └── lz_recorder_snapshot_hd@3x.png │ ├── VideoDetails │ │ ├── Contents.json │ │ ├── lz_addmusic_buttonimage.imageset │ │ │ ├── Contents.json │ │ │ ├── lz_addmusic_buttonimage@2x.png │ │ │ └── lz_addmusic_buttonimage@3x.png │ │ ├── lz_cutvideo_buttonimage.imageset │ │ │ ├── Contents.json │ │ │ ├── lz_cutvideo_buttonimage@2x.png │ │ │ └── lz_cutvideo_buttonimage@3x.png │ │ ├── lz_musicempty_close.imageset │ │ │ ├── Contents.json │ │ │ ├── lz_musicempty_close@2x.png │ │ │ └── lz_musicempty_close@3x.png │ │ ├── lz_musiclist_close.imageset │ │ │ ├── Contents.json │ │ │ ├── lz_musiclist_close@2x.png │ │ │ └── lz_musiclist_close@3x.png │ │ ├── lz_musiclist_empty.imageset │ │ │ ├── Contents.json │ │ │ ├── lz_musiclist_empty@2x.png │ │ │ └── lz_musiclist_empty@3x.png │ │ ├── lz_musiclist_nextimage.imageset │ │ │ ├── Contents.json │ │ │ ├── lz_musiclist_nextimage@2x.png │ │ │ └── lz_musiclist_nextimage@3x.png │ │ ├── lz_musiclist_select.imageset │ │ │ ├── Contents.json │ │ │ ├── lz_musiclist_select@2x.png │ │ │ └── lz_musiclist_select@3x.png │ │ ├── lz_musiclist_track.imageset │ │ │ ├── Contents.json │ │ │ ├── lz_musiclist_track@2x.png │ │ │ └── lz_musiclist_track@3x.png │ │ └── lz_selectvideo_add.imageset │ │ │ ├── Contents.json │ │ │ ├── lz_selectvideo_add@2x.png │ │ │ └── lz_selectvideo_add@3x.png │ └── VideoEdit │ │ ├── Contents.json │ │ ├── lz_videoedit_backwards.imageset │ │ ├── Contents.json │ │ ├── lz_videoedit_backwards@2x.png │ │ └── lz_videoedit_backwards@3x.png │ │ ├── lz_videoedit_copy.imageset │ │ ├── Contents.json │ │ ├── lz_videoedit_copy@2x.png │ │ └── lz_videoedit_copy@3x.png │ │ ├── lz_videoedit_delete.imageset │ │ ├── Contents.json │ │ ├── lz_videoedit_delete@2x.png │ │ └── lz_videoedit_delete@3x.png │ │ ├── lz_videoedit_dragimage.imageset │ │ ├── Contents.json │ │ ├── lz_videoedit_dragimage@2x.png │ │ └── lz_videoedit_dragimage@3x.png │ │ ├── lz_videoedit_slider.imageset │ │ ├── Contents.json │ │ ├── lz_videoedit_slider@2x.png │ │ └── lz_videoedit_slider@3x.png │ │ ├── lz_videoedit_voice_off.imageset │ │ ├── Contents.json │ │ ├── lz_videoedit_voice_off@2x.png │ │ └── lz_videoedit_voice_off@3x.png │ │ └── lz_videoedit_voice_on.imageset │ │ ├── Contents.json │ │ ├── lz_videoedit_voice_on@2x.png │ │ └── lz_videoedit_voice_on@3x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Localizable.strings ├── Category │ ├── SCRecordSessionSegment+LZAdd.h │ └── SCRecordSessionSegment+LZAdd.m ├── Info.plist ├── Lib │ ├── FDFullscreenPopGesture │ │ ├── UINavigationController+FDFullscreenPopGesture.h │ │ └── UINavigationController+FDFullscreenPopGesture.m │ ├── LewReorderableLayout │ │ ├── LewReorderableLayout.h │ │ └── LewReorderableLayout.m │ ├── Masonry │ │ ├── LICENSE │ │ ├── Masonry │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASCompositeConstraint.m │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraint.m │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASConstraintMaker.m │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASLayoutConstraint.m │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewAttribute.m │ │ │ ├── MASViewConstraint.h │ │ │ ├── MASViewConstraint.m │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASAdditions.m │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ │ ├── View+MASAdditions.h │ │ │ ├── View+MASAdditions.m │ │ │ ├── View+MASShorthandAdditions.h │ │ │ ├── ViewController+MASAdditions.h │ │ │ └── ViewController+MASAdditions.m │ │ └── README.md │ ├── SAVideoRangeSlider │ │ ├── LZImageView.h │ │ ├── LZImageView.m │ │ ├── SAVideoRangeSlider.h │ │ └── SAVideoRangeSlider.m │ ├── SCRecordSessionManager │ │ ├── SCRecordSessionManager.h │ │ └── SCRecordSessionManager.m │ ├── SCRecorder │ │ ├── LICENSE │ │ ├── Library │ │ │ └── Sources │ │ │ │ ├── Configuration(配置) │ │ │ │ ├── SCAudioConfiguration.h │ │ │ │ ├── SCAudioConfiguration.m │ │ │ │ ├── SCMediaTypeConfiguration.h │ │ │ │ ├── SCMediaTypeConfiguration.m │ │ │ │ ├── SCPhotoConfiguration.h │ │ │ │ ├── SCPhotoConfiguration.m │ │ │ │ ├── SCVideoConfiguration.h │ │ │ │ └── SCVideoConfiguration.m │ │ │ │ ├── FilterDisplayers(过滤显示) │ │ │ │ ├── SCContext.h │ │ │ │ ├── SCContext.m │ │ │ │ ├── SCFilterImageView.h │ │ │ │ ├── SCFilterImageView.m │ │ │ │ ├── SCImageView.h │ │ │ │ ├── SCImageView.m │ │ │ │ ├── SCSwipeableFilterView.h │ │ │ │ └── SCSwipeableFilterView.m │ │ │ │ ├── Filters(过滤器) │ │ │ │ ├── SCFilter+UIImage.h │ │ │ │ ├── SCFilter+UIImage.m │ │ │ │ ├── SCFilter+VideoComposition.h │ │ │ │ ├── SCFilter+VideoComposition.m │ │ │ │ ├── SCFilter.h │ │ │ │ ├── SCFilter.m │ │ │ │ ├── SCFilterAnimation.h │ │ │ │ └── SCFilterAnimation.m │ │ │ │ ├── Players │ │ │ │ ├── SCPlayer.h │ │ │ │ ├── SCPlayer.m │ │ │ │ ├── SCVideoPlayerView.h │ │ │ │ └── SCVideoPlayerView.m │ │ │ │ ├── Recorder(录像机) │ │ │ │ ├── SCRecordSession.h │ │ │ │ ├── SCRecordSession.m │ │ │ │ ├── SCRecordSessionSegment.h │ │ │ │ ├── SCRecordSessionSegment.m │ │ │ │ ├── SCRecordSession_Internal.h │ │ │ │ ├── SCRecorder.h │ │ │ │ ├── SCRecorder.m │ │ │ │ └── SCRecorderDelegate.h │ │ │ │ ├── SCRecorderHeader.h │ │ │ │ ├── Tools │ │ │ │ ├── NSURL+SCSaveToCameraRoll.h │ │ │ │ ├── NSURL+SCSaveToCameraRoll.m │ │ │ │ ├── SCAssetExportSession.h │ │ │ │ ├── SCAssetExportSession.m │ │ │ │ ├── SCAudioTools.h │ │ │ │ ├── SCAudioTools.m │ │ │ │ ├── SCIOPixelBuffers.h │ │ │ │ ├── SCIOPixelBuffers.m │ │ │ │ ├── SCProcessingQueue.h │ │ │ │ ├── SCProcessingQueue.m │ │ │ │ ├── SCRecorderTools.h │ │ │ │ ├── SCRecorderTools.m │ │ │ │ ├── SCSampleBufferHolder.h │ │ │ │ ├── SCSampleBufferHolder.m │ │ │ │ ├── SCSaveToCameraRollOperation.h │ │ │ │ ├── SCSaveToCameraRollOperation.m │ │ │ │ ├── SCWeakSelectorTarget.h │ │ │ │ ├── SCWeakSelectorTarget.m │ │ │ │ ├── UIImage+SCSaveToCameraRoll.h │ │ │ │ └── UIImage+SCSaveToCameraRoll.m │ │ │ │ └── ToolsView │ │ │ │ ├── SCRecorderFocusTargetView.h │ │ │ │ ├── SCRecorderFocusTargetView.m │ │ │ │ ├── SCRecorderToolsView.h │ │ │ │ └── SCRecorderToolsView.m │ │ ├── README.md │ │ └── a_filter.cisf │ └── XBNSensorManager │ │ ├── XBNSensorManager.h │ │ └── XBNSensorManager.m ├── PrefixHeader.pch ├── Tools │ ├── ClearCacheTool.h │ ├── ClearCacheTool.m │ ├── LZVideoTools.h │ └── LZVideoTools.m ├── ViewController.h ├── ViewController.m ├── ViewController.xib ├── ViewController │ ├── LZNewPromotionVC.h │ ├── LZNewPromotionVC.m │ ├── LZNewPromotionVC.xib │ ├── SelectVideo(选择视频) │ │ ├── LZSelectVideoCollectionViewCell.h │ │ ├── LZSelectVideoCollectionViewCell.m │ │ ├── LZSelectVideoViewController.h │ │ └── LZSelectVideoViewController.m │ ├── TrimCrop(本地视频剪裁) │ │ ├── LZTrimCropViewController.h │ │ └── LZTrimCropViewController.m │ ├── VideoDetail(视频详情) │ │ ├── LZVideoDetailsVC.h │ │ ├── LZVideoDetailsVC.m │ │ ├── LZVideoDetailsVC.xib │ │ ├── SCWatermarkOverlayView.h │ │ └── SCWatermarkOverlayView.m │ ├── VideoEdit(视频编辑) │ │ ├── LZVideoEditAuxiliary.h │ │ ├── LZVideoEditAuxiliary.m │ │ ├── LZVideoEditClipVC.h │ │ ├── LZVideoEditClipVC.m │ │ ├── LZVideoEditClipVC.xib │ │ ├── LZVideoEditCollectionViewCell.h │ │ └── LZVideoEditCollectionViewCell.m │ ├── View │ │ ├── LZButton.h │ │ ├── LZButton.m │ │ ├── LZGridView.h │ │ ├── LZGridView.m │ │ ├── LZLevelView.h │ │ ├── LZLevelView.m │ │ └── ProgressBar │ │ │ ├── ProgressBar.h │ │ │ ├── ProgressBar.m │ │ │ ├── SBCaptureToolKit.h │ │ │ └── SBCaptureToolKit.m │ └── 暂不用 │ │ ├── LZCreatePromotionViewController.h │ │ ├── LZCreatePromotionViewController.m │ │ ├── LZGroupOrderObjectViewController.h │ │ ├── LZGroupOrderObjectViewController.m │ │ ├── LZMusicEditClipViewController.h │ │ └── LZMusicEditClipViewController.m ├── en.lproj │ └── Localizable.strings └── main.m ├── VideoDemoTests ├── Info.plist └── VideoDemoTests.m └── VideoDemoUITests ├── Info.plist └── VideoDemoUITests.m /VideoDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VideoDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /VideoDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /VideoDemo.xcodeproj/project.xcworkspace/xcuserdata/biyuhuaping.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo.xcodeproj/project.xcworkspace/xcuserdata/biyuhuaping.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /VideoDemo.xcodeproj/xcuserdata/biyuhuaping.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo.xcodeproj/xcuserdata/biyuhuaping.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /VideoDemo.xcodeproj/xcuserdata/biyuhuaping.xcuserdatad/xcschemes/VideoDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo.xcodeproj/xcuserdata/biyuhuaping.xcuserdatad/xcschemes/VideoDemo.xcscheme -------------------------------------------------------------------------------- /VideoDemo.xcodeproj/xcuserdata/biyuhuaping.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo.xcodeproj/xcuserdata/biyuhuaping.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /VideoDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/AppDelegate.h -------------------------------------------------------------------------------- /VideoDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/AppDelegate.m -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_new_rightbutton.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_new_rightbutton.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_new_rightbutton.imageset/lz_new_rightbutton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_new_rightbutton.imageset/lz_new_rightbutton@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_new_rightbutton.imageset/lz_new_rightbutton@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_new_rightbutton.imageset/lz_new_rightbutton@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_change.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_change.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_change.imageset/lz_recorder_change@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_change.imageset/lz_recorder_change@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_change.imageset/lz_recorder_change@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_change.imageset/lz_recorder_change@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_change_hd.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_change_hd.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_change_hd.imageset/lz_recorder_change_hd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_change_hd.imageset/lz_recorder_change_hd@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_change_hd.imageset/lz_recorder_change_hd@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_change_hd.imageset/lz_recorder_change_hd@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_confirm.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_confirm.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_confirm.imageset/lz_recorder_confirm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_confirm.imageset/lz_recorder_confirm@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_confirm.imageset/lz_recorder_confirm@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_confirm.imageset/lz_recorder_confirm@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_confirm_hd.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_confirm_hd.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_confirm_hd.imageset/lz_recorder_confirm_hd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_confirm_hd.imageset/lz_recorder_confirm_hd@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_confirm_hd.imageset/lz_recorder_confirm_hd@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_confirm_hd.imageset/lz_recorder_confirm_hd@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_delete.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_delete.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_delete.imageset/lz_recorder_delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_delete.imageset/lz_recorder_delete@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_delete.imageset/lz_recorder_delete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_delete.imageset/lz_recorder_delete@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_delete_hd.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_delete_hd.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_delete_hd.imageset/lz_recorder_delete_hd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_delete_hd.imageset/lz_recorder_delete_hd@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_delete_hd.imageset/lz_recorder_delete_hd@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_delete_hd.imageset/lz_recorder_delete_hd@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_flash.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_flash.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_flash.imageset/lz_recorder_flash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_flash.imageset/lz_recorder_flash@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_flash.imageset/lz_recorder_flash@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_flash.imageset/lz_recorder_flash@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_flash_hd.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_flash_hd.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_flash_hd.imageset/lz_recorder_flash_hd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_flash_hd.imageset/lz_recorder_flash_hd@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_flash_hd.imageset/lz_recorder_flash_hd@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_flash_hd.imageset/lz_recorder_flash_hd@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_grid.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_grid.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_grid.imageset/lz_recorder_grid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_grid.imageset/lz_recorder_grid@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_grid.imageset/lz_recorder_grid@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_grid.imageset/lz_recorder_grid@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_grid_hd.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_grid_hd.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_grid_hd.imageset/lz_recorder_grid_hd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_grid_hd.imageset/lz_recorder_grid_hd@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_grid_hd.imageset/lz_recorder_grid_hd@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_grid_hd.imageset/lz_recorder_grid_hd@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_line_hd.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_line_hd.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_line_hd.imageset/lz_recorder_line_hd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_line_hd.imageset/lz_recorder_line_hd@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_line_hd.imageset/lz_recorder_line_hd@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_line_hd.imageset/lz_recorder_line_hd@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_recorder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_recorder.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_recorder.imageset/lz_recorder_recorder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_recorder.imageset/lz_recorder_recorder@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_recorder.imageset/lz_recorder_recorder@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_recorder.imageset/lz_recorder_recorder@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_snapshot.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_snapshot.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_snapshot.imageset/lz_recorder_snapshot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_snapshot.imageset/lz_recorder_snapshot@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_snapshot.imageset/lz_recorder_snapshot@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_snapshot.imageset/lz_recorder_snapshot@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_snapshot_hd.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_snapshot_hd.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_snapshot_hd.imageset/lz_recorder_snapshot_hd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_snapshot_hd.imageset/lz_recorder_snapshot_hd@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_snapshot_hd.imageset/lz_recorder_snapshot_hd@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/RecorderVideo/lz_recorder_snapshot_hd.imageset/lz_recorder_snapshot_hd@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/lz_addmusic_buttonimage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/lz_addmusic_buttonimage.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/lz_addmusic_buttonimage.imageset/lz_addmusic_buttonimage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/lz_addmusic_buttonimage.imageset/lz_addmusic_buttonimage@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/lz_addmusic_buttonimage.imageset/lz_addmusic_buttonimage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/lz_addmusic_buttonimage.imageset/lz_addmusic_buttonimage@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/lz_cutvideo_buttonimage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/lz_cutvideo_buttonimage.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/lz_cutvideo_buttonimage.imageset/lz_cutvideo_buttonimage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/lz_cutvideo_buttonimage.imageset/lz_cutvideo_buttonimage@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/lz_cutvideo_buttonimage.imageset/lz_cutvideo_buttonimage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/lz_cutvideo_buttonimage.imageset/lz_cutvideo_buttonimage@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/lz_musicempty_close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/lz_musicempty_close.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/lz_musicempty_close.imageset/lz_musicempty_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/lz_musicempty_close.imageset/lz_musicempty_close@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/lz_musicempty_close.imageset/lz_musicempty_close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/lz_musicempty_close.imageset/lz_musicempty_close@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_close.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_close.imageset/lz_musiclist_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_close.imageset/lz_musiclist_close@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_close.imageset/lz_musiclist_close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_close.imageset/lz_musiclist_close@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_empty.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_empty.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_empty.imageset/lz_musiclist_empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_empty.imageset/lz_musiclist_empty@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_empty.imageset/lz_musiclist_empty@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_empty.imageset/lz_musiclist_empty@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_nextimage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_nextimage.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_nextimage.imageset/lz_musiclist_nextimage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_nextimage.imageset/lz_musiclist_nextimage@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_nextimage.imageset/lz_musiclist_nextimage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_nextimage.imageset/lz_musiclist_nextimage@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_select.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_select.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_select.imageset/lz_musiclist_select@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_select.imageset/lz_musiclist_select@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_select.imageset/lz_musiclist_select@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_select.imageset/lz_musiclist_select@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_track.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_track.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_track.imageset/lz_musiclist_track@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_track.imageset/lz_musiclist_track@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_track.imageset/lz_musiclist_track@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/lz_musiclist_track.imageset/lz_musiclist_track@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/lz_selectvideo_add.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/lz_selectvideo_add.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/lz_selectvideo_add.imageset/lz_selectvideo_add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/lz_selectvideo_add.imageset/lz_selectvideo_add@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoDetails/lz_selectvideo_add.imageset/lz_selectvideo_add@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoDetails/lz_selectvideo_add.imageset/lz_selectvideo_add@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoEdit/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoEdit/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_backwards.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_backwards.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_backwards.imageset/lz_videoedit_backwards@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_backwards.imageset/lz_videoedit_backwards@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_backwards.imageset/lz_videoedit_backwards@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_backwards.imageset/lz_videoedit_backwards@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_copy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_copy.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_copy.imageset/lz_videoedit_copy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_copy.imageset/lz_videoedit_copy@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_copy.imageset/lz_videoedit_copy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_copy.imageset/lz_videoedit_copy@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_delete.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_delete.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_delete.imageset/lz_videoedit_delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_delete.imageset/lz_videoedit_delete@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_delete.imageset/lz_videoedit_delete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_delete.imageset/lz_videoedit_delete@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_dragimage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_dragimage.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_dragimage.imageset/lz_videoedit_dragimage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_dragimage.imageset/lz_videoedit_dragimage@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_dragimage.imageset/lz_videoedit_dragimage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_dragimage.imageset/lz_videoedit_dragimage@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_slider.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_slider.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_slider.imageset/lz_videoedit_slider@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_slider.imageset/lz_videoedit_slider@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_slider.imageset/lz_videoedit_slider@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_slider.imageset/lz_videoedit_slider@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_voice_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_voice_off.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_voice_off.imageset/lz_videoedit_voice_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_voice_off.imageset/lz_videoedit_voice_off@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_voice_off.imageset/lz_videoedit_voice_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_voice_off.imageset/lz_videoedit_voice_off@3x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_voice_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_voice_on.imageset/Contents.json -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_voice_on.imageset/lz_videoedit_voice_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_voice_on.imageset/lz_videoedit_voice_on@2x.png -------------------------------------------------------------------------------- /VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_voice_on.imageset/lz_videoedit_voice_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Assets.xcassets/VideoEdit/lz_videoedit_voice_on.imageset/lz_videoedit_voice_on@3x.png -------------------------------------------------------------------------------- /VideoDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /VideoDemo/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Base.lproj/Localizable.strings -------------------------------------------------------------------------------- /VideoDemo/Category/SCRecordSessionSegment+LZAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Category/SCRecordSessionSegment+LZAdd.h -------------------------------------------------------------------------------- /VideoDemo/Category/SCRecordSessionSegment+LZAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Category/SCRecordSessionSegment+LZAdd.m -------------------------------------------------------------------------------- /VideoDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Info.plist -------------------------------------------------------------------------------- /VideoDemo/Lib/FDFullscreenPopGesture/UINavigationController+FDFullscreenPopGesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/FDFullscreenPopGesture/UINavigationController+FDFullscreenPopGesture.h -------------------------------------------------------------------------------- /VideoDemo/Lib/FDFullscreenPopGesture/UINavigationController+FDFullscreenPopGesture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/FDFullscreenPopGesture/UINavigationController+FDFullscreenPopGesture.m -------------------------------------------------------------------------------- /VideoDemo/Lib/LewReorderableLayout/LewReorderableLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/LewReorderableLayout/LewReorderableLayout.h -------------------------------------------------------------------------------- /VideoDemo/Lib/LewReorderableLayout/LewReorderableLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/LewReorderableLayout/LewReorderableLayout.m -------------------------------------------------------------------------------- /VideoDemo/Lib/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/Masonry/LICENSE -------------------------------------------------------------------------------- /VideoDemo/Lib/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /VideoDemo/Lib/Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /VideoDemo/Lib/Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /VideoDemo/Lib/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /VideoDemo/Lib/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /VideoDemo/Lib/Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /VideoDemo/Lib/Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /VideoDemo/Lib/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /VideoDemo/Lib/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /VideoDemo/Lib/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /VideoDemo/Lib/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /VideoDemo/Lib/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /VideoDemo/Lib/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /VideoDemo/Lib/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /VideoDemo/Lib/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /VideoDemo/Lib/Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /VideoDemo/Lib/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /VideoDemo/Lib/Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /VideoDemo/Lib/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /VideoDemo/Lib/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /VideoDemo/Lib/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /VideoDemo/Lib/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /VideoDemo/Lib/Masonry/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /VideoDemo/Lib/Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /VideoDemo/Lib/Masonry/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/Masonry/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /VideoDemo/Lib/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/Masonry/README.md -------------------------------------------------------------------------------- /VideoDemo/Lib/SAVideoRangeSlider/LZImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SAVideoRangeSlider/LZImageView.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SAVideoRangeSlider/LZImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SAVideoRangeSlider/LZImageView.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SAVideoRangeSlider/SAVideoRangeSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SAVideoRangeSlider/SAVideoRangeSlider.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SAVideoRangeSlider/SAVideoRangeSlider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SAVideoRangeSlider/SAVideoRangeSlider.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecordSessionManager/SCRecordSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecordSessionManager/SCRecordSessionManager.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecordSessionManager/SCRecordSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecordSessionManager/SCRecordSessionManager.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/LICENSE -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Configuration(配置)/SCAudioConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Configuration(配置)/SCAudioConfiguration.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Configuration(配置)/SCAudioConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Configuration(配置)/SCAudioConfiguration.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Configuration(配置)/SCMediaTypeConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Configuration(配置)/SCMediaTypeConfiguration.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Configuration(配置)/SCMediaTypeConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Configuration(配置)/SCMediaTypeConfiguration.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Configuration(配置)/SCPhotoConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Configuration(配置)/SCPhotoConfiguration.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Configuration(配置)/SCPhotoConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Configuration(配置)/SCPhotoConfiguration.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Configuration(配置)/SCVideoConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Configuration(配置)/SCVideoConfiguration.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Configuration(配置)/SCVideoConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Configuration(配置)/SCVideoConfiguration.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/FilterDisplayers(过滤显示)/SCContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/FilterDisplayers(过滤显示)/SCContext.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/FilterDisplayers(过滤显示)/SCContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/FilterDisplayers(过滤显示)/SCContext.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/FilterDisplayers(过滤显示)/SCFilterImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/FilterDisplayers(过滤显示)/SCFilterImageView.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/FilterDisplayers(过滤显示)/SCFilterImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/FilterDisplayers(过滤显示)/SCFilterImageView.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/FilterDisplayers(过滤显示)/SCImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/FilterDisplayers(过滤显示)/SCImageView.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/FilterDisplayers(过滤显示)/SCImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/FilterDisplayers(过滤显示)/SCImageView.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/FilterDisplayers(过滤显示)/SCSwipeableFilterView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/FilterDisplayers(过滤显示)/SCSwipeableFilterView.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/FilterDisplayers(过滤显示)/SCSwipeableFilterView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/FilterDisplayers(过滤显示)/SCSwipeableFilterView.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Filters(过滤器)/SCFilter+UIImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Filters(过滤器)/SCFilter+UIImage.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Filters(过滤器)/SCFilter+UIImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Filters(过滤器)/SCFilter+UIImage.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Filters(过滤器)/SCFilter+VideoComposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Filters(过滤器)/SCFilter+VideoComposition.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Filters(过滤器)/SCFilter+VideoComposition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Filters(过滤器)/SCFilter+VideoComposition.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Filters(过滤器)/SCFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Filters(过滤器)/SCFilter.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Filters(过滤器)/SCFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Filters(过滤器)/SCFilter.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Filters(过滤器)/SCFilterAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Filters(过滤器)/SCFilterAnimation.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Filters(过滤器)/SCFilterAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Filters(过滤器)/SCFilterAnimation.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Players/SCPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Players/SCPlayer.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Players/SCPlayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Players/SCPlayer.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Players/SCVideoPlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Players/SCVideoPlayerView.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Players/SCVideoPlayerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Players/SCVideoPlayerView.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Recorder(录像机)/SCRecordSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Recorder(录像机)/SCRecordSession.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Recorder(录像机)/SCRecordSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Recorder(录像机)/SCRecordSession.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Recorder(录像机)/SCRecordSessionSegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Recorder(录像机)/SCRecordSessionSegment.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Recorder(录像机)/SCRecordSessionSegment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Recorder(录像机)/SCRecordSessionSegment.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Recorder(录像机)/SCRecordSession_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Recorder(录像机)/SCRecordSession_Internal.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Recorder(录像机)/SCRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Recorder(录像机)/SCRecorder.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Recorder(录像机)/SCRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Recorder(录像机)/SCRecorder.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Recorder(录像机)/SCRecorderDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Recorder(录像机)/SCRecorderDelegate.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/SCRecorderHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/SCRecorderHeader.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Tools/NSURL+SCSaveToCameraRoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Tools/NSURL+SCSaveToCameraRoll.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Tools/NSURL+SCSaveToCameraRoll.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Tools/NSURL+SCSaveToCameraRoll.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCAssetExportSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCAssetExportSession.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCAssetExportSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCAssetExportSession.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCAudioTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCAudioTools.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCAudioTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCAudioTools.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCIOPixelBuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCIOPixelBuffers.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCIOPixelBuffers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCIOPixelBuffers.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCProcessingQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCProcessingQueue.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCProcessingQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCProcessingQueue.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCRecorderTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCRecorderTools.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCRecorderTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCRecorderTools.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCSampleBufferHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCSampleBufferHolder.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCSampleBufferHolder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCSampleBufferHolder.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCSaveToCameraRollOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCSaveToCameraRollOperation.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCSaveToCameraRollOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCSaveToCameraRollOperation.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCWeakSelectorTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCWeakSelectorTarget.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCWeakSelectorTarget.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Tools/SCWeakSelectorTarget.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Tools/UIImage+SCSaveToCameraRoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Tools/UIImage+SCSaveToCameraRoll.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/Tools/UIImage+SCSaveToCameraRoll.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/Tools/UIImage+SCSaveToCameraRoll.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/ToolsView/SCRecorderFocusTargetView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/ToolsView/SCRecorderFocusTargetView.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/ToolsView/SCRecorderFocusTargetView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/ToolsView/SCRecorderFocusTargetView.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/ToolsView/SCRecorderToolsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/ToolsView/SCRecorderToolsView.h -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/Library/Sources/ToolsView/SCRecorderToolsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/Library/Sources/ToolsView/SCRecorderToolsView.m -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/README.md -------------------------------------------------------------------------------- /VideoDemo/Lib/SCRecorder/a_filter.cisf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/SCRecorder/a_filter.cisf -------------------------------------------------------------------------------- /VideoDemo/Lib/XBNSensorManager/XBNSensorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/XBNSensorManager/XBNSensorManager.h -------------------------------------------------------------------------------- /VideoDemo/Lib/XBNSensorManager/XBNSensorManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Lib/XBNSensorManager/XBNSensorManager.m -------------------------------------------------------------------------------- /VideoDemo/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/PrefixHeader.pch -------------------------------------------------------------------------------- /VideoDemo/Tools/ClearCacheTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Tools/ClearCacheTool.h -------------------------------------------------------------------------------- /VideoDemo/Tools/ClearCacheTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Tools/ClearCacheTool.m -------------------------------------------------------------------------------- /VideoDemo/Tools/LZVideoTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Tools/LZVideoTools.h -------------------------------------------------------------------------------- /VideoDemo/Tools/LZVideoTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/Tools/LZVideoTools.m -------------------------------------------------------------------------------- /VideoDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController.h -------------------------------------------------------------------------------- /VideoDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController.m -------------------------------------------------------------------------------- /VideoDemo/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController.xib -------------------------------------------------------------------------------- /VideoDemo/ViewController/LZNewPromotionVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/LZNewPromotionVC.h -------------------------------------------------------------------------------- /VideoDemo/ViewController/LZNewPromotionVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/LZNewPromotionVC.m -------------------------------------------------------------------------------- /VideoDemo/ViewController/LZNewPromotionVC.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/LZNewPromotionVC.xib -------------------------------------------------------------------------------- /VideoDemo/ViewController/SelectVideo(选择视频)/LZSelectVideoCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/SelectVideo(选择视频)/LZSelectVideoCollectionViewCell.h -------------------------------------------------------------------------------- /VideoDemo/ViewController/SelectVideo(选择视频)/LZSelectVideoCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/SelectVideo(选择视频)/LZSelectVideoCollectionViewCell.m -------------------------------------------------------------------------------- /VideoDemo/ViewController/SelectVideo(选择视频)/LZSelectVideoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/SelectVideo(选择视频)/LZSelectVideoViewController.h -------------------------------------------------------------------------------- /VideoDemo/ViewController/SelectVideo(选择视频)/LZSelectVideoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/SelectVideo(选择视频)/LZSelectVideoViewController.m -------------------------------------------------------------------------------- /VideoDemo/ViewController/TrimCrop(本地视频剪裁)/LZTrimCropViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/TrimCrop(本地视频剪裁)/LZTrimCropViewController.h -------------------------------------------------------------------------------- /VideoDemo/ViewController/TrimCrop(本地视频剪裁)/LZTrimCropViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/TrimCrop(本地视频剪裁)/LZTrimCropViewController.m -------------------------------------------------------------------------------- /VideoDemo/ViewController/VideoDetail(视频详情)/LZVideoDetailsVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/VideoDetail(视频详情)/LZVideoDetailsVC.h -------------------------------------------------------------------------------- /VideoDemo/ViewController/VideoDetail(视频详情)/LZVideoDetailsVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/VideoDetail(视频详情)/LZVideoDetailsVC.m -------------------------------------------------------------------------------- /VideoDemo/ViewController/VideoDetail(视频详情)/LZVideoDetailsVC.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/VideoDetail(视频详情)/LZVideoDetailsVC.xib -------------------------------------------------------------------------------- /VideoDemo/ViewController/VideoDetail(视频详情)/SCWatermarkOverlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/VideoDetail(视频详情)/SCWatermarkOverlayView.h -------------------------------------------------------------------------------- /VideoDemo/ViewController/VideoDetail(视频详情)/SCWatermarkOverlayView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/VideoDetail(视频详情)/SCWatermarkOverlayView.m -------------------------------------------------------------------------------- /VideoDemo/ViewController/VideoEdit(视频编辑)/LZVideoEditAuxiliary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/VideoEdit(视频编辑)/LZVideoEditAuxiliary.h -------------------------------------------------------------------------------- /VideoDemo/ViewController/VideoEdit(视频编辑)/LZVideoEditAuxiliary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/VideoEdit(视频编辑)/LZVideoEditAuxiliary.m -------------------------------------------------------------------------------- /VideoDemo/ViewController/VideoEdit(视频编辑)/LZVideoEditClipVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/VideoEdit(视频编辑)/LZVideoEditClipVC.h -------------------------------------------------------------------------------- /VideoDemo/ViewController/VideoEdit(视频编辑)/LZVideoEditClipVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/VideoEdit(视频编辑)/LZVideoEditClipVC.m -------------------------------------------------------------------------------- /VideoDemo/ViewController/VideoEdit(视频编辑)/LZVideoEditClipVC.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/VideoEdit(视频编辑)/LZVideoEditClipVC.xib -------------------------------------------------------------------------------- /VideoDemo/ViewController/VideoEdit(视频编辑)/LZVideoEditCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/VideoEdit(视频编辑)/LZVideoEditCollectionViewCell.h -------------------------------------------------------------------------------- /VideoDemo/ViewController/VideoEdit(视频编辑)/LZVideoEditCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/VideoEdit(视频编辑)/LZVideoEditCollectionViewCell.m -------------------------------------------------------------------------------- /VideoDemo/ViewController/View/LZButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/View/LZButton.h -------------------------------------------------------------------------------- /VideoDemo/ViewController/View/LZButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/View/LZButton.m -------------------------------------------------------------------------------- /VideoDemo/ViewController/View/LZGridView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/View/LZGridView.h -------------------------------------------------------------------------------- /VideoDemo/ViewController/View/LZGridView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/View/LZGridView.m -------------------------------------------------------------------------------- /VideoDemo/ViewController/View/LZLevelView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/View/LZLevelView.h -------------------------------------------------------------------------------- /VideoDemo/ViewController/View/LZLevelView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/View/LZLevelView.m -------------------------------------------------------------------------------- /VideoDemo/ViewController/View/ProgressBar/ProgressBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/View/ProgressBar/ProgressBar.h -------------------------------------------------------------------------------- /VideoDemo/ViewController/View/ProgressBar/ProgressBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/View/ProgressBar/ProgressBar.m -------------------------------------------------------------------------------- /VideoDemo/ViewController/View/ProgressBar/SBCaptureToolKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/View/ProgressBar/SBCaptureToolKit.h -------------------------------------------------------------------------------- /VideoDemo/ViewController/View/ProgressBar/SBCaptureToolKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/View/ProgressBar/SBCaptureToolKit.m -------------------------------------------------------------------------------- /VideoDemo/ViewController/暂不用/LZCreatePromotionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/暂不用/LZCreatePromotionViewController.h -------------------------------------------------------------------------------- /VideoDemo/ViewController/暂不用/LZCreatePromotionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/暂不用/LZCreatePromotionViewController.m -------------------------------------------------------------------------------- /VideoDemo/ViewController/暂不用/LZGroupOrderObjectViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/暂不用/LZGroupOrderObjectViewController.h -------------------------------------------------------------------------------- /VideoDemo/ViewController/暂不用/LZGroupOrderObjectViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/暂不用/LZGroupOrderObjectViewController.m -------------------------------------------------------------------------------- /VideoDemo/ViewController/暂不用/LZMusicEditClipViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/暂不用/LZMusicEditClipViewController.h -------------------------------------------------------------------------------- /VideoDemo/ViewController/暂不用/LZMusicEditClipViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/ViewController/暂不用/LZMusicEditClipViewController.m -------------------------------------------------------------------------------- /VideoDemo/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /VideoDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemo/main.m -------------------------------------------------------------------------------- /VideoDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemoTests/Info.plist -------------------------------------------------------------------------------- /VideoDemoTests/VideoDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemoTests/VideoDemoTests.m -------------------------------------------------------------------------------- /VideoDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemoUITests/Info.plist -------------------------------------------------------------------------------- /VideoDemoUITests/VideoDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/VideoDemo/HEAD/VideoDemoUITests/VideoDemoUITests.m --------------------------------------------------------------------------------