├── .gitignore ├── .npmignore ├── discovery ├── ffmpeg.formats ├── full-frames-png │ ├── Makefile │ └── png2theora.c ├── full-frames │ ├── Makefile │ ├── framebyframe.c │ ├── terminals.tar.bz2 │ └── topng.js ├── html5 │ ├── full-frame-video.js │ ├── index-full-frames.html │ ├── theora-frames-full.html │ ├── theora-frames-full.js │ └── theora-frames-full │ │ ├── fragment-000.dat │ │ ├── fragment-001.dat │ │ ├── fragment-002.dat │ │ ├── fragment-003.dat │ │ ├── fragment-004.dat │ │ ├── fragment-005.dat │ │ ├── fragment-006.dat │ │ ├── fragment-007.dat │ │ ├── fragment-008.dat │ │ ├── fragment-009.dat │ │ ├── fragment-010.dat │ │ ├── fragment-011.dat │ │ ├── fragment-012.dat │ │ ├── fragment-013.dat │ │ ├── fragment-014.dat │ │ ├── fragment-015.dat │ │ ├── fragment-016.dat │ │ ├── fragment-017.dat │ │ ├── fragment-018.dat │ │ ├── fragment-019.dat │ │ ├── fragment-020.dat │ │ ├── fragment-021.dat │ │ ├── fragment-022.dat │ │ ├── fragment-023.dat │ │ ├── fragment-024.dat │ │ ├── fragment-025.dat │ │ ├── fragment-026.dat │ │ ├── fragment-027.dat │ │ ├── fragment-028.dat │ │ ├── fragment-029.dat │ │ ├── fragment-030.dat │ │ ├── fragment-031.dat │ │ ├── fragment-032.dat │ │ ├── fragment-033.dat │ │ ├── fragment-034.dat │ │ ├── fragment-035.dat │ │ ├── fragment-036.dat │ │ ├── fragment-037.dat │ │ ├── fragment-038.dat │ │ ├── fragment-039.dat │ │ ├── fragment-040.dat │ │ ├── fragment-041.dat │ │ ├── fragment-042.dat │ │ ├── fragment-043.dat │ │ ├── fragment-044.dat │ │ ├── fragment-045.dat │ │ ├── fragment-046.dat │ │ ├── fragment-047.dat │ │ ├── fragment-048.dat │ │ ├── fragment-049.dat │ │ ├── fragment-050.dat │ │ ├── fragment-051.dat │ │ ├── fragment-052.dat │ │ ├── fragment-053.dat │ │ ├── fragment-054.dat │ │ ├── fragment-055.dat │ │ ├── fragment-056.dat │ │ ├── fragment-057.dat │ │ ├── fragment-058.dat │ │ ├── fragment-059.dat │ │ ├── fragment-060.dat │ │ ├── fragment-061.dat │ │ ├── fragment-062.dat │ │ ├── fragment-063.dat │ │ ├── fragment-064.dat │ │ ├── fragment-065.dat │ │ ├── fragment-066.dat │ │ ├── fragment-067.dat │ │ ├── fragment-068.dat │ │ ├── fragment-069.dat │ │ ├── fragment-070.dat │ │ ├── fragment-071.dat │ │ ├── fragment-072.dat │ │ ├── fragment-073.dat │ │ ├── fragment-074.dat │ │ ├── fragment-075.dat │ │ ├── fragment-076.dat │ │ ├── fragment-077.dat │ │ ├── fragment-078.dat │ │ ├── fragment-079.dat │ │ ├── fragment-080.dat │ │ ├── fragment-081.dat │ │ ├── fragment-082.dat │ │ ├── fragment-083.dat │ │ ├── fragment-084.dat │ │ ├── fragment-085.dat │ │ ├── fragment-086.dat │ │ ├── fragment-087.dat │ │ ├── fragment-088.dat │ │ ├── fragment-089.dat │ │ ├── fragment-090.dat │ │ ├── fragment-091.dat │ │ ├── fragment-092.dat │ │ ├── fragment-093.dat │ │ ├── fragment-094.dat │ │ ├── fragment-095.dat │ │ ├── fragment-096.dat │ │ ├── fragment-097.dat │ │ ├── fragment-098.dat │ │ ├── fragment-099.dat │ │ ├── fragment-100.dat │ │ ├── fragment-101.dat │ │ ├── fragment-102.dat │ │ ├── fragment-103.dat │ │ ├── fragment-104.dat │ │ └── fragment-105.dat ├── rgba2yuv.c └── rgbatorgb.c ├── package.json ├── readme.md ├── src ├── async_stacked_video.cpp ├── async_stacked_video.h ├── common.cpp ├── common.h ├── fixed_video.cpp ├── fixed_video.h ├── loki │ ├── RefToValue.h │ └── ScopeGuard.h ├── module.cpp ├── stacked_video.cpp ├── stacked_video.h ├── utils.cpp ├── utils.h ├── video_encoder.cpp └── video_encoder.h ├── tests ├── full-frames │ ├── terminals.tar.bz2 │ └── tovideo.js └── stacked-frames │ ├── frames.tgz │ ├── tovideo-async.js │ └── tovideo.js └── wscript /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | .lock-wscript 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | build 2 | discovery 3 | video.node 4 | terminal-* 5 | -------------------------------------------------------------------------------- /discovery/ffmpeg.formats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/ffmpeg.formats -------------------------------------------------------------------------------- /discovery/full-frames-png/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/full-frames-png/Makefile -------------------------------------------------------------------------------- /discovery/full-frames-png/png2theora.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/full-frames-png/png2theora.c -------------------------------------------------------------------------------- /discovery/full-frames/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/full-frames/Makefile -------------------------------------------------------------------------------- /discovery/full-frames/framebyframe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/full-frames/framebyframe.c -------------------------------------------------------------------------------- /discovery/full-frames/terminals.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/full-frames/terminals.tar.bz2 -------------------------------------------------------------------------------- /discovery/full-frames/topng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/full-frames/topng.js -------------------------------------------------------------------------------- /discovery/html5/full-frame-video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/full-frame-video.js -------------------------------------------------------------------------------- /discovery/html5/index-full-frames.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/index-full-frames.html -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full.html -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full.js -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-000.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-000.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-001.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-001.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-002.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-002.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-003.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-003.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-004.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-004.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-005.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-005.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-006.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-006.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-007.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-007.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-008.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-008.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-009.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-009.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-010.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-010.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-011.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-011.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-012.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-012.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-013.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-013.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-014.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-014.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-015.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-015.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-016.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-016.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-017.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-017.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-018.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-018.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-019.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-019.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-020.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-020.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-021.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-021.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-022.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-022.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-023.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-023.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-024.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-024.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-025.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-025.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-026.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-026.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-027.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-027.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-028.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-028.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-029.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-029.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-030.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-030.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-031.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-031.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-032.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-032.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-033.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-033.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-034.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-034.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-035.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-035.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-036.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-036.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-037.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-037.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-038.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-038.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-039.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-039.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-040.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-040.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-041.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-041.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-042.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-042.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-043.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-043.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-044.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-044.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-045.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-045.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-046.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-046.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-047.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-047.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-048.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-048.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-049.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-049.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-050.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-050.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-051.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-051.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-052.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-052.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-053.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-053.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-054.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-054.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-055.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-055.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-056.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-056.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-057.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-057.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-058.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-058.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-059.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-059.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-060.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-060.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-061.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-061.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-062.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-062.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-063.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-063.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-064.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-064.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-065.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-065.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-066.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-066.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-067.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-067.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-068.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-068.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-069.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-069.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-070.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-070.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-071.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-071.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-072.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-072.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-073.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-073.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-074.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-074.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-075.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-075.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-076.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-076.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-077.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-077.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-078.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-078.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-079.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-079.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-080.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-080.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-081.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-081.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-082.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-082.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-083.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-083.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-084.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-084.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-085.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-085.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-086.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-086.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-087.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-087.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-088.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-088.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-089.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-089.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-090.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-090.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-091.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-091.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-092.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-092.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-093.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-093.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-094.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-094.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-095.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-096.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-096.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-097.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-097.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-098.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-098.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-099.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-099.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-100.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-100.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-101.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-101.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-102.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-102.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-103.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-103.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-104.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-104.dat -------------------------------------------------------------------------------- /discovery/html5/theora-frames-full/fragment-105.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/html5/theora-frames-full/fragment-105.dat -------------------------------------------------------------------------------- /discovery/rgba2yuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/rgba2yuv.c -------------------------------------------------------------------------------- /discovery/rgbatorgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/discovery/rgbatorgb.c -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/readme.md -------------------------------------------------------------------------------- /src/async_stacked_video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/src/async_stacked_video.cpp -------------------------------------------------------------------------------- /src/async_stacked_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/src/async_stacked_video.h -------------------------------------------------------------------------------- /src/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/src/common.cpp -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/src/common.h -------------------------------------------------------------------------------- /src/fixed_video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/src/fixed_video.cpp -------------------------------------------------------------------------------- /src/fixed_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/src/fixed_video.h -------------------------------------------------------------------------------- /src/loki/RefToValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/src/loki/RefToValue.h -------------------------------------------------------------------------------- /src/loki/ScopeGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/src/loki/ScopeGuard.h -------------------------------------------------------------------------------- /src/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/src/module.cpp -------------------------------------------------------------------------------- /src/stacked_video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/src/stacked_video.cpp -------------------------------------------------------------------------------- /src/stacked_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/src/stacked_video.h -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/src/utils.h -------------------------------------------------------------------------------- /src/video_encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/src/video_encoder.cpp -------------------------------------------------------------------------------- /src/video_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/src/video_encoder.h -------------------------------------------------------------------------------- /tests/full-frames/terminals.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/tests/full-frames/terminals.tar.bz2 -------------------------------------------------------------------------------- /tests/full-frames/tovideo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/tests/full-frames/tovideo.js -------------------------------------------------------------------------------- /tests/stacked-frames/frames.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/tests/stacked-frames/frames.tgz -------------------------------------------------------------------------------- /tests/stacked-frames/tovideo-async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/tests/stacked-frames/tovideo-async.js -------------------------------------------------------------------------------- /tests/stacked-frames/tovideo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/tests/stacked-frames/tovideo.js -------------------------------------------------------------------------------- /wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-video/HEAD/wscript --------------------------------------------------------------------------------