百科.dev
全部条目AI 编程趋势榜开源项目技术资讯提交条目
登录
< 返回工具列表
T

tl-rtc-file

> 编程语言
开源

WebRTC P2P 在线 Web 多媒体流式传输工具 (适用于文件、视频、屏幕、实时流、文本),具有管理和统计监控功能。

2.6K stars0 点赞1 次浏览
访问官网GitHub

工具介绍

WebRTC P2P 在线 Web 多媒体流式传输工具 (适用于文件、视频、屏幕、实时流、文本),具有管理和统计监控功能。

# tl-rtc-file-tool (tl webrtc file(media) tools)

Demo | Document | DockerHub | 中文文档 | QQ Group: 624214498

## Table of Contents - [Background](#background) - [Advantages](#advantages) - [Pre-deployment Considerations](#pre-deployment-considerations) - [Self-Deployment](#self-deployment) - [Installing Dependencies](#installing-dependencies) - [Starting the Service](#starting-the-service) - [Docker Deployment](#docker-deployment) - [One-Click Docker Script](#one-click-docker-script) - [Using docker-compose](#using-docker-compose) - [Self-Building and Starting the Image](#self-building-and-starting-the-image) - [Other Deployment Methods](#other-deployment-methods) - [Configuring the Database (Optional)](#configuring-the-database-optional) - [Admin Panel (Optional)](#admin-panel-optional) - [WeChat Notifications (Optional)](#wechat-notifications-optional) - [OSS Cloud Storage (Optional)](#oss-cloud-storage-optional) - [Chat-GPT (Optional)](#chat-gpt-optional) - [Configuring turnserver (Optional for LAN, Required for WAN)](#configuring-turnserver-optional-for-lan-required-for-wan) - [Overview Diagram](#overview-diagram) - [License](#license) - [Disclaimer](#disclaimer) ## Background This project was developed based on the topic of the graduation project in 2020. It allows file transfer using WebRTC in web applications and supports transferring large files. ## Advantages Fragmented transmission, cross-platform, platform-independent, easy to use, no speed limit in the local network (up to over 70 MB/s in the LAN), supports private deployment, supports drag-and-drop sending of multiple files, web file preview. Many additional features have been added, such as local screen recording, remote screen sharing (zero-latency), remote audio and video calls (zero-latency), live streaming (zero-latency), password-protected rooms, OSS cloud storage, relay service settings, WebRTC detection, WebRTC statistics, text transmission (group chat, private chat), public chat, remote whiteboard, AI chatbox, feature-rich admin panel, real-time execution log display, robot alert notifications, and more. ## Pre-deployment Considerations Whether it's self-deployment, Docker deployment, or other script deployments, you need to modify the corresponding configurations in `tlrtcfile.env` before performing the following operations. Further configuration modifications and service restarts are required. Of course, you can also use the default configurations without modifications, but the default configurations are only suitable for testing on localhost. They won't be accessible to others, making it impossible for others to use. Therefore, if you intend to deploy on a server for local network or public network users, you must configure `tlrtcfile.env` accordingly. ## Self-Deployment #### Installing Dependencies Install Node.js 14.21.x or above, and npm. Then, navigate to the project directory and run the following command: ``` cd svr/ npm install ``` For the first run, execute the following command: ``` npm run build:pro ``` If you need to develop or modify the frontend pages, use this command. If not, you can skip this step: ``` npm run build:dev ``` #### Starting the Service Start the following two services. Choose one mode to start. The only difference between them is that the HTTPS mode is required to use features like audio/video streaming, live streaming, and screen sharing. Other features are not affected. After starting in HTTP mode, access the service at `http://your_machine_ip:9092`. - Start the API and socket services: ``` npm run http-api npm run http-socket ``` Or, start in HTTPS mode and access the service at `https://your_machine_ip:9092`. - Start the API and socket services: ``` npm run https-api npm run https-socket ``` ## Docker Deployment Currently, both `official images` and `self-built images` are supported. For official images, there are two ways to operate: `docker script startup` and `docker-compose startup`. #### One-Click Docker Script Navigate to the `bin/` directory and execute the `auto-pull-and-start-docker.sh` script: ``` chmod +x ./auto-pull-and-start-docker.sh ./auto-pull-and-start-docker.sh ``` #### Using docker-compose In the main directory, execute the corresponding command based on your Docker Compose version: - For Docker Compose V1: ``` docker-compose --profile=http up -d ``` - For Docker Compose V2: ``` docker compose --profile=http up -d ``` #### Self-Building and Starting the Image Navigate to the `docker/` directory and execute the corresponding command based on your Docker Compose version: - For Docker Compose V1: ``` docker-compose -f docker-compose-build-code.yml up -d ``` - For Docker Compose V2: ``` docker compose -f docker-compose-build-code.yml up -d ``` ## Other Deployment Methods In addition to the manual installation, Docker official images, and self-built Docker images, there are other methods such as automatic scripts and one-click deployments on hosting platforms. After downloading the project, navigate to the `bin/` directory and choose the appropriate system script to execute. It will automatically detect the environment, install dependencies, and start the service. #### Automatic script for Ubuntu (e.g., Ubuntu 16) - If the script doesn't have execution permission, run the following command: ``` chmod +x ./ubuntu16/*.sh ``` - If using HTTP, execute this script: ``` ./auto-check-install-http.sh ``` - If using HTTPS, execute this script: ``` ./auto-check-install-https.sh ``` - To stop the service: ``` ./auto-stop.sh ``` #### Automatic script for Windows - If using HTTP, execute this script: ``` windows/auto-check-install-http.bat ``` - If using HTTPS, execute this script: ``` windows/auto-check-install-https.bat ``` #### One-Click Deployment on Zeabur Platform ## Other Configuration Options #### Configuring the Database (Optional) You need to install MySQL database manually, create a database named `webchat`, and then modify the database-related configurations in `tlrtcfile.env`. #### Admin Panel (Optional) Prerequisite: Database configuration must be enabled. Modify the admin panel-related configurations in `tlrtcfile.env`. After starting, enter the configured room number and password to access the admin panel. #### WeChat Notifications (Optional) If you need to set up notification for access and error alerts, you can create a WeChat Work robot and get an API key. Modify the WeChat notification configurations in `tlrtcfile.env`. #### OSS Cloud Storage (Optional) The project currently supports Seafile storage integration, and future updates will include support for Alibaba Cloud, Tencent Cloud, Qiniu Cloud, and self-hosted server storage methods. Modify the OSS storage configurations in `tlrtcfile.env`. #### Chat-GPT (Optional) Integrated with the OpenAI API, this project includes a chat dialog. Modify the OpenAI configurations in `tlrtcfile.env`. #### Configuring turnserver (Optional for LAN, Required for WAN) There are two ways to generate TURN server credentials: fixed credentials (recommended) and time-limited credentials. Choose one method. The following example uses Ubuntu. Install coturn: ``` sudo apt-get install coturn ``` For time-limited credentials, modify the configuration file `docker/coturn/turnserver-with-secret-user.conf`. - Modify the fields in the configuration file: ``` `listening-device`, `listening-ip`, `external-ip`, `static-auth-secret`, `realm` ``` - Start the turnserver: ``` turnserver -c /path/to/conf/turn/turnserver-with-secret-user.conf ``` For fixed credentials, modify the configuration file `docker/coturn/turnserver-with-fixed-user.conf`. - Modify the fields in the configuration file: ``` `listening-device`, `listening-ip`, `external-ip`, `user`, `realm` ``` - Generate a user: ``` turnadmin -a -u username -p password -r realm_in_config_file ``` - Start the turnserver: ``` turnserver -c /path/to/docker/coturn/turnserver-with-secret-user.conf ``` After setting up coturn, configure the WebRTC-related information in the corresponding `tlrtcfile.env` configuration. ## Overview Diagram ## License ### MIT License Copyright (c) 2020 ~ 2023 iamtsm ## Disclaimer [Disclaimer](DISCLAIMER.md)

GitHub Issues· 0 开放

在 GitHub 查看全部

暂无开放 Issues,或尚未同步最近议题。

> 标签

JavaScriptdemotoolfiletransfernodep2p

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月17日
分类编程语言
定价开源

> 相关工具

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言