-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyoutubeplayer.py
863 lines (752 loc) Β· 48 KB
/
youtubeplayer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
import wavelink
from discord.ext import commands
from discord import app_commands
from music import *
from help import HALP_MOOSIC
from util_discord import command_check, description_helper, get_guild_prefix
async def music_help(ctx: commands.Context):
if not ctx.guild: return await ctx.reply("not supported")
if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
await HALP_MOOSIC(ctx)
# player commands
async def music_summon(ctx: commands.Context):
if not ctx.guild: return await ctx.reply("not supported")
if check_bot_conflict(ctx): return await ctx.reply("use moosic instead :)", ephemeral=True)
if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
if not ctx.author.voice:
return await ctx.reply(f'Join a voice channel first')
if ctx.voice_client: return await ctx.reply(f"I'm already connected to {ctx.voice_client.channel.jump_url}\nPlease use a different bot (>_<)")
try: vc = await voice_channel_connector(ctx)
except:
if fixing: return await ctx.reply(content="Please try again later")
print("ChannelTimeoutException")
msg=await ctx.reply(content="An error occured. Reconnectingβ¦")
await setup_hook_music(ctx.bot)
return await msg.edit(content="Please re-run the command")
vc.autoplay = wavelink.AutoPlayMode.enabled
await ctx.reply(f"Connected to {vc.channel.jump_url}")
async def music_play(bot: commands.Bot, ctx: commands.Context | discord.Interaction, search: str):
if not ctx.guild: return await ctx.reply("not supported")
if check_bot_conflict(ctx):
if isinstance(ctx, commands.Context): return await ctx.reply("use moosic instead :)", ephemeral=True)
if isinstance(ctx, discord.Interaction): return await ctx.response.send_message("use moosic instead :)", ephemeral=True)
if await command_check(ctx, "music", "media"):
if isinstance(ctx, commands.Context):
return await ctx.reply("command disabled", ephemeral=True)
if isinstance(ctx, discord.Interaction):
return await ctx.response.send_message("command disabled", ephemeral=True)
if isinstance(ctx, discord.Interaction):
await ctx.response.send_message("Loadingβ¦")
if isinstance(ctx, commands.Context):
msg = await ctx.reply("Loadingβ¦")
if not await check_if_dj(ctx):
if isinstance(ctx, commands.Context):
return await msg.edit(content="not a disc jockey and/or in music spam channel")
if isinstance(ctx, discord.Interaction):
return await ctx.edit_original_response(content="not a disc jockey and/or in music spam channel")
vc = ctx.guild.voice_client
if isinstance(ctx, commands.Context):
if not ctx.author.voice or (vc and not ctx.author.voice.channel == vc.channel):
return await msg.edit(content='Join the voice channel with the bot first')
if isinstance(ctx, discord.Interaction):
if not ctx.user.voice or (vc and not ctx.user.voice.channel == vc.channel):
return await ctx.edit_original_response(content='Join the voice channel with the bot first')
if not search:
p = await get_guild_prefix(ctx)
if isinstance(ctx, commands.Context):
return await msg.edit(content=f"usage: `{p}play <query>`")
if isinstance(ctx, discord.Interaction):
return await ctx.edit_original_response(content=f"usage: `{p}play <query>`")
try:
tracks = await wavelink.Playable.search(search)
except Exception as e:
if isinstance(ctx, commands.Context):
return await msg.edit(content=f'Error :(\n{e}')
if isinstance(ctx, discord.Interaction):
return await ctx.edit_original_response(content=f'Error :(\n{e}')
if not tracks:
if isinstance(ctx, commands.Context):
return await msg.edit(content='No results found')
if isinstance(ctx, discord.Interaction):
return await ctx.edit_original_response(content='No results found')
for track in tracks:
if isinstance(ctx, commands.Context):
track.extras = {"requester": ctx.author.id}
if isinstance(ctx, discord.Interaction):
track.extras = {"requester": ctx.user.id}
if not ctx.guild.voice_client:
try:
vc = await voice_channel_connector(ctx)
except:
if fixing:
if isinstance(ctx, discord.Interaction): return await ctx.edit_original_response(content="Please try again later")
if isinstance(ctx, commands.Context): return await msg.edit(content="Please try again later")
print("ChannelTimeoutException")
if isinstance(ctx, discord.Interaction): await ctx.edit_original_response(content="An error occured. Reconnectingβ¦")
if isinstance(ctx, commands.Context): await msg.edit(content="An error occured. Reconnectingβ¦")
await setup_hook_music(bot)
if isinstance(ctx, discord.Interaction): return await ctx.edit_original_response(content="Please re-run the command")
if isinstance(ctx, commands.Context): return await msg.edit(content="Please re-run the command")
vc.autoplay = wavelink.AutoPlayMode.enabled
vc.music_channel = ctx.channel
if isinstance(tracks, wavelink.Playlist):
added: int = await vc.queue.put_wait(tracks)
text, desc = f"π΅ Queue playlist", f'Added `{added}` songs to the queue'
embed = music_embed(text, desc)
embed.add_field(name="Name", value=f"[{tracks.name}]({tracks.url})" if tracks.url else tracks.name, inline=False)
embed.add_field(name="Author", value=tracks.author, inline=False)
embed.add_field(name="Type", value=tracks.type, inline=False)
if tracks.artwork: embed.set_thumbnail(url=tracks.artwork)
else:
await vc.queue.put_wait(tracks[0])
text, desc = "π΅ Play music", f'`{tracks[0].author} - {tracks[0].title}` has been added to the queue'
embed = music_embed(text, desc)
if not vc.playing: await vc.play(vc.queue.get())
if isinstance(ctx, commands.Context):
await msg.edit(content=None, embed=embed)
if isinstance(ctx, discord.Interaction):
await ctx.edit_original_response(embed=embed, content=None)
async def music_pause(ctx: commands.Context):
if not ctx.guild: return await ctx.reply("not supported")
if check_bot_conflict(ctx): return await ctx.reply("use moosic instead :)", ephemeral=True)
if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
if not await check_if_dj(ctx): return await ctx.reply("not a disc jockey and/or in music spam channel")
vc: wavelink.Player = ctx.voice_client
if not vc: return await ctx.reply("voice client not found")
if not ctx.author.voice or not ctx.author.voice.channel == vc.channel:
return await ctx.reply(f'Join the voice channel with the bot first')
await vc.pause(True)
embed = music_embed("βΈοΈ Pause music", "The music has been paused")
await ctx.reply(embed=embed)
async def music_resume(ctx: commands.Context):
if not ctx.guild: return await ctx.reply("not supported")
if check_bot_conflict(ctx): return await ctx.reply("use moosic instead :)", ephemeral=True)
if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
if not await check_if_dj(ctx): return await ctx.reply("not a disc jockey and/or in music spam channel")
vc: wavelink.Player = ctx.voice_client
if not vc: return await ctx.reply("voice client not found")
if not ctx.author.voice or not ctx.author.voice.channel == vc.channel:
return await ctx.reply(f'Join the voice channel with the bot first')
await vc.pause(False)
embed = music_embed("βΆοΈ Resume music", "The music has been resumed")
await ctx.reply(embed=embed)
async def music_skip(ctx: commands.Context):
if not ctx.guild: return await ctx.reply("not supported")
if check_bot_conflict(ctx): return await ctx.reply("use moosic instead :)", ephemeral=True)
if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
if not await check_if_dj(ctx): return await ctx.reply("not a disc jockey and/or in music spam channel")
vc: wavelink.Player = ctx.voice_client
if not vc: return await ctx.reply("voice client not found")
if not ctx.author.voice or not ctx.author.voice.channel == vc.channel:
return await ctx.reply(f'Join the voice channel with the bot first')
if vc.queue.is_empty:
if vc.autoplay == wavelink.AutoPlayMode.enabled and not vc.auto_queue.is_empty:
for x in vc.auto_queue:
await vc.queue.put_wait(x)
vc.auto_queue.reset()
else: return await ctx.reply("There are no songs in the queue to skip")
await ctx.reply(embed=music_embed("βοΈ Skip music", f"`{vc.current.author} - {vc.current.title}` has been skipped"))
await vc.skip()
async def music_stop(ctx: commands.Context):
if not ctx.guild: return await ctx.reply("not supported")
if check_bot_conflict(ctx): return await ctx.reply("use moosic instead :)", ephemeral=True)
if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
if not await check_if_dj(ctx): return await ctx.reply("not a disc jockey and/or in music spam channel")
vc: wavelink.Player = ctx.voice_client
if not vc: return await ctx.reply("voice client not found")
if not ctx.author.voice or not ctx.author.voice.channel == vc.channel:
return await ctx.reply(f'Join the voice channel with the bot first')
await vc.disconnect()
embed = music_embed("βΉοΈ Stop music", "The music has been stopped")
await ctx.reply(embed=embed)
async def music_nowplaying(ctx: commands.Context):
if not ctx.guild: return await ctx.reply("not supported")
if check_bot_conflict(ctx): return await ctx.reply("use moosic instead :)", ephemeral=True)
if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
vc: wavelink.Player = ctx.voice_client
if not vc: return await ctx.reply("voice client not found")
if vc.playing: await ctx.reply(embed=music_now_playing_embed(ctx.bot, vc.current))
async def music_volume(ctx: commands.Context, value: str):
if not ctx.guild: return await ctx.reply("not supported")
if check_bot_conflict(ctx): return await ctx.reply("use moosic instead :)", ephemeral=True)
if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
vc: wavelink.Player = ctx.voice_client
if not vc: return await ctx.reply("voice client not found")
if not ctx.author.voice or not ctx.author.voice.channel == vc.channel:
return await ctx.reply(f'Join the voice channel with the bot first')
if not value: value = "100"
if not value.isdigit(): return await ctx.reply("not a digit :(")
value: int = int(value)
await vc.set_volume(value)
await ctx.reply(embed=music_embed(f"{'π' if value > 0 else 'π'} Volume", f"Volume is now set to `{value}`"))
# queue commands
async def queue_search(bot: commands.Bot, ctx: commands.Context | discord.Interaction, search: str, source: str="ytmsearch:"):
if not ctx.guild: return await ctx.reply("not supported")
if check_bot_conflict(ctx):
if isinstance(ctx, commands.Context): return await ctx.reply("use moosic instead :)", ephemeral=True)
if isinstance(ctx, discord.Interaction): return await ctx.response.send_message("use moosic instead :)", ephemeral=True)
if await command_check(ctx, "music", "media"):
if isinstance(ctx, commands.Context):
return await ctx.reply("command disabled", ephemeral=True)
if isinstance(ctx, discord.Interaction):
return await ctx.response.send_message("command disabled", ephemeral=True)
if isinstance(ctx, discord.Interaction):
await ctx.response.send_message("Loadingβ¦")
if isinstance(ctx, commands.Context):
msg = await ctx.reply("Loadingβ¦")
if not await check_if_dj(ctx):
if isinstance(ctx, commands.Context):
return await msg.edit(content="not a disc jockey and/or in music spam channel")
if isinstance(ctx, discord.Interaction):
return await ctx.edit_original_response(content="not a disc jockey and/or in music spam channel")
vc = ctx.guild.voice_client
if isinstance(ctx, commands.Context):
if not ctx.author.voice or (vc and not ctx.author.voice.channel == vc.channel):
return await msg.edit(content='Join the voice channel with the bot first')
if isinstance(ctx, discord.Interaction):
if not ctx.user.voice or (vc and not ctx.user.voice.channel == vc.channel):
return await ctx.edit_original_response(content='Join the voice channel with the bot first')
if not search:
p = await get_guild_prefix(ctx)
if isinstance(ctx, commands.Context):
return await msg.edit(content=f"usage: `{p}search <query>`")
if isinstance(ctx, discord.Interaction):
return await ctx.edit_original_response(content=f"usage: `{p}search <query>`")
try:
tracks = await wavelink.Playable.search(search, source=source)
except Exception as e:
if isinstance(ctx, commands.Context):
return await msg.edit(content=f'Error :(\n{e}')
if isinstance(ctx, discord.Interaction):
return await ctx.edit_original_response(content=f'Error :(\n{e}')
if not tracks:
if isinstance(ctx, commands.Context):
return await msg.edit(content='No results found')
if isinstance(ctx, discord.Interaction):
return await ctx.edit_original_response(content='No results found')
if isinstance(ctx, commands.Context):
await msg.edit(content=None, embed=search_embed(search, tracks, 0), view=SearchView(bot, ctx, search, tracks, 0))
if isinstance(ctx, discord.Interaction):
await ctx.edit_original_response(embed=search_embed(search, tracks, 0), view=SearchView(bot, ctx, search, tracks, 0), content=None)
async def queue_list(ctx: commands.Context, page: str):
if not ctx.guild: return await ctx.reply("not supported")
if check_bot_conflict(ctx): return await ctx.reply("use moosic instead :)", ephemeral=True)
if not await check_if_dj(ctx): return await ctx.reply("not a disc jockey and/or in music spam channel")
if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
vc: wavelink.Player = ctx.voice_client
if not vc: return await ctx.reply("voice client not found")
current_queue = vc.queue
if current_queue.is_empty:
if vc.autoplay == wavelink.AutoPlayMode.enabled and not vc.auto_queue.is_empty:
current_queue = vc.auto_queue
else: return await ctx.reply(embed=music_embed("π Playlist", "The queue is empty"))
if not page: page = "1"
if not page.isdigit(): return await ctx.reply("not a digit :(")
page: int = int(page)
total = sum(t.length for t in current_queue)
items_per_page = 5
total_pages = (len(current_queue) + items_per_page - 1) // items_per_page
page = max(1, min(page, total_pages)) # Redirect to last page if requested page is out of range
index = page - 1 # page 1 = index 0
queue_context = current_queue[index * items_per_page:(index + 1) * items_per_page]
queue_list = "\n".join([f"{i + 1 + (items_per_page * index)}. `{track.author} - {track.title}` ({format_mil(track.length)}) - {requester_string(ctx.bot, track)}" for i, track in enumerate(queue_context)])
embed = music_embed("π Playlist", queue_list)
embed.set_footer(text=f"Page {page}/{total_pages}, Queue: {len(current_queue)} ({format_mil(total)})")
await ctx.reply(embed=embed)
async def queue_loop(ctx: commands.Context, mode: str):
if not ctx.guild: return await ctx.reply("not supported")
if check_bot_conflict(ctx): return await ctx.reply("use moosic instead :)", ephemeral=True)
if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
if not await check_if_dj(ctx): return await ctx.reply("not a disc jockey and/or in music spam channel")
vc: wavelink.Player = ctx.voice_client
if not vc: return await ctx.reply("voice client not found")
if not ctx.author.voice or not ctx.author.voice.channel == vc.channel:
return await ctx.reply(f'Join the voice channel with the bot first')
if mode == 'off':
vc.queue.mode = wavelink.QueueMode.normal
text, desc = "β Repeat off", "Queue mode is now set to normal"
elif mode == 'one':
vc.queue.mode = wavelink.QueueMode.loop
text, desc = "π Repeat one", "Queue mode is now set to loop"
elif mode == 'all':
vc.queue.mode = wavelink.QueueMode.loop_all
text, desc = "π Repeat all", "Queue mode is now set to loop all"
else:
return await ctx.reply(f"Mode not found.\nUsage: `{await get_guild_prefix(ctx)}repeat <off/one/all>`")
embed = music_embed(text, desc)
await ctx.reply(embed=embed)
async def queue_autoplay(ctx: commands.Context, mode: str):
if not ctx.guild: return await ctx.reply("not supported")
if check_bot_conflict(ctx): return await ctx.reply("use moosic instead :)", ephemeral=True)
if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
if not await check_if_dj(ctx): return await ctx.reply("not a disc jockey and/or in music spam channel")
vc: wavelink.Player = ctx.voice_client
if not vc: return await ctx.reply("voice client not found")
if not ctx.author.voice or not ctx.author.voice.channel == vc.channel:
return await ctx.reply(f'Join the voice channel with the bot first')
if mode == 'partial':
vc.autoplay = wavelink.AutoPlayMode.partial
text, desc = "β Recommendations disabled", "Autoplay mode is now set to partial"
elif mode == 'enabled':
vc.autoplay = wavelink.AutoPlayMode.enabled
text, desc = "β
Recommendations enabled", "Autoplay mode is now enabled"
elif mode == 'disabled':
vc.autoplay = wavelink.AutoPlayMode.disabled
text, desc = "β Autoplay disabled", "Autoplay mode is now disabled"
else:
return await ctx.reply(f"Mode not found.\nUsage: `{await get_guild_prefix(ctx)}autoplay <partial/enabled/disabled>`")
embed = music_embed(text, desc)
await ctx.reply(embed=embed)
async def queue_shuffle(ctx: commands.Context):
if not ctx.guild: return await ctx.reply("not supported")
if check_bot_conflict(ctx): return await ctx.reply("use moosic instead :)", ephemeral=True)
if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
if not await check_if_dj(ctx): return await ctx.reply("not a disc jockey and/or in music spam channel")
vc: wavelink.Player = ctx.voice_client
if not vc: return await ctx.reply("voice client not found")
if not ctx.author.voice or not ctx.author.voice.channel == vc.channel:
return await ctx.reply(f'Join the voice channel with the bot first')
if vc.queue.is_empty: return await ctx.reply(embed=music_embed("π Shuffle queue", "The queue is empty"))
vc.queue.shuffle()
embed = music_embed("π Shuffle queue", f"`{len(vc.queue)}` songs have been randomized")
await ctx.reply(embed=embed)
async def queue_reset(ctx: commands.Context):
if not ctx.guild: return await ctx.reply("not supported")
if check_bot_conflict(ctx): return await ctx.reply("use moosic instead :)", ephemeral=True)
if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
vc: wavelink.Player = ctx.voice_client
if not vc: return await ctx.reply("voice client not found")
if not ctx.author.voice or not ctx.author.voice.channel == vc.channel:
return await ctx.reply(f'Join the voice channel with the bot first')
vc.queue.reset()
vc.auto_queue.reset()
await ctx.reply(embed=music_embed("ποΈ Clear queue", "The queue has been emptied"))
async def queue_remove(ctx: commands.Context, index: str):
if not ctx.guild: return await ctx.reply("not supported")
if check_bot_conflict(ctx): return await ctx.reply("use moosic instead :)", ephemeral=True)
if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
vc: wavelink.Player = ctx.voice_client
if not vc: return await ctx.reply("voice client not found")
if not ctx.author.voice or not ctx.author.voice.channel == vc.channel:
return await ctx.reply(f'Join the voice channel with the bot first')
if not index.isdigit() or not int(index): return await ctx.reply("not a digit :(")
if vc.queue.is_empty: return await ctx.reply(embed=music_embed("ποΈ Remove track", "The queue is empty"))
track = vc.queue.peek(min(int(index)-1, len(vc.queue)-1))
vc.queue.remove(track)
await ctx.reply(embed=music_embed("ποΈ Remove track", f"`{track.author} - {track.title}` has been removed"))
async def queue_replace(ctx: commands.Context, index: str, query: str):
if not ctx.guild: return await ctx.reply("not supported")
if check_bot_conflict(ctx): return await ctx.reply("use moosic instead :)", ephemeral=True)
if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
vc: wavelink.Player = ctx.voice_client
if not vc: return await ctx.reply("voice client not found")
if not ctx.author.voice or not ctx.author.voice.channel == vc.channel:
return await ctx.reply(f'Join the voice channel with the bot first')
if not index.isdigit() or not int(index): return await ctx.reply("not a digit :(")
if vc.queue.is_empty: return await ctx.reply(embed=music_embed("β‘οΈ Replace track", "The queue is empty"))
try: tracks = await wavelink.Playable.search(query)
except Exception as e: return await ctx.reply(f'Error :(\n{e}')
if not tracks: return await ctx.reply('No results found')
real_index = min(int(index)-1, len(vc.queue)-1)
track = vc.queue.peek(real_index)
vc.queue[real_index] = tracks[0]
await ctx.reply(embed=music_embed("β‘οΈ Replace track", f"`{track.author} - {track.title}` has been removed and `{tracks[0].author} - {tracks[0].title}` has been replaced"))
async def queue_swap(ctx: commands.Context, init: str, dest: str):
if not ctx.guild: return await ctx.reply("not supported")
if check_bot_conflict(ctx): return await ctx.reply("use moosic instead :)", ephemeral=True)
if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
vc: wavelink.Player = ctx.voice_client
if not vc: return await ctx.reply("voice client not found")
if not ctx.author.voice or not ctx.author.voice.channel == vc.channel:
return await ctx.reply(f'Join the voice channel with the bot first')
if not init.isdigit() or not dest.isdigit() or not int(init) or not int(dest): return await ctx.reply("not a digit :(")
if vc.queue.is_empty: return await ctx.reply(embed=music_embed("π Swap tracks", "The queue is empty"))
index1 = min(int(init)-1, len(vc.queue)-1)
index2 = min(int(dest)-1, len(vc.queue)-1)
first = vc.queue.peek(index1)
second = vc.queue.peek(index2)
vc.queue.swap(index1, index2)
await ctx.reply(embed=music_embed("π Swap tracks", f"`{first.author} - {first.title}` is at position `{index2+1}` and `{second.author} - {second.title}` is at position `{index1+1}`"))
async def queue_peek(ctx: commands.Context, index: str):
if not ctx.guild: return await ctx.reply("not supported")
if check_bot_conflict(ctx): return await ctx.reply("use moosic instead :)", ephemeral=True)
if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
vc: wavelink.Player = ctx.voice_client
if not vc: return await ctx.reply("voice client not found")
if not ctx.author.voice or not ctx.author.voice.channel == vc.channel:
return await ctx.reply(f'Join the voice channel with the bot first')
if not index.isdigit() or not int(index): return await ctx.reply("not a digit :(")
if vc.queue.is_empty: return await ctx.reply(embed=music_embed("π΅ Track index", "The queue is empty"))
real_index = min(int(index)-1, len(vc.queue)-1)
track = vc.queue.peek(real_index)
await ctx.reply(embed=music_embed("π΅ Track index", f"{real_index+1}. `{track.author} - {track.title}` ({format_mil(track.length)})"))
async def queue_move(ctx: commands.Context, init: str, dest: str):
if not ctx.guild: return await ctx.reply("not supported")
if check_bot_conflict(ctx): return await ctx.reply("use moosic instead :)", ephemeral=True)
if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
vc: wavelink.Player = ctx.voice_client
if not vc: return await ctx.reply("voice client not found")
if not ctx.author.voice or not ctx.author.voice.channel == vc.channel:
return await ctx.reply(f'Join the voice channel with the bot first')
if not init.isdigit() or not dest.isdigit() or not int(init) or not int(dest): return await ctx.reply("not a digit :(")
if vc.queue.is_empty: return await ctx.reply(embed=music_embed("βοΈ Move track", "The queue is empty"))
index1 = min(int(init)-1, len(vc.queue)-1)
index2 = min(int(dest)-1, len(vc.queue)-1)
track = vc.queue.peek(index1)
vc.queue.remove(track)
vc.queue.put_at(index2, track)
await ctx.reply(embed=music_embed("βοΈ Move track", f"`{track.author} - {track.title}` is now at position `{index2+1}`"))
async def queue_smart(ctx: commands.Context, count: str):
if not ctx.guild: return await ctx.reply("not supported")
if check_bot_conflict(ctx): return await ctx.reply("use moosic instead :)", ephemeral=True)
if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
vc: wavelink.Player = ctx.voice_client
if not vc: return await ctx.reply("voice client not found")
if not ctx.author.voice or not ctx.author.voice.channel == vc.channel:
return await ctx.reply(f'Join the voice channel with the bot first')
if not count: count="20"
if not count.isdigit() or not int(count): return await ctx.reply("not a digit :(")
await smart_recommendation(vc, max_population=int(count))
for x in vc.auto_queue:
await vc.queue.put_wait(x)
vc.queue.shuffle()
embed = music_embed("π Smart Shuffle", f"`{len(vc.auto_queue)}` songs have been added")
vc.auto_queue.reset()
await ctx.reply(embed=embed)
async def queue_fair(ctx: commands.Context):
if not ctx.guild: return await ctx.reply("not supported")
if check_bot_conflict(ctx): return await ctx.reply("use moosic instead :)", ephemeral=True)
if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
vc: wavelink.Player = ctx.voice_client
if not vc: return await ctx.reply("voice client not found")
if not ctx.author.voice or not ctx.author.voice.channel == vc.channel:
return await ctx.reply(f'Join the voice channel with the bot first')
if vc.queue.is_empty:
return await ctx.reply(embed=music_embed("βοΈ Fair Queue", "The queue is empty"))
# Get all unique requesters in the queue
requesters = []
requester_tracks = {}
# Group tracks by requester
for track in vc.queue:
requester_id = requester_string(ctx.bot, track)
if requester_id not in requesters:
requesters.append(requester_id)
requester_tracks[requester_id] = []
requester_tracks[requester_id].append(track)
if len(requesters) <= 1:
return await ctx.reply(embed=music_embed("βοΈ Fair Queue", "Queue is already fair"))
# Start with a different requester than current if possible
current_requester = requester_string(ctx.bot, vc.current)
if current_requester in requesters:
requesters.remove(current_requester)
requesters.append(current_requester)
# Create new fair queue
new_queue = []
max_rounds = max(len(tracks) for tracks in requester_tracks.values())
# Distribute tracks round-robin style
for round in range(max_rounds):
for requester in requesters:
tracks = requester_tracks[requester]
if round < len(tracks):
new_queue.append(tracks[round])
# Clear and refill the queue with fair distribution
vc.queue.reset()
for track in new_queue:
await vc.queue.put_wait(track)
# Create summary of the new distribution
distribution = {requester: len(tracks) for requester, tracks in requester_tracks.items()}
summary = "\n".join([f"{requester}: {count} tracks" for requester, count in distribution.items()])
embed = music_embed("βοΈ Fair Queue", f"Queue has been reorganized to alternate between users fairly.\n\n**Distribution:**\n{summary}")
await ctx.reply(embed=embed)
async def search_auto(interaction: discord.Interaction, current: str) -> list[app_commands.Choice[str]]:
if not current: return []
tracks = await wavelink.Playable.search(current)
return [
app_commands.Choice(name=f"{track.author} - {track.title}"[:100], value=track.uri) for track in tracks
][:25]
async def search_auto_spotify(interaction: discord.Interaction, current: str) -> list[app_commands.Choice[str]]:
if not current: return []
tracks = await wavelink.Playable.search(current, source="spsearch:")
return [
app_commands.Choice(name=f"{track.author} - {track.title}"[:100], value=track.uri) for track in tracks
][:25]
async def mode_repeat_auto(interaction: discord.Interaction, current: str) -> list[app_commands.Choice[str]]:
return [
app_commands.Choice(name=mode, value=mode) for mode in ["off", "one", "all"] if current.lower() in mode.lower()
]
async def mode_rec_auto(interaction: discord.Interaction, current: str) -> list[app_commands.Choice[str]]:
return [
app_commands.Choice(name=mode, value=mode) for mode in ["partial", "enabled", "disabled"] if current.lower() in mode.lower()
]
class YouTubePlayer(commands.Cog):
def __init__(self, bot):
self.bot = bot
@commands.Cog.listener()
async def on_wavelink_track_start(self, payload: wavelink.TrackStartEventPayload):
vc: wavelink.Player = payload.player
if not vc: return
if not vc.queue.mode == wavelink.QueueMode.loop:
embed = music_now_playing_embed(self.bot, vc.current)
await vc.music_channel.send(embed=embed)
@commands.hybrid_command(description=f"{description_helper['emojis']['music']} {description_helper['media']['music']}")
async def music(self, ctx: commands.Context):
await music_help(ctx)
@commands.command(aliases=['musichelp', 'helpmusic', 'helpm']) # alias
async def mhelp(self, ctx: commands.Context):
await music_help(ctx)
@commands.hybrid_command(description=f"{description_helper['emojis']['music']} {description_helper['player']['dj']}")
async def dj(self, ctx: commands.Context):
await set_dj_role(ctx)
@commands.hybrid_command(description=f"{description_helper['emojis']['music']} {description_helper['player']['djspam']}")
@app_commands.describe(channel_id="Channel ID")
async def djspam(self, ctx: commands.Context, channel_id: str=None):
await set_dj_channel(ctx, channel_id)
# player
@commands.hybrid_command(description=f"{description_helper['emojis']['music']} {description_helper['player']['summon']}")
async def summon(self, ctx: commands.Context):
await music_summon(ctx)
@commands.command() # alias
async def p(self, ctx: commands.Context, *, query: str=None):
await music_play(self.bot, ctx, query)
@commands.hybrid_command(description=f"{description_helper['emojis']['music']} Play music (YouTube Music)")
@app_commands.describe(query="Search query")
@app_commands.autocomplete(query=search_auto)
async def play(self, ctx: commands.Context, *, query:str=None):
await music_play(self.bot, ctx, query)
@app_commands.command(name="play-spotify", description=f"{description_helper['emojis']['music']} Play music (Spotify)")
@app_commands.describe(query="Search query")
@app_commands.autocomplete(query=search_auto_spotify)
async def play_spotify(self, ctx: discord.Interaction, *, query:str=None):
await music_play(self.bot, ctx, query)
@commands.command(aliases=['die', 'dc']) # alias
async def leave(self, ctx: commands.Context):
await music_stop(ctx)
@commands.hybrid_command(description=f"{description_helper['emojis']['music']} {description_helper['player']['stop']}")
async def stop(self, ctx: commands.Context):
await music_stop(ctx)
@commands.hybrid_command(description=f"{description_helper['emojis']['music']} {description_helper['player']['pause']}")
async def pause(self, ctx: commands.Context):
await music_pause(ctx)
@commands.hybrid_command(description=f"{description_helper['emojis']['music']} {description_helper['player']['resume']}")
async def resume(self, ctx: commands.Context):
await music_resume(ctx)
@commands.command() # alias
async def s(self, ctx: commands.Context):
await music_skip(ctx)
@commands.hybrid_command(description=f"{description_helper['emojis']['music']} {description_helper['player']['skip']}")
async def skip(self, ctx: commands.Context):
await music_skip(ctx)
@commands.command() # alias
async def np(self, ctx: commands.Context):
await music_nowplaying(ctx)
@commands.hybrid_command(description=f"{description_helper['emojis']['music']} {description_helper['player']['nowplaying']}")
async def nowplaying(self, ctx: commands.Context):
await music_nowplaying(ctx)
# queue
@commands.hybrid_command(description=f"{description_helper['emojis']['music']} Search music (YouTube Music)")
async def search(self, ctx: commands.Context, *, query: str=None):
await queue_search(self.bot, ctx, query)
@app_commands.command(name="search-spotify", description=f"{description_helper['emojis']['music']} Search music (Spotify)")
@app_commands.describe(query="Search query")
async def search_spotify(self, ctx: discord.Interaction, *, query: str=None):
await queue_search(self.bot, ctx, query, "spsearch:")
@commands.hybrid_command(description=f"{description_helper['emojis']['music']} {description_helper['queue']['peek']}")
@app_commands.describe(index="Track number you want to peek into (Must be a valid integer)")
async def peek(self, ctx: commands.Context, index: str):
await queue_peek(ctx, index)
@commands.command() # alias
async def queue(self, ctx: commands.Context, page: str=None):
await queue_list(ctx, page)
@commands.hybrid_command(description=f"{description_helper['emojis']['music']} {description_helper['queue']['list']}")
@app_commands.describe(page="Page number")
async def list(self, ctx: commands.Context, page: str=None):
await queue_list(ctx, page)
@commands.hybrid_command(description=f"{description_helper['emojis']['music']} {description_helper['player']['repeat']}")
@app_commands.describe(mode="Repeat mode")
@app_commands.autocomplete(mode=mode_repeat_auto)
async def repeat(self, ctx: commands.Context, mode: str):
await queue_loop(ctx, mode)
@commands.hybrid_command(description=f"{description_helper['emojis']['music']} {description_helper['player']['autoplay']}")
@app_commands.describe(mode="Autoplay mode")
@app_commands.autocomplete(mode=mode_rec_auto)
async def autoplay(self, ctx: commands.Context, mode: str):
await queue_autoplay(ctx, mode)
@commands.hybrid_command(description=f"{description_helper['emojis']['music']} {description_helper['queue']['shuffle']}")
async def shuffle(self, ctx: commands.Context):
await queue_shuffle(ctx)
@commands.hybrid_command(description=f"{description_helper['emojis']['music']} {description_helper['queue']['clear']}")
async def clear(self, ctx: commands.Context):
await queue_reset(ctx)
@commands.hybrid_command(description=f"{description_helper['emojis']['music']} {description_helper['queue']['smart']}")
async def smart(self, ctx: commands.Context, count: str=None):
await queue_smart(ctx, count)
@commands.hybrid_command(description=f"{description_helper['emojis']['music']} {description_helper['queue']['fair']}")
async def fair(self, ctx: commands.Context):
await queue_fair(ctx)
@commands.hybrid_command(description=f"{description_helper['emojis']['music']} {description_helper['queue']['remove']}")
@app_commands.describe(index="Track number you want to remove (Must be a valid integer)")
async def remove(self, ctx: commands.Context, index: str):
await queue_remove(ctx, index)
@commands.hybrid_command(description=f"{description_helper['emojis']['music']} {description_helper['queue']['replace']}")
@app_commands.describe(index="Track number you want to replace (Must be a valid integer)", query="Search query")
async def replace(self, ctx: commands.Context, index: str, *, query: str):
await queue_replace(ctx, index, query)
@commands.hybrid_command(description=f"{description_helper['emojis']['music']} {description_helper['queue']['swap']}")
@app_commands.describe(init="First track number you want to swap into (Must be a valid integer)",
dest="Second track number you want to swap into (Must be a valid integer)")
async def swap(self, ctx: commands.Context, init: str, dest: str):
await queue_swap(ctx, init, dest)
@commands.hybrid_command(description=f"{description_helper['emojis']['music']} {description_helper['queue']['move']}")
@app_commands.describe(init="Track number you want to move from (Must be a valid integer)",
dest="Track number you want to move to (Must be a valid integer)")
async def move(self, ctx: commands.Context, init: str, dest: str):
await queue_move(ctx, init, dest)
# filter
@commands.hybrid_command(description=f"{description_helper['emojis']['music']} Set volume")
@app_commands.describe(value="Set value (Must be a valid integer: 0-100)")
async def volume(self, ctx: commands.Context, value: str=None):
await music_volume(ctx, value)
# @commands.hybrid_command(description="")
# async def filters(self, ctx: commands.Context, reset: str=None, filter: str=None):
# if not ctx.guild: return await ctx.reply("not supported")
# if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
# vc: wavelink.Player = ctx.voice_client
# if not vc: return await ctx.reply("voice client not found")
# if reset and reset == "reset":
# filters: wavelink.Filters = vc.filters
# if filter and filter in ["karaoke", "timescale", "lowpass", "rotation", "distortion", "channelmix", "tremolo", "vibrato"]:
# if filter == "karaoke":
# filters.karaoke.reset()
# if filter == "timescale":
# filters.timescale.reset()
# if filter == "lowpass":
# filters.low_pass.reset()
# if filter == "rotation":
# filters.rotation.reset()
# if filter == "distortion":
# filters.distortion.reset()
# if filter == "channelmix":
# filters.channel_mix.reset()
# if filter == "tremolo":
# filters.tremolo.reset()
# if filter == "vibrato":
# filters.vibrato.reset()
# else: filters.reset()
# await vc.set_filters(filters)
# return await ctx.reply("all filters have been reset")
# texts = [
# "`-karaoke <level> <mono_level> <filter_band> <filter_width>`",
# "`-timescale <pitch> <speed> <rate>`",
# "`-lowpass <smoothing>`",
# "`-rotation <rotation_hz>`",
# "`-distortion <sin_offset> <sin_scale> <cos_offset> <cos_scale> <tan_offset> <tan_scale> <offset> <scale>`",
# "`-channelmix <left_to_left> <left_to_right> <right_to_left> <right_to_right>`",
# "`-tremolo <frequency> <depth>`",
# "`-vibrato <frequency> <depth>`",
# "`-filters reset` will reset all filters",
# "`-filters reset <filter>` will reset specific filter"
# ]
# await ctx.reply("\n".join(texts))
# @commands.hybrid_command(description="")
# async def timescale(self, ctx: commands.Context, pitch:float=None, speed:float=None, rate:float=None):
# if not ctx.guild: return await ctx.reply("not supported")
# if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
# vc: wavelink.Player = ctx.voice_client
# if not vc: return await ctx.reply("voice client not found")
# if not ctx.author.voice or not ctx.author.voice.channel == vc.channel:
# return await ctx.reply(f'Join the voice channel with the bot first')
# filters: wavelink.Filters = vc.filters
# filters.timescale.set(pitch=pitch, speed=speed, rate=rate)
# await vc.set_filters(filters)
# await ctx.reply(embed=filter_embed("ποΈ Filter", "Timescale", filters.timescale.payload))
# @commands.hybrid_command(description="")
# async def karaoke(self, ctx: commands.Context, level:float=None, mono_level:float=None, filter_band:float=None, filter_width:float=None):
# if not ctx.guild: return await ctx.reply("not supported")
# if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
# vc: wavelink.Player = ctx.voice_client
# if not vc: return await ctx.reply("voice client not found")
# if not ctx.author.voice or not ctx.author.voice.channel == vc.channel:
# return await ctx.reply(f'Join the voice channel with the bot first')
# filters: wavelink.Filters = vc.filters
# filters.karaoke.set(level=level, mono_level=mono_level, filter_band=filter_band, filter_width=filter_width)
# await vc.set_filters(filters)
# await ctx.reply(embed=filter_embed("ποΈ Filter", "Karaoke", filters.karaoke.payload))
# @commands.hybrid_command(description="")
# async def lowpass(self, ctx: commands.Context, smoothing:float=None):
# if not ctx.guild: return await ctx.reply("not supported")
# if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
# vc: wavelink.Player = ctx.voice_client
# if not vc: return await ctx.reply("voice client not found")
# if not ctx.author.voice or not ctx.author.voice.channel == vc.channel:
# return await ctx.reply(f'Join the voice channel with the bot first')
# filters: wavelink.Filters = vc.filters
# filters.low_pass.set(smoothing=smoothing)
# await vc.set_filters(filters)
# await ctx.reply(embed=filter_embed("ποΈ Filter", "Low Pass", filters.low_pass.payload))
# @commands.hybrid_command(description="")
# async def distortion(self, ctx: commands.Context,
# sin_offset:float=None, sin_scale:float=None, cos_offset:float=None, cos_scale:float=None,
# tan_offset:float=None, tan_scale:float=None, offset:float=None, scale:float=None):
# if not ctx.guild: return await ctx.reply("not supported")
# if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
# vc: wavelink.Player = ctx.voice_client
# if not vc: return await ctx.reply("voice client not found")
# if not ctx.author.voice or not ctx.author.voice.channel == vc.channel:
# return await ctx.reply(f'Join the voice channel with the bot first')
# filters: wavelink.Filters = vc.filters
# filters.distortion.set(sin_offset=sin_offset, sin_scale=sin_scale, cos_offset=cos_offset, cos_scale=cos_scale,
# tan_offset=tan_offset, tan_scale=tan_scale, offset=offset, scale=scale)
# await vc.set_filters(filters)
# await ctx.reply(embed=filter_embed("ποΈ Filter", "Distortion", filters.distortion.payload))
# @commands.hybrid_command(description="")
# async def rotation(self, ctx: commands.Context, rotation_hz:float=None):
# if not ctx.guild: return await ctx.reply("not supported")
# if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
# vc: wavelink.Player = ctx.voice_client
# if not vc: return await ctx.reply("voice client not found")
# if not ctx.author.voice or not ctx.author.voice.channel == vc.channel:
# return await ctx.reply(f'Join the voice channel with the bot first')
# filters: wavelink.Filters = vc.filters
# filters.rotation.set(rotation_hz=rotation_hz)
# await vc.set_filters(filters)
# await ctx.reply(embed=filter_embed("ποΈ Filter", "Rotation", filters.rotation.payload))
# @commands.hybrid_command(description="")
# async def channelmix(self, ctx: commands.Context, left_to_left:float=None, left_to_right:float=None,
# right_to_left:float=None, right_to_right:float=None):
# if not ctx.guild: return await ctx.reply("not supported")
# if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
# vc: wavelink.Player = ctx.voice_client
# if not vc: return await ctx.reply("voice client not found")
# if not ctx.author.voice or not ctx.author.voice.channel == vc.channel:
# return await ctx.reply(f'Join the voice channel with the bot first')
# filters: wavelink.Filters = vc.filters
# filters.channel_mix.set(left_to_left=left_to_left, left_to_right=left_to_right,
# right_to_left=right_to_left, right_to_right=right_to_right)
# await vc.set_filters(filters)
# await ctx.reply(embed=filter_embed("ποΈ Filter", "Channel Mix", filters.channel_mix.payload))
# @commands.hybrid_command(description="")
# async def tremolo(self, ctx: commands.Context, frequency:float=None, depth:float=None):
# if not ctx.guild: return await ctx.reply("not supported")
# if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
# vc: wavelink.Player = ctx.voice_client
# if not vc: return await ctx.reply("voice client not found")
# if not ctx.author.voice or not ctx.author.voice.channel == vc.channel:
# return await ctx.reply(f'Join the voice channel with the bot first')
# filters: wavelink.Filters = vc.filters
# filters.tremolo.set(frequency=frequency, depth=depth)
# await vc.set_filters(filters)
# await ctx.reply(embed=filter_embed("ποΈ Filter", "Tremolo", filters.tremolo.payload))
# @commands.hybrid_command(description="")
# async def vibrato(self, ctx: commands.Context, frequency:float=None, depth:float=None):
# if not ctx.guild: return await ctx.reply("not supported")
# if await command_check(ctx, "music", "media"): return await ctx.reply("command disabled", ephemeral=True)
# vc: wavelink.Player = ctx.voice_client
# if not vc: return await ctx.reply("voice client not found")
# if not ctx.author.voice or not ctx.author.voice.channel == vc.channel:
# return await ctx.reply(f'Join the voice channel with the bot first')
# filters: wavelink.Filters = vc.filters
# filters.vibrato.set(frequency=frequency, depth=depth)
# await vc.set_filters(filters)
# await ctx.reply(embed=filter_embed("ποΈ Filter", "Vibrato", filters.vibrato.payload))
async def setup(bot: commands.Bot):
await bot.add_cog(YouTubePlayer(bot))