├── COPYRIGHT ├── README.md ├── expected-output.m4v ├── makeMovie.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── makeMovie ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── DqdFrameGenerator.h ├── DqdGeneratedVideo.h ├── DqdGeneratedVideo.m ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── TestFrameGenerator.h ├── TestFrameGenerator.m ├── ViewController.h ├── ViewController.m ├── baseImage.jpg └── main.m └── makeMovieTests ├── Info.plist └── makeMovieTests.m /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayoff/GeneratedVideo/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayoff/GeneratedVideo/HEAD/README.md -------------------------------------------------------------------------------- /expected-output.m4v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayoff/GeneratedVideo/HEAD/expected-output.m4v -------------------------------------------------------------------------------- /makeMovie.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayoff/GeneratedVideo/HEAD/makeMovie.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /makeMovie.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayoff/GeneratedVideo/HEAD/makeMovie.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /makeMovie/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayoff/GeneratedVideo/HEAD/makeMovie/AppDelegate.h -------------------------------------------------------------------------------- /makeMovie/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayoff/GeneratedVideo/HEAD/makeMovie/AppDelegate.m -------------------------------------------------------------------------------- /makeMovie/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayoff/GeneratedVideo/HEAD/makeMovie/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /makeMovie/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayoff/GeneratedVideo/HEAD/makeMovie/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /makeMovie/DqdFrameGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayoff/GeneratedVideo/HEAD/makeMovie/DqdFrameGenerator.h -------------------------------------------------------------------------------- /makeMovie/DqdGeneratedVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayoff/GeneratedVideo/HEAD/makeMovie/DqdGeneratedVideo.h -------------------------------------------------------------------------------- /makeMovie/DqdGeneratedVideo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayoff/GeneratedVideo/HEAD/makeMovie/DqdGeneratedVideo.m -------------------------------------------------------------------------------- /makeMovie/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayoff/GeneratedVideo/HEAD/makeMovie/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /makeMovie/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayoff/GeneratedVideo/HEAD/makeMovie/Info.plist -------------------------------------------------------------------------------- /makeMovie/TestFrameGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayoff/GeneratedVideo/HEAD/makeMovie/TestFrameGenerator.h -------------------------------------------------------------------------------- /makeMovie/TestFrameGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayoff/GeneratedVideo/HEAD/makeMovie/TestFrameGenerator.m -------------------------------------------------------------------------------- /makeMovie/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayoff/GeneratedVideo/HEAD/makeMovie/ViewController.h -------------------------------------------------------------------------------- /makeMovie/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayoff/GeneratedVideo/HEAD/makeMovie/ViewController.m -------------------------------------------------------------------------------- /makeMovie/baseImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayoff/GeneratedVideo/HEAD/makeMovie/baseImage.jpg -------------------------------------------------------------------------------- /makeMovie/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayoff/GeneratedVideo/HEAD/makeMovie/main.m -------------------------------------------------------------------------------- /makeMovieTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayoff/GeneratedVideo/HEAD/makeMovieTests/Info.plist -------------------------------------------------------------------------------- /makeMovieTests/makeMovieTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayoff/GeneratedVideo/HEAD/makeMovieTests/makeMovieTests.m --------------------------------------------------------------------------------