tl-open-source/tl-rtc-file
Fork: 256 Star: 2470 (更新于 2024-10-23 05:00:31)
license: MIT
Language: JavaScript .
WebRTC P2P online web media streaming tool (for files, video, screen, live streaming, text) with management and statistical monitoring capabilities.
最后发布版本: v10.5.2 ( 2024-03-26 18:05:06)
tl-rtc-file-tool (tl webrtc file(media) tools)
Demo | Document | DockerHub | 中文文档 | QQ Group: 624214498
Table of Contents
- Background
- Advantages
- Pre-deployment Considerations
- Self-Deployment
- Docker Deployment
- Other Deployment Methods
- Configuring the Database (Optional)
- Admin Panel (Optional)
- WeChat Notifications (Optional)
- OSS Cloud Storage (Optional)
- Chat-GPT (Optional)
- Configuring turnserver (Optional for LAN, Required for WAN)
- Overview Diagram
- License
- 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
最近版本更新:(数据更新于 2024-10-20 11:37:13)
2024-03-26 18:05:06 v10.5.2
2023-11-04 12:55:55 v10.5.1
2023-10-28 15:22:04 v10.5.0
2023-10-28 15:21:55 v10.4.9
2023-09-09 15:05:07 v10.4.8
2023-08-28 20:03:09 v10.4.7
2023-08-20 23:30:05 v10.4.6
2023-08-18 16:36:57 v10.4.5
2023-08-17 09:41:05 v10.4.4
2023-08-16 20:29:19 v10.4.3
主题(topics):
demotool, filetransfer, node, p2p, turnserver, webrtc, websocket
tl-open-source/tl-rtc-file同语言 JavaScript最近更新仓库
2024-11-05 19:13:47 jerryc127/hexo-theme-butterfly
2024-11-05 13:53:42 LiteLoaderQQNT/LiteLoaderQQNT
2024-11-03 02:40:36 chris81605/Degrees-of-Lewdity_Cheat_Extended
2024-11-01 21:55:46 projectdiscovery/nuclei-templates
2024-11-01 19:24:44 NumberSir/DoL-I18n-Build
2024-11-01 12:25:14 midoks/mdserver-web