├── .gitignore ├── COPYING ├── README ├── httpd └── README ├── mod_nginx ├── README ├── README.ru ├── config ├── mp4frag.conf └── ngx_http_mp4frag_module.c └── mp4frag ├── COPYING ├── INSTALL ├── Makefile ├── README ├── SConstruct ├── base64.cc ├── base64.hh ├── dump_fragment.py ├── mapping.cc ├── mapping.hh ├── mp4.cc ├── mp4.hh ├── mp4frag.cc ├── mp4frag.hh ├── mp4frag_main.cc ├── serialize.cc ├── serialize.hh └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | .* 2 | tags 3 | config.log 4 | *.pyc 5 | *~ 6 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventos/OpenHttpStreamer/HEAD/COPYING -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventos/OpenHttpStreamer/HEAD/README -------------------------------------------------------------------------------- /httpd/README: -------------------------------------------------------------------------------- 1 | 2 | coming soon... 3 | -------------------------------------------------------------------------------- /mod_nginx/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventos/OpenHttpStreamer/HEAD/mod_nginx/README -------------------------------------------------------------------------------- /mod_nginx/README.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventos/OpenHttpStreamer/HEAD/mod_nginx/README.ru -------------------------------------------------------------------------------- /mod_nginx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventos/OpenHttpStreamer/HEAD/mod_nginx/config -------------------------------------------------------------------------------- /mod_nginx/mp4frag.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventos/OpenHttpStreamer/HEAD/mod_nginx/mp4frag.conf -------------------------------------------------------------------------------- /mod_nginx/ngx_http_mp4frag_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventos/OpenHttpStreamer/HEAD/mod_nginx/ngx_http_mp4frag_module.c -------------------------------------------------------------------------------- /mp4frag/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventos/OpenHttpStreamer/HEAD/mp4frag/COPYING -------------------------------------------------------------------------------- /mp4frag/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventos/OpenHttpStreamer/HEAD/mp4frag/INSTALL -------------------------------------------------------------------------------- /mp4frag/Makefile: -------------------------------------------------------------------------------- 1 | all:: 2 | scons 3 | -------------------------------------------------------------------------------- /mp4frag/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventos/OpenHttpStreamer/HEAD/mp4frag/README -------------------------------------------------------------------------------- /mp4frag/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventos/OpenHttpStreamer/HEAD/mp4frag/SConstruct -------------------------------------------------------------------------------- /mp4frag/base64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventos/OpenHttpStreamer/HEAD/mp4frag/base64.cc -------------------------------------------------------------------------------- /mp4frag/base64.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventos/OpenHttpStreamer/HEAD/mp4frag/base64.hh -------------------------------------------------------------------------------- /mp4frag/dump_fragment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventos/OpenHttpStreamer/HEAD/mp4frag/dump_fragment.py -------------------------------------------------------------------------------- /mp4frag/mapping.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventos/OpenHttpStreamer/HEAD/mp4frag/mapping.cc -------------------------------------------------------------------------------- /mp4frag/mapping.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventos/OpenHttpStreamer/HEAD/mp4frag/mapping.hh -------------------------------------------------------------------------------- /mp4frag/mp4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventos/OpenHttpStreamer/HEAD/mp4frag/mp4.cc -------------------------------------------------------------------------------- /mp4frag/mp4.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventos/OpenHttpStreamer/HEAD/mp4frag/mp4.hh -------------------------------------------------------------------------------- /mp4frag/mp4frag.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventos/OpenHttpStreamer/HEAD/mp4frag/mp4frag.cc -------------------------------------------------------------------------------- /mp4frag/mp4frag.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventos/OpenHttpStreamer/HEAD/mp4frag/mp4frag.hh -------------------------------------------------------------------------------- /mp4frag/mp4frag_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventos/OpenHttpStreamer/HEAD/mp4frag/mp4frag_main.cc -------------------------------------------------------------------------------- /mp4frag/serialize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventos/OpenHttpStreamer/HEAD/mp4frag/serialize.cc -------------------------------------------------------------------------------- /mp4frag/serialize.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventos/OpenHttpStreamer/HEAD/mp4frag/serialize.hh -------------------------------------------------------------------------------- /mp4frag/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inventos/OpenHttpStreamer/HEAD/mp4frag/utils.py --------------------------------------------------------------------------------