/DiscordCC-Client

Electron app for visualizing Discord voice-chat transcriptions

Primary LanguageJavaScriptMIT LicenseMIT

Discord Closed Captions - Client

Electron app for visualizing Discord voice-chat transcriptions generated with the DCC-Server.

Setup

The server-side needs to be setup first in order for DCC-Client to receive voice-chat transcriptions.

In index.js, add your PubNub publish, subscribe and secret keys in the following fields:

const pubnub = new PubNub({
    publishKey: "ADD PUBLISH KEY",
    subscribeKey: "ADD SUBSCRIBE KEY",
    secretKey: "ADD SECRET KEY"
});