├── .gitignore ├── License.md ├── README.md ├── ofxVideoRecorderExample ├── addons.make ├── bin │ └── data │ │ └── .gitkeep └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── ofxaddons_thumbnail.png └── src ├── ofxVideoRecorder.cpp └── ofxVideoRecorder.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVideoRecorder/HEAD/.gitignore -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVideoRecorder/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVideoRecorder/HEAD/README.md -------------------------------------------------------------------------------- /ofxVideoRecorderExample/addons.make: -------------------------------------------------------------------------------- 1 | ofxVideoRecorder 2 | -------------------------------------------------------------------------------- /ofxVideoRecorderExample/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ofxVideoRecorderExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVideoRecorder/HEAD/ofxVideoRecorderExample/src/main.cpp -------------------------------------------------------------------------------- /ofxVideoRecorderExample/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVideoRecorder/HEAD/ofxVideoRecorderExample/src/ofApp.cpp -------------------------------------------------------------------------------- /ofxVideoRecorderExample/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVideoRecorder/HEAD/ofxVideoRecorderExample/src/ofApp.h -------------------------------------------------------------------------------- /ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVideoRecorder/HEAD/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /src/ofxVideoRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVideoRecorder/HEAD/src/ofxVideoRecorder.cpp -------------------------------------------------------------------------------- /src/ofxVideoRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVideoRecorder/HEAD/src/ofxVideoRecorder.h --------------------------------------------------------------------------------