{"id":33183670,"url":"https://github.com/gnolizuh/BLSS","last_synced_at":"2025-11-16T12:01:14.184Z","repository":{"id":82308034,"uuid":"84809627","full_name":"gnolizuh/BLSS","owner":"gnolizuh","description":"NGINX-based Live Media Streaming Server","archived":false,"fork":false,"pushed_at":"2022-05-06T08:38:09.000Z","size":2919,"stargazers_count":196,"open_issues_count":24,"forks_count":73,"subscribers_count":31,"default_branch":"master","last_synced_at":"2024-07-13T00:05:09.581Z","etag":null,"topics":["h265","hls","httpflv","httpflv-server","livestream","nginx","rtmp","rtmp-server"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gnolizuh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2017-03-13T09:45:37.000Z","updated_at":"2024-04-17T14:39:30.000Z","dependencies_parsed_at":"2023-06-15T23:30:41.784Z","dependency_job_id":null,"html_url":"https://github.com/gnolizuh/BLSS","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/gnolizuh/BLSS","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gnolizuh%2FBLSS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gnolizuh%2FBLSS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gnolizuh%2FBLSS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gnolizuh%2FBLSS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gnolizuh","download_url":"https://codeload.github.com/gnolizuh/BLSS/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gnolizuh%2FBLSS/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":284704131,"owners_count":27049848,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-11-16T02:00:05.974Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["h265","hls","httpflv","httpflv-server","livestream","nginx","rtmp","rtmp-server"],"created_at":"2025-11-16T04:00:36.302Z","updated_at":"2025-11-16T12:01:14.179Z","avatar_url":"https://github.com/gnolizuh.png","language":"C","funding_links":[],"categories":["Infrastructure \u0026 Delivery","Nginx学习资料快速链接"],"sub_categories":["Streaming Servers"],"readme":"\nBLSS: Bravo Live Streaming Service \n======================================\n\n[![Powered][1]][2] [![Build Status][3]][4] [![Downloads][5]][6]\n\n[1]: https://img.shields.io/badge/nginx--rtmp--module-Powered-blue.svg\n[2]: https://github.com/arut/nginx-rtmp-module\n[3]: https://travis-ci.org/gnolizuh/BLSS.svg?branch=master\n[4]: https://travis-ci.org/gnolizuh/BLSS\n[5]: https://img.shields.io/github/downloads/atom/atom/total.svg\n[6]: https://github.com/gnolizuh/BLSS/releases\n\nMedia streaming server based on [nginx-rtmp-module](https://github.com/arut/nginx-rtmp-module).\n\n# Features\n\n* All features of [nginx-rtmp-module](https://github.com/arut/nginx-rtmp-module) are inherited, i.e., it is 100% compatible with [nginx-rtmp-module](https://github.com/arut/nginx-rtmp-module).\n\n* HTTP-based FLV live streaming support.\n\n* Dynamic GOP cache for low latency.\n\n* Socket sharding feature for higer performance (MUST be linux kernel 2.6 or later).\n\n* Ability to separate different users at top of application block (rtmp service{} block).\n\n* Dynamic matching virtual hosts supported.\n\n* Provide ability for relaying by bkdr hash function (relay_stream hash option).\n\n# Systems supported\n\n* Linux (kernel 2.6 or later are recommended)/FreeBSD/MacOS/Windows (limited).\n\n# Dependencies\n\n* [GCC](https://gcc.gnu.org/) for compiling on Unix-like systems.\n\n* [MSVC](http://www.mingw.org/wiki/MSYS) for compiling on Windows (see [how to build nginx on win32](http://nginx.org/en/docs/howto_build_on_win32.html)).\n\n* [PCRE](http://www.pcre.org/), [zlib](http://zlib.net/) and [OpenSSL](http://www.openssl.org/) libraries sources if needed.\n\n# Build\n\ncd to NGINX source directory \u0026 run this:\n\n    ./configure --add-module=/path/to/BLSS\n    make\n    make install\n\n# Get Started \n\n* Build BLSS module according to the section above.\n\n* Configure the nginx.conf file and start nginx.\n\n* Publish stream.\n\n        ffmpeg -re -i live.flv -c copy -f flv rtmp://publish.com[:port]/appname/streamname\n\n* Play.\n\n        ffplay rtmp://rtmpplay.com[:port]/appname/streamname # RTMP\n        ffplay http://flvplay.com[:port]/appname/streamname  # HTTP based FLV\n\n# Example\n\n    worker_processes 8;   # multi-worker process mode\n    relay_stream hash;    # stream relay mode\n\n    rtmp {\n        server {\n            listen 1935 reuseport;\n\n            service cctv {\n                hostname pub rtmp publish.com;      # match rtmp push domain\n                hostname sub rtmp rtmpplay.com;     # match rtmp pull domain\n                hostname sub http_flv flvplay.com;  # match http-flv pull domain\n\n                application live {\n                    live on;\n                    gop_cache on;\n                    gop_cache_count 5;  # cache 5 GOPs\n\n                    hls on;\n                    hls_fragment 10s;\n                    hls_playlist_length 30s;\n                }\n            }\n        }\n    }\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgnolizuh%2FBLSS","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgnolizuh%2FBLSS","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgnolizuh%2FBLSS/lists"}