├── .env.example ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── cmd └── yippy │ └── main.go ├── go.mod ├── go.sum └── yippy ├── handle_index.go ├── handle_login.go ├── handle_subs.go ├── handle_transcode.go ├── transcode_manager.go └── yippy.go /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haileyok/yippy/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | yippy-server 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haileyok/yippy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haileyok/yippy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haileyok/yippy/HEAD/README.md -------------------------------------------------------------------------------- /cmd/yippy/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haileyok/yippy/HEAD/cmd/yippy/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haileyok/yippy/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haileyok/yippy/HEAD/go.sum -------------------------------------------------------------------------------- /yippy/handle_index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haileyok/yippy/HEAD/yippy/handle_index.go -------------------------------------------------------------------------------- /yippy/handle_login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haileyok/yippy/HEAD/yippy/handle_login.go -------------------------------------------------------------------------------- /yippy/handle_subs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haileyok/yippy/HEAD/yippy/handle_subs.go -------------------------------------------------------------------------------- /yippy/handle_transcode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haileyok/yippy/HEAD/yippy/handle_transcode.go -------------------------------------------------------------------------------- /yippy/transcode_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haileyok/yippy/HEAD/yippy/transcode_manager.go -------------------------------------------------------------------------------- /yippy/yippy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haileyok/yippy/HEAD/yippy/yippy.go --------------------------------------------------------------------------------