├── .gitignore ├── LICENSE ├── Light & Shallow ├── Light & Shallow.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── Light & Shallow │ ├── AVSession │ │ ├── LSAVConfiguration.h │ │ ├── LSAVConfiguration.m │ │ ├── LSAssetManager.h │ │ ├── LSAssetManager.m │ │ ├── LSCaptureSessionManager.h │ │ ├── LSCaptureSessionManager.m │ │ ├── LSMediaInfo.h │ │ ├── LSMediaInfo.m │ │ ├── LSVideoEditor.h │ │ └── LSVideoEditor.m │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-1024.png │ │ │ ├── icon-20-ipad.png │ │ │ ├── icon-20@2x-ipad.png │ │ │ ├── icon-20@2x.png │ │ │ ├── icon-20@3x.png │ │ │ ├── icon-29-ipad.png │ │ │ ├── icon-29.png │ │ │ ├── icon-29@2x-ipad.png │ │ │ ├── icon-29@2x.png │ │ │ ├── icon-29@3x.png │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-50.png │ │ │ ├── icon-50@2x.png │ │ │ ├── icon-57.png │ │ │ ├── icon-57@2x.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-72.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ └── icon-83.5@2x.png │ │ ├── Contents.json │ │ ├── pic_no_live.imageset │ │ │ ├── Contents.json │ │ │ └── pic_no_live@3x.png │ │ ├── waterMark.imageset │ │ │ ├── Contents.json │ │ │ └── waterMark.png │ │ └── 球.imageset │ │ │ ├── Contents.json │ │ │ ├── 球@2x.png │ │ │ └── 球@3x.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Config │ │ ├── LSConstants.h │ │ ├── LSTypedef.h │ │ └── PrefixHeader.pch │ ├── Info.plist │ ├── LSCompositionViewController.h │ ├── LSCompositionViewController.m │ ├── LSImageProcessViewController.h │ ├── LSImageProcessViewController.m │ ├── OperationCommand │ │ ├── LSAVAddMusicCommand.h │ │ ├── LSAVAddMusicCommand.m │ │ ├── LSAVAddWatermarkCommand.h │ │ ├── LSAVAddWatermarkCommand.m │ │ ├── LSAVCommand.h │ │ ├── LSAVCommand.m │ │ ├── LSAVCompositionCommand.h │ │ ├── LSAVCompositionCommand.m │ │ ├── LSAVExportCommand.h │ │ ├── LSAVExportCommand.m │ │ ├── LSAVExtractAudioCommand.h │ │ └── LSAVExtractAudioCommand.m │ ├── Resource │ │ ├── Music.m4a │ │ ├── captureMusic.m4a │ │ ├── cover.jpg │ │ ├── dance.mp4 │ │ ├── nnn.mp4 │ │ ├── sample_clip2.mov │ │ ├── video.mp4 │ │ └── wantMusic.m4a │ ├── SampleCode │ │ ├── LSMainViewController.h │ │ ├── LSMainViewController.m │ │ ├── LSRecordOperationView.h │ │ ├── LSRecordOperationView.m │ │ ├── LSRecordOperationView.xib │ │ ├── RealtimeFilterViewController.h │ │ ├── RealtimeFilterViewController.m │ │ └── 视频编辑页面 │ │ │ ├── LSDisplayCell.h │ │ │ ├── LSDisplayCell.m │ │ │ ├── LSVideoEditorViewController.h │ │ │ └── LSVideoEditorViewController.m │ ├── VideoView │ │ ├── LSSliderView.h │ │ ├── LSSliderView.m │ │ ├── LSVideoPlayerView.h │ │ ├── LSVideoPlayerView.m │ │ ├── LSVideoPreview.h │ │ └── LSVideoPreview.m │ └── main.m ├── Light & ShallowTests │ ├── Info.plist │ └── Light___ShallowTests.m └── Light & ShallowUITests │ ├── Info.plist │ └── Light___ShallowUITests.m └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/LICENSE -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/AVSession/LSAVConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/AVSession/LSAVConfiguration.h -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/AVSession/LSAVConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/AVSession/LSAVConfiguration.m -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/AVSession/LSAssetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/AVSession/LSAssetManager.h -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/AVSession/LSAssetManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/AVSession/LSAssetManager.m -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/AVSession/LSCaptureSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/AVSession/LSCaptureSessionManager.h -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/AVSession/LSCaptureSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/AVSession/LSCaptureSessionManager.m -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/AVSession/LSMediaInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/AVSession/LSMediaInfo.h -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/AVSession/LSMediaInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/AVSession/LSMediaInfo.m -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/AVSession/LSVideoEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/AVSession/LSVideoEditor.h -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/AVSession/LSVideoEditor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/AVSession/LSVideoEditor.m -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/AppDelegate.h -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/AppDelegate.m -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-20-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-20-ipad.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-20@2x-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-20@2x-ipad.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-29-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-29-ipad.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-29@2x-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-29@2x-ipad.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-50.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-57.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-72.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/pic_no_live.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/pic_no_live.imageset/Contents.json -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/pic_no_live.imageset/pic_no_live@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/pic_no_live.imageset/pic_no_live@3x.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/waterMark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/waterMark.imageset/Contents.json -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/waterMark.imageset/waterMark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/waterMark.imageset/waterMark.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/球.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/球.imageset/Contents.json -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/球.imageset/球@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/球.imageset/球@2x.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Assets.xcassets/球.imageset/球@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Assets.xcassets/球.imageset/球@3x.png -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Config/LSConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Config/LSConstants.h -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Config/LSTypedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Config/LSTypedef.h -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Config/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Config/PrefixHeader.pch -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Info.plist -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/LSCompositionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/LSCompositionViewController.h -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/LSCompositionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/LSCompositionViewController.m -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/LSImageProcessViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/LSImageProcessViewController.h -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/LSImageProcessViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/LSImageProcessViewController.m -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/OperationCommand/LSAVAddMusicCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/OperationCommand/LSAVAddMusicCommand.h -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/OperationCommand/LSAVAddMusicCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/OperationCommand/LSAVAddMusicCommand.m -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/OperationCommand/LSAVAddWatermarkCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/OperationCommand/LSAVAddWatermarkCommand.h -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/OperationCommand/LSAVAddWatermarkCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/OperationCommand/LSAVAddWatermarkCommand.m -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/OperationCommand/LSAVCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/OperationCommand/LSAVCommand.h -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/OperationCommand/LSAVCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/OperationCommand/LSAVCommand.m -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/OperationCommand/LSAVCompositionCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/OperationCommand/LSAVCompositionCommand.h -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/OperationCommand/LSAVCompositionCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/OperationCommand/LSAVCompositionCommand.m -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/OperationCommand/LSAVExportCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/OperationCommand/LSAVExportCommand.h -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/OperationCommand/LSAVExportCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/OperationCommand/LSAVExportCommand.m -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/OperationCommand/LSAVExtractAudioCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/OperationCommand/LSAVExtractAudioCommand.h -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/OperationCommand/LSAVExtractAudioCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/OperationCommand/LSAVExtractAudioCommand.m -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Resource/Music.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Resource/Music.m4a -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Resource/captureMusic.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Resource/captureMusic.m4a -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Resource/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Resource/cover.jpg -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Resource/dance.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Resource/dance.mp4 -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Resource/nnn.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Resource/nnn.mp4 -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Resource/sample_clip2.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Resource/sample_clip2.mov -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Resource/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Resource/video.mp4 -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/Resource/wantMusic.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/Resource/wantMusic.m4a -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/SampleCode/LSMainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/SampleCode/LSMainViewController.h -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/SampleCode/LSMainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/SampleCode/LSMainViewController.m -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/SampleCode/LSRecordOperationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/SampleCode/LSRecordOperationView.h -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/SampleCode/LSRecordOperationView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/SampleCode/LSRecordOperationView.m -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/SampleCode/LSRecordOperationView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/SampleCode/LSRecordOperationView.xib -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/SampleCode/RealtimeFilterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/SampleCode/RealtimeFilterViewController.h -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/SampleCode/RealtimeFilterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/SampleCode/RealtimeFilterViewController.m -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/SampleCode/视频编辑页面/LSDisplayCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/SampleCode/视频编辑页面/LSDisplayCell.h -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/SampleCode/视频编辑页面/LSDisplayCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/SampleCode/视频编辑页面/LSDisplayCell.m -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/SampleCode/视频编辑页面/LSVideoEditorViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/SampleCode/视频编辑页面/LSVideoEditorViewController.h -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/SampleCode/视频编辑页面/LSVideoEditorViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/SampleCode/视频编辑页面/LSVideoEditorViewController.m -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/VideoView/LSSliderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/VideoView/LSSliderView.h -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/VideoView/LSSliderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/VideoView/LSSliderView.m -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/VideoView/LSVideoPlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/VideoView/LSVideoPlayerView.h -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/VideoView/LSVideoPlayerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/VideoView/LSVideoPlayerView.m -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/VideoView/LSVideoPreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/VideoView/LSVideoPreview.h -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/VideoView/LSVideoPreview.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/VideoView/LSVideoPreview.m -------------------------------------------------------------------------------- /Light & Shallow/Light & Shallow/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & Shallow/main.m -------------------------------------------------------------------------------- /Light & Shallow/Light & ShallowTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & ShallowTests/Info.plist -------------------------------------------------------------------------------- /Light & Shallow/Light & ShallowTests/Light___ShallowTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & ShallowTests/Light___ShallowTests.m -------------------------------------------------------------------------------- /Light & Shallow/Light & ShallowUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & ShallowUITests/Info.plist -------------------------------------------------------------------------------- /Light & Shallow/Light & ShallowUITests/Light___ShallowUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/Light & Shallow/Light & ShallowUITests/Light___ShallowUITests.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonbeKing/Light-Shallow/HEAD/README.md --------------------------------------------------------------------------------