2024-08-20 20:59:04 +02:00
|
|
|
# Discord Video Sharing ![status-badge](https://git.mylloon.fr/Anri/dsr/badges/workflows/release.yml/badge.svg)
|
2023-07-28 02:32:18 +02:00
|
|
|
|
2024-01-16 19:46:21 +01:00
|
|
|
Tool for sharing video to Discord.
|
|
|
|
|
|
|
|
> This tool was primarily made for video captured by NVidia Shadowplay.
|
2023-08-24 16:07:55 +02:00
|
|
|
|
2023-11-11 14:39:49 +01:00
|
|
|
## Download/Install
|
|
|
|
|
|
|
|
2 choices :
|
|
|
|
|
|
|
|
- Manually head to [the release page](https://git.mylloon.fr/Anri/dsr/releases/latest).
|
2024-04-01 15:15:02 +02:00
|
|
|
- Download it via PowerShell:
|
2023-11-11 14:39:49 +01:00
|
|
|
|
2024-04-01 15:15:02 +02:00
|
|
|
```powershell
|
|
|
|
irm https://git.mylloon.fr/Anri/dsr/raw/branch/main/install.ps1 | iex
|
|
|
|
```
|
2023-08-24 16:07:55 +02:00
|
|
|
|
2023-12-02 23:56:32 +01:00
|
|
|
> - If you have Discord Nitro: add `/nitro` flag when running DSR.
|
|
|
|
> - If you have an NVidia GPU with NVenc: add `/nvenc` flag when running DSR.
|
|
|
|
|
2023-08-24 16:07:55 +02:00
|
|
|
## More info
|
|
|
|
|
|
|
|
- [x] KISS interface
|
2024-04-04 11:54:54 +02:00
|
|
|
- [x] Support drag&drop into the icon
|
2023-08-24 16:07:55 +02:00
|
|
|
- [x] Keep the video under 25mb (discord limitation)
|
2023-12-02 23:56:32 +01:00
|
|
|
- [x] NVenc support
|
2023-07-30 13:45:01 +02:00
|
|
|
- [x] If already under the limit, the file won't be compressed
|
2023-11-11 14:03:53 +01:00
|
|
|
- [x] Nitro suppport via `/nitro` flag
|
2024-04-04 11:54:54 +02:00
|
|
|
- [x] Merge audio files into one track when recorded with system audio and microphone
|
|
|
|
split up, while keeping the original ones (with conveninant metadata)
|
|
|
|
- [x] Works also with file with only one audio track
|
|
|
|
- [x] Support multiples files at once
|
2024-01-16 19:46:21 +01:00
|
|
|
- [x] Optimize for video streaming
|
2023-07-29 14:29:14 +02:00
|
|
|
|
2023-07-29 15:38:03 +02:00
|
|
|
## Package the app for Windows
|
2023-07-29 14:29:14 +02:00
|
|
|
|
|
|
|
```bash
|
2023-07-31 13:27:57 +02:00
|
|
|
npm i --platform=win32
|
|
|
|
npm run make -- --platform=win32
|
2023-07-29 14:29:14 +02:00
|
|
|
```
|
2023-07-31 13:27:57 +02:00
|
|
|
|
|
|
|
It will create a ZIP folder in `./out/make`.
|