{"id":13736423,"url":"https://github.com/anyRTC-UseCase/anyHouse","last_synced_at":"2025-05-08T12:32:57.400Z","repository":{"id":117771508,"uuid":"350168471","full_name":"anyRTC-UseCase/anyHouse","owner":"anyRTC-UseCase","description":"高仿 ClubHouse，语音直播、语聊房、高音质、极速上麦，开源 ClubHouse，实现了Clubhouse的上麦，下麦，邀请，语音音量提示等功能。","archived":false,"fork":false,"pushed_at":"2022-08-17T03:41:01.000Z","size":8269,"stargazers_count":198,"open_issues_count":2,"forks_count":31,"subscribers_count":12,"default_branch":"master","last_synced_at":"2024-08-04T03:06:24.007Z","etag":null,"topics":["anyrtc","clubhouse","rtc","webrtc"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/anyRTC-UseCase.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2021-03-22T01:28:48.000Z","updated_at":"2024-06-22T10:43:30.000Z","dependencies_parsed_at":"2023-06-14T03:45:53.289Z","dependency_job_id":null,"html_url":"https://github.com/anyRTC-UseCase/anyHouse","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anyRTC-UseCase%2FanyHouse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anyRTC-UseCase%2FanyHouse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anyRTC-UseCase%2FanyHouse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anyRTC-UseCase%2FanyHouse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/anyRTC-UseCase","download_url":"https://codeload.github.com/anyRTC-UseCase/anyHouse/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224732129,"owners_count":17360416,"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","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":["anyrtc","clubhouse","rtc","webrtc"],"created_at":"2024-08-03T03:01:21.493Z","updated_at":"2024-11-15T04:31:51.919Z","avatar_url":"https://github.com/anyRTC-UseCase.png","language":"Kotlin","funding_links":[],"categories":["Developer Tools"],"sub_categories":[],"readme":"## 高仿 ClubHouse\n\n\u003e 本文将介绍目前市面上比较流行的音频沙龙应用场景，并讲述基于 anyRTC  SDK,模仿 ClubHouse 的步骤。\n\n\n\n近几年，语音社交产品也算是频频进入大家的视野，像早期的 YY，近期的 ClubHouse。语音聊天在泛娱乐社交行业中有着重要的地位，行业中很多佼佼者也都为用户提供了语音聊天室。有些语聊的应用中除了群聊社交之外还有带玩、叫醒服务、知识付费等。\n\n看似简单的应用，有些优质的语音社交平台能达到每月1亿的流水，当下语聊市场已经被资本疯狂炒作，如何能够站在风口处，成为了当下热聊的话题。\n\n### Demo 体验\n![扫码体验](https://img-blog.csdnimg.cn/20210324210525628.png)\n### 高仿的效果\n![](https://img-blog.csdnimg.cn/20210324220732224.jpeg?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3p6dXp6bA==,size_16,color_FFFFFF,t_70)\n\n\n\n### 代码下载\n\n[Github](https://github.com/anyRTC-UseCase/anyHouse)代码下载慢，请移步至[码云](https://gitee.com/anyRTC_admin/anyHouse)下载\n\n### 实现步骤\n\n#### 业务部分\n\n- 获取房间列表\n- 创建房间/进入房间/退出房间\n- 申请举手/取消举手/邀请请求/取消邀请/同意邀请\n- 获取嘉宾列表/获取观众列表\n\n#### RTM 实时消息部分\n\n- 登录 RTM \n- 加入 RTM 频道\n- 订阅主播状态：根据该状态可以知晓当前房间的主播在线状态，做页面提示\n- 发送频道消息：自定义内容可做房间事件信令同步通知（游客进入房间，举手，邀请等）\n- 退出频道\n- 下线\n\n#### RTC 实时音视频部分\n\n- 设置房间类型：直播类型\n- 设置 AI 降噪以及音乐模式场景：高音质全频带音质\n- 设置角色：房主设置为主播，观众设置为游客，观众同意邀请后设置为主播，下台设置为游客\n- 开关音频：是否静音\n- 监听说话者回调：根据回调数据提示某人在说话，在头像上做动效\n- 监听人员上下线：嘉宾栏人员变动更新\n- 离开频道\n\n### 代码\n\n### 平台兼容\n\nanyHouse 示例项目支持以下平台和版本：\n\n- iOS 9 及以上。\n\n- Android 4.4 及以上。\n\n### 代码目录说明\n\n- [Android 目录说明](https://github.com/anyRTC-UseCase/anyHouse/tree/master/Android/AnyHouse)\n\n- [iOS 目录说明](https://github.com/anyRTC-UseCase/anyHouse/tree/master/iOS/anyHouse-iOS)\n\n### 反馈与建议\n\n联系电话：021-65650071\n\nQQ咨询群：580477436\n\n咨询邮箱：hi@dync.cc\n\n集成咨询：[开发者论坛](https://bbs.anyrtc.io/)\n\n加微信入技术群交流：\n\n\u003cimg src=\"https://img-blog.csdnimg.cn/20210324215941588.png\" style=\"zoom:50%;\" /\u003e\n\n获取更多帮助前往：[www.anyrtc.io](https://www.anyrtc.io/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FanyRTC-UseCase%2FanyHouse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FanyRTC-UseCase%2FanyHouse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FanyRTC-UseCase%2FanyHouse/lists"}