├── .gitignore ├── .version ├── CHANGELOG ├── README.md ├── bin ├── rstream └── rstream-transcoder └── include ├── core ├── rstream-config-crtmpd-helper ├── rstream-config-ffmpeg-helper ├── rstream-config-helper ├── rstream-config-hls-helper ├── rstream-config-nginx-helper └── rstream-core ├── freebsd9 ├── rstream-freebsd9_common-helper ├── rstream-freebsd9_crtmpd-helper ├── rstream-freebsd9_daemontools-helper ├── rstream-freebsd9_ffmpeg-helper └── rstream-freebsd9_nginx-helper └── templates ├── crtmpd-conf-flvplayback.tpl ├── crtmpd-conf-proxypublish.tpl ├── crtmpd-run-log.tpl ├── crtmpd-run.tpl ├── crtmpd-trunk-779-transparentStream.patch ├── crtmpd-users.tpl ├── ffmpeg-run-log.tpl ├── ffmpeg-run.tpl ├── libavformat-segment-c_segment-list-EXTM3U.patch ├── nginx-conf.tpl ├── nginx-rtmp-mime-types.tpl ├── nginx-rtmp-stat.xsl ├── nginx-run-log.tpl ├── nginx-run.tpl ├── rstream-conf-crtmpd.tpl ├── rstream-conf-ffmpeg.tpl ├── rstream-conf-nginx-hls.tpl ├── rstream-conf-nginx.tpl ├── rstream-firewall.dist └── stat.xsl /.gitignore: -------------------------------------------------------------------------------- 1 | shared 2 | etc 3 | src 4 | local 5 | tmp 6 | var 7 | -------------------------------------------------------------------------------- /.version: -------------------------------------------------------------------------------- 1 | TAG=0.6 2 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/CHANGELOG -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/README.md -------------------------------------------------------------------------------- /bin/rstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/bin/rstream -------------------------------------------------------------------------------- /bin/rstream-transcoder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/bin/rstream-transcoder -------------------------------------------------------------------------------- /include/core/rstream-config-crtmpd-helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/core/rstream-config-crtmpd-helper -------------------------------------------------------------------------------- /include/core/rstream-config-ffmpeg-helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/core/rstream-config-ffmpeg-helper -------------------------------------------------------------------------------- /include/core/rstream-config-helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/core/rstream-config-helper -------------------------------------------------------------------------------- /include/core/rstream-config-hls-helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/core/rstream-config-hls-helper -------------------------------------------------------------------------------- /include/core/rstream-config-nginx-helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/core/rstream-config-nginx-helper -------------------------------------------------------------------------------- /include/core/rstream-core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/core/rstream-core -------------------------------------------------------------------------------- /include/freebsd9/rstream-freebsd9_common-helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/freebsd9/rstream-freebsd9_common-helper -------------------------------------------------------------------------------- /include/freebsd9/rstream-freebsd9_crtmpd-helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/freebsd9/rstream-freebsd9_crtmpd-helper -------------------------------------------------------------------------------- /include/freebsd9/rstream-freebsd9_daemontools-helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/freebsd9/rstream-freebsd9_daemontools-helper -------------------------------------------------------------------------------- /include/freebsd9/rstream-freebsd9_ffmpeg-helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/freebsd9/rstream-freebsd9_ffmpeg-helper -------------------------------------------------------------------------------- /include/freebsd9/rstream-freebsd9_nginx-helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/freebsd9/rstream-freebsd9_nginx-helper -------------------------------------------------------------------------------- /include/templates/crtmpd-conf-flvplayback.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/templates/crtmpd-conf-flvplayback.tpl -------------------------------------------------------------------------------- /include/templates/crtmpd-conf-proxypublish.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/templates/crtmpd-conf-proxypublish.tpl -------------------------------------------------------------------------------- /include/templates/crtmpd-run-log.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/templates/crtmpd-run-log.tpl -------------------------------------------------------------------------------- /include/templates/crtmpd-run.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/templates/crtmpd-run.tpl -------------------------------------------------------------------------------- /include/templates/crtmpd-trunk-779-transparentStream.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/templates/crtmpd-trunk-779-transparentStream.patch -------------------------------------------------------------------------------- /include/templates/crtmpd-users.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/templates/crtmpd-users.tpl -------------------------------------------------------------------------------- /include/templates/ffmpeg-run-log.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/templates/ffmpeg-run-log.tpl -------------------------------------------------------------------------------- /include/templates/ffmpeg-run.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/templates/ffmpeg-run.tpl -------------------------------------------------------------------------------- /include/templates/libavformat-segment-c_segment-list-EXTM3U.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/templates/libavformat-segment-c_segment-list-EXTM3U.patch -------------------------------------------------------------------------------- /include/templates/nginx-conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/templates/nginx-conf.tpl -------------------------------------------------------------------------------- /include/templates/nginx-rtmp-mime-types.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/templates/nginx-rtmp-mime-types.tpl -------------------------------------------------------------------------------- /include/templates/nginx-rtmp-stat.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/templates/nginx-rtmp-stat.xsl -------------------------------------------------------------------------------- /include/templates/nginx-run-log.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/templates/nginx-run-log.tpl -------------------------------------------------------------------------------- /include/templates/nginx-run.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/templates/nginx-run.tpl -------------------------------------------------------------------------------- /include/templates/rstream-conf-crtmpd.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/templates/rstream-conf-crtmpd.tpl -------------------------------------------------------------------------------- /include/templates/rstream-conf-ffmpeg.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/templates/rstream-conf-ffmpeg.tpl -------------------------------------------------------------------------------- /include/templates/rstream-conf-nginx-hls.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/templates/rstream-conf-nginx-hls.tpl -------------------------------------------------------------------------------- /include/templates/rstream-conf-nginx.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/templates/rstream-conf-nginx.tpl -------------------------------------------------------------------------------- /include/templates/rstream-firewall.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/templates/rstream-firewall.dist -------------------------------------------------------------------------------- /include/templates/stat.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelexel/rstream/HEAD/include/templates/stat.xsl --------------------------------------------------------------------------------