| OLD | NEW |
| 1 --- | 1 --- |
| 2 title: Video to GIF | 2 title: Video to GIF |
| 3 script: video.coffee | 3 script: video.coffee |
| 4 template: test.html | 4 template: test.html |
| 5 --- | 5 --- |
| 6 | 6 |
| 7 <p> | 7 <p> |
| 8 <input disabled id="sample" type="range" step="1" min="20" max="500" value="10
0"> | 8 <input disabled id="sample" type="range" step="1" min="20" max="500" value="10
0"> |
| 9 <button id="go" disabled>Do it!</button> | 9 <button id="go" disabled>Do it!</button> |
| 10 </p> | 10 </p> |
| 11 | 11 |
| 12 <p id="info">Loading...</p> | 12 <p id="info">Loading...</p> |
| 13 | 13 |
| 14 <video id="video" width="600"> | 14 <video id="video" width="600"> |
| 15 <source src="clip.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.'> | 15 <source src="clip.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.'> |
| 16 <source src="clip.ogv" type='video/ogg; codecs="theora, vorbis"'> | 16 <source src="clip.ogv" type='video/ogg; codecs="theora, vorbis"'> |
| 17 </video> | 17 </video> |
| 18 | 18 |
| 19 <img id="result"> | 19 <img id="result"> |
| 20 | 20 |
| OLD | NEW |