├── .gitignore ├── README.md ├── doc └── sample.gif ├── server.js └── transform.py /.gitignore: -------------------------------------------------------------------------------- 1 | input/ 2 | parts/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbochi/gifstreaming/HEAD/README.md -------------------------------------------------------------------------------- /doc/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbochi/gifstreaming/HEAD/doc/sample.gif -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbochi/gifstreaming/HEAD/server.js -------------------------------------------------------------------------------- /transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbochi/gifstreaming/HEAD/transform.py --------------------------------------------------------------------------------