├── .gitignore ├── .travis.yml ├── History.md ├── Makefile ├── Readme.md ├── binding.gyp ├── index.js ├── lib ├── avconv.js ├── navcodec.js └── transcode.js ├── package.json ├── src ├── navaudiofifo.cpp ├── navaudiofifo.h ├── navcodec.cpp ├── navcodec.h ├── navcodeccontext.cpp ├── navcodeccontext.h ├── navcodecid.cpp ├── navcodecid.h ├── navdictionary.cpp ├── navdictionary.h ├── navformat.cpp ├── navformat.h ├── navframe.cpp ├── navframe.h ├── navoutformat.cpp ├── navoutformat.h ├── navpixformat.cpp ├── navpixformat.h ├── navresample.cpp ├── navresample.h ├── navstream.cpp ├── navstream.h ├── navsws.cpp ├── navsws.h ├── navthumbnail.cpp ├── navthumbnail.h ├── navutils.h ├── relocatemoov.cpp └── relocatemoov.h ├── test ├── fixtures │ ├── chunk.wmv │ ├── dizzy.mp4 │ ├── oceans-clip.mp4 │ ├── uncharted3.mp4 │ └── walk.flac └── simple.test.js └── wscript /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | .npm-debug.log 4 | test/fixture/transcode 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/.travis.yml -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/History.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/Readme.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/binding.gyp -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/navcodec'); 2 | 3 | -------------------------------------------------------------------------------- /lib/avconv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/lib/avconv.js -------------------------------------------------------------------------------- /lib/navcodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/lib/navcodec.js -------------------------------------------------------------------------------- /lib/transcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/lib/transcode.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/package.json -------------------------------------------------------------------------------- /src/navaudiofifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/navaudiofifo.cpp -------------------------------------------------------------------------------- /src/navaudiofifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/navaudiofifo.h -------------------------------------------------------------------------------- /src/navcodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/navcodec.cpp -------------------------------------------------------------------------------- /src/navcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/navcodec.h -------------------------------------------------------------------------------- /src/navcodeccontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/navcodeccontext.cpp -------------------------------------------------------------------------------- /src/navcodeccontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/navcodeccontext.h -------------------------------------------------------------------------------- /src/navcodecid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/navcodecid.cpp -------------------------------------------------------------------------------- /src/navcodecid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/navcodecid.h -------------------------------------------------------------------------------- /src/navdictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/navdictionary.cpp -------------------------------------------------------------------------------- /src/navdictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/navdictionary.h -------------------------------------------------------------------------------- /src/navformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/navformat.cpp -------------------------------------------------------------------------------- /src/navformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/navformat.h -------------------------------------------------------------------------------- /src/navframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/navframe.cpp -------------------------------------------------------------------------------- /src/navframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/navframe.h -------------------------------------------------------------------------------- /src/navoutformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/navoutformat.cpp -------------------------------------------------------------------------------- /src/navoutformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/navoutformat.h -------------------------------------------------------------------------------- /src/navpixformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/navpixformat.cpp -------------------------------------------------------------------------------- /src/navpixformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/navpixformat.h -------------------------------------------------------------------------------- /src/navresample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/navresample.cpp -------------------------------------------------------------------------------- /src/navresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/navresample.h -------------------------------------------------------------------------------- /src/navstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/navstream.cpp -------------------------------------------------------------------------------- /src/navstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/navstream.h -------------------------------------------------------------------------------- /src/navsws.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/navsws.cpp -------------------------------------------------------------------------------- /src/navsws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/navsws.h -------------------------------------------------------------------------------- /src/navthumbnail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/navthumbnail.cpp -------------------------------------------------------------------------------- /src/navthumbnail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/navthumbnail.h -------------------------------------------------------------------------------- /src/navutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/navutils.h -------------------------------------------------------------------------------- /src/relocatemoov.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/relocatemoov.cpp -------------------------------------------------------------------------------- /src/relocatemoov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/src/relocatemoov.h -------------------------------------------------------------------------------- /test/fixtures/chunk.wmv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/test/fixtures/chunk.wmv -------------------------------------------------------------------------------- /test/fixtures/dizzy.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/test/fixtures/dizzy.mp4 -------------------------------------------------------------------------------- /test/fixtures/oceans-clip.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/test/fixtures/oceans-clip.mp4 -------------------------------------------------------------------------------- /test/fixtures/uncharted3.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/test/fixtures/uncharted3.mp4 -------------------------------------------------------------------------------- /test/fixtures/walk.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/test/fixtures/walk.flac -------------------------------------------------------------------------------- /test/simple.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/test/simple.test.js -------------------------------------------------------------------------------- /wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OptimalBits/navcodec/HEAD/wscript --------------------------------------------------------------------------------