A Pen by James58899 on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { VoiceConnection } from 'eris'; | |
| import FFmpeg from 'fluent-ffmpeg'; | |
| import { Queue } from 'queue-typescript'; | |
| export class PlayerQueue { | |
| private playQueue: { [key: string]: Queue<string> } = {}; | |
| public queueAndPlay(voice: VoiceConnection, file: string) { | |
| if (!(voice.channelID in this.playQueue)) this.playQueue[voice.channelID] = new Queue<string>(); | |
| this.playQueue[voice.channelID].enqueue(file); |
- Translate Play Store listing (Title and Description)
- Translate in-App strings file (4. strings file.xml)
- API Methods and params description (5. api-methods-en.json)
- PWRTelegram API Methods and params Description (6. pwrtelegram-methods-en.json)