├── README.md ├── ZYVideoEditor.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── zhuyongqing.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── zhuyongqing.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist └── ZYVideoEditor ├── AppDelegate.swift ├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist ├── ViewController.swift ├── ZYVideoEditor.swift ├── test1.MP4 ├── test2.MP4 ├── test3.MP4 └── test4.MP4 /README.md: -------------------------------------------------------------------------------- 1 | # ZYVideoEditor 2 | 不同尺寸、方向视频拼接播放 3 | -------------------------------------------------------------------------------- /ZYVideoEditor.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuyongqing/ZYVideoEditor/HEAD/ZYVideoEditor.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ZYVideoEditor.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuyongqing/ZYVideoEditor/HEAD/ZYVideoEditor.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ZYVideoEditor.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuyongqing/ZYVideoEditor/HEAD/ZYVideoEditor.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ZYVideoEditor.xcodeproj/project.xcworkspace/xcuserdata/zhuyongqing.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuyongqing/ZYVideoEditor/HEAD/ZYVideoEditor.xcodeproj/project.xcworkspace/xcuserdata/zhuyongqing.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ZYVideoEditor.xcodeproj/xcuserdata/zhuyongqing.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuyongqing/ZYVideoEditor/HEAD/ZYVideoEditor.xcodeproj/xcuserdata/zhuyongqing.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ZYVideoEditor.xcodeproj/xcuserdata/zhuyongqing.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuyongqing/ZYVideoEditor/HEAD/ZYVideoEditor.xcodeproj/xcuserdata/zhuyongqing.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ZYVideoEditor/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuyongqing/ZYVideoEditor/HEAD/ZYVideoEditor/AppDelegate.swift -------------------------------------------------------------------------------- /ZYVideoEditor/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuyongqing/ZYVideoEditor/HEAD/ZYVideoEditor/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ZYVideoEditor/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuyongqing/ZYVideoEditor/HEAD/ZYVideoEditor/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ZYVideoEditor/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuyongqing/ZYVideoEditor/HEAD/ZYVideoEditor/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ZYVideoEditor/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuyongqing/ZYVideoEditor/HEAD/ZYVideoEditor/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ZYVideoEditor/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuyongqing/ZYVideoEditor/HEAD/ZYVideoEditor/Info.plist -------------------------------------------------------------------------------- /ZYVideoEditor/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuyongqing/ZYVideoEditor/HEAD/ZYVideoEditor/ViewController.swift -------------------------------------------------------------------------------- /ZYVideoEditor/ZYVideoEditor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuyongqing/ZYVideoEditor/HEAD/ZYVideoEditor/ZYVideoEditor.swift -------------------------------------------------------------------------------- /ZYVideoEditor/test1.MP4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuyongqing/ZYVideoEditor/HEAD/ZYVideoEditor/test1.MP4 -------------------------------------------------------------------------------- /ZYVideoEditor/test2.MP4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuyongqing/ZYVideoEditor/HEAD/ZYVideoEditor/test2.MP4 -------------------------------------------------------------------------------- /ZYVideoEditor/test3.MP4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuyongqing/ZYVideoEditor/HEAD/ZYVideoEditor/test3.MP4 -------------------------------------------------------------------------------- /ZYVideoEditor/test4.MP4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuyongqing/ZYVideoEditor/HEAD/ZYVideoEditor/test4.MP4 --------------------------------------------------------------------------------