├── .gitignore ├── Podfile ├── README.md ├── Test.mp4 ├── VideoToWebpDemo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── VideoToWebpDemo.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── VideoToWebpDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m └── VideoToWebpDemoUITests ├── Info.plist └── VideoToWebpDemoUITests.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KxShare/VideoToWebp/HEAD/.gitignore -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KxShare/VideoToWebp/HEAD/Podfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # VideoToWebp 2 | ## [抖音短视频生成webp动图解决方案](https://www.jianshu.com/p/c75938791cdf) 3 | -------------------------------------------------------------------------------- /Test.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KxShare/VideoToWebp/HEAD/Test.mp4 -------------------------------------------------------------------------------- /VideoToWebpDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KxShare/VideoToWebp/HEAD/VideoToWebpDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VideoToWebpDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KxShare/VideoToWebp/HEAD/VideoToWebpDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /VideoToWebpDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KxShare/VideoToWebp/HEAD/VideoToWebpDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /VideoToWebpDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KxShare/VideoToWebp/HEAD/VideoToWebpDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /VideoToWebpDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KxShare/VideoToWebp/HEAD/VideoToWebpDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /VideoToWebpDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KxShare/VideoToWebp/HEAD/VideoToWebpDemo/AppDelegate.h -------------------------------------------------------------------------------- /VideoToWebpDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KxShare/VideoToWebp/HEAD/VideoToWebpDemo/AppDelegate.m -------------------------------------------------------------------------------- /VideoToWebpDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KxShare/VideoToWebp/HEAD/VideoToWebpDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /VideoToWebpDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KxShare/VideoToWebp/HEAD/VideoToWebpDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /VideoToWebpDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KxShare/VideoToWebp/HEAD/VideoToWebpDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /VideoToWebpDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KxShare/VideoToWebp/HEAD/VideoToWebpDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /VideoToWebpDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KxShare/VideoToWebp/HEAD/VideoToWebpDemo/Info.plist -------------------------------------------------------------------------------- /VideoToWebpDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KxShare/VideoToWebp/HEAD/VideoToWebpDemo/ViewController.h -------------------------------------------------------------------------------- /VideoToWebpDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KxShare/VideoToWebp/HEAD/VideoToWebpDemo/ViewController.m -------------------------------------------------------------------------------- /VideoToWebpDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KxShare/VideoToWebp/HEAD/VideoToWebpDemo/main.m -------------------------------------------------------------------------------- /VideoToWebpDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KxShare/VideoToWebp/HEAD/VideoToWebpDemoUITests/Info.plist -------------------------------------------------------------------------------- /VideoToWebpDemoUITests/VideoToWebpDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KxShare/VideoToWebp/HEAD/VideoToWebpDemoUITests/VideoToWebpDemoUITests.m --------------------------------------------------------------------------------