DPP supports receiving audio. This examples show how to use it to record some user in a VC.
#include <dpp/dpp.h>
#include <iomanip>
#include <sstream>
int main(int argc, char const *argv[])
{
FILE *fd;
fd = fopen("./me.pcm", "wb");
std::string command;
ss >> command;
if (command == ".record") {
"You don't seem to be on a voice channel! :("
));
}
}
if (command == ".stop") {
fclose(fd);
}
});
}
});
bot.start(false);
return 0;
}
The cluster class represents a group of shards and a command queue for sending and receiving commands...
Definition: cluster.h:384
Represents a guild on Discord (AKA a server)
Definition: guild.h:358
bool connect_member_voice(snowflake user_id, bool self_mute=false, bool self_deaf=false)
Connect to a voice channel another guild member is in.
snowflake id
Unique ID of object set by Discord. This value contains a timestamp, worker ID, internal server ID,...
Definition: discord.h:48
uint64_t snowflake
A 64 bit unsigned value representing many things on discord. Discord calls the value a 'snowflake' va...
Definition: discord.h:36
DPP_EXPORT guild * find_guild(snowflake id)
Create message.
Definition: dispatcher.h:1156
message msg
message that was created (sent).
Definition: dispatcher.h:1165
Represents messages sent and received on Discord.
Definition: message.h:1010
user author
Definition: message.h:1016
snowflake guild_id
Definition: message.h:1014
std::string content
Definition: message.h:1020
snowflake channel_id
Definition: message.h:1012
voice receive packet
Definition: dispatcher.h:1476
size_t audio_size
Size of audio buffer.
Definition: dispatcher.h:1492
uint8_t * audio
Audio data, encoded as 48kHz stereo PCM or Opus.
Definition: dispatcher.h:1488
snowflake user_id
User ID of speaker (zero if unknown)
Definition: dispatcher.h:1496