No description
Find a file
2022-11-04 23:20:46 +01:00
assets add developer field to metainfo 2022-10-28 21:57:32 +02:00
scripts add install script 2022-07-16 22:32:01 +02:00
src add clipboard permission 2022-11-04 23:20:46 +01:00
submodules remove Vencord folder 2022-11-04 20:45:55 +00:00
.gitignore improve logging 2022-08-02 12:41:32 +02:00
.gitmodules use rohrkabel as submodule and update it to v1.2 2022-07-26 16:33:34 +02:00
CMakeLists.txt Implement Keybinds (#57) 2022-10-10 19:50:26 +00:00
LICENSE fix license 2022-07-18 21:07:10 +02:00
README.md Implement Keybinds (#57) 2022-10-10 19:50:26 +00:00
resources.qrc use icon for window 2022-07-28 18:36:09 +02:00
version.cmake cmake: use version from text file without suffix 2022-08-04 15:47:04 +02:00

discord-screenaudio

A custom discord client that supports streaming with audio on Linux, made possible by the great work of @edisionnano and the Rohrkabel library by @Curve.

Unlike a lot of other solutions, the audio here is directly fed into the screenshare and not passed to the user microphone (see explanation).

Screenshot_20220925_112945

The purpose of this project is not to provide an alternative to the original Discord client. Rather, it should be used in addition to the original client in case you want to stream something, maybe used with a second account. For anything else, this client has way too many things that work less well than in the original client.

Technically this could be against Discord's TOS, so be warned. Discord probably won't ban you for using this, but if they do I told you and it's not my fault.

Known Issues

  • Only works with PipeWire
  • Can only share primary screen on X11 (no other screens or specific applications) (see #1)

Installation

You have multiple options:

Building from Source

Requirements

  • Basic building tools
  • CMake
  • Qt5 and QtWebEngine
  • PipeWire (it currently doesn't work with PulseAudio)
  • Git
  • Kf5Notifications (optional, for better notifications)
  • KXMLGui and KGlobalAccel (optional, for keybinds)

On Debian: apt install -y build-essential cmake qtbase5-dev qtwebengine5-dev libkf5notifications-dev libkf5xmlgui-dev libkf5globalaccel-dev pkg-config libpipewire-0.3-dev git

Building

First, clone the repository:

git clone https://github.com/maltejur/discord-screenaudio.git
cd discord-screenaudio

Then, to build the program, run this in the source directory:

cmake -B build
cmake --build build --config Release

And then to optionally install it, run:

sudo cmake --install build

How it works

This whole project is based on this repository, which very nicely explains how to stream audio in the web version of Discord. Basically: a virtual microphone is created which captures the application audio, and this microphone is then fed to the Discord stream by intercepting a API call of Discord.

License

Copyright (C) 2022 Malte Jürgens

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.