├── .gitignore ├── LICENSE ├── README.md └── mpegts.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THE108/mpeg-ts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THE108/mpeg-ts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # mpeg-ts 2 | Mpeg2TS segmenter written in pure golang 3 | -------------------------------------------------------------------------------- /mpegts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THE108/mpeg-ts/HEAD/mpegts.go --------------------------------------------------------------------------------