├── .classpath ├── .gitignore ├── .idea ├── ant.xml ├── codeStyleSettings.xml ├── codeStyles │ └── codeStyleConfig.xml ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── dictionaries │ └── funpro.xml ├── libraries │ ├── jna_platform.xml │ └── p5.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── .project ├── README.md ├── VideoExport.iml ├── data └── README ├── examples ├── basic │ └── basic.pde ├── interactive │ └── interactive.pde ├── internetVideo │ └── internetVideo.pde ├── multipleMovies │ └── multipleMovies.pde ├── options │ └── options.pde ├── usingPGraphics │ └── usingPGraphics.pde ├── webcamSaving │ └── webcamSaving.pde ├── withAudio │ ├── data │ │ └── test-sound.mp3 │ └── withAudio.pde ├── withAudioUrl │ └── data │ │ └── withAudioUrl.pde ├── withAudioViz │ ├── data │ │ └── jingle.mp3 │ └── withAudioViz.pde └── zCustomCommand │ └── zCustomCommand.pde ├── lib ├── README ├── jna-platform.jar └── jna.jar ├── license.txt ├── resources ├── README.md ├── build.properties ├── build.xml ├── code │ ├── ExampleTaglet.class │ ├── ExampleTaglet.java │ ├── ant-contrib-1.0b3.jar │ └── doc.sh ├── library.properties └── stylesheet.css ├── src └── com │ └── hamoid │ └── VideoExport.java └── web ├── index.html └── stylesheet.css /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ffmpegPath.txt 2 | update.fish 3 | bin 4 | tmp 5 | distribution 6 | -------------------------------------------------------------------------------- /.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/codeStyleSettings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 9 | -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/dictionaries/funpro.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ffmpeg 5 | 6 | 7 | -------------------------------------------------------------------------------- /.idea/libraries/jna_platform.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.idea/libraries/p5.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 23 | 24 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | dont 98 | 7 99 | setFfmpeg 100 | endMovie 101 | setDebugging( 102 | ffmpegOutputMsg 103 | attachSound 104 | err 105 | err( 106 | err() 107 | saveDebugInfo 108 | setDebugging 109 | System.out 110 | jar 111 | project.lib 112 | 113 | 114 | 115 | 117 | 118 | 121 | 122 | 123 | 135 | 136 | 137 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | Android > Lint > Correctness > Messages 150 | 151 | 152 | Manifest 153 | 154 | 155 | Spelling 156 | 157 | 158 | 159 | 160 | SpellCheckingInspection 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 |