Prepare for another Custom Source

This commit is contained in:
Parker M. 2024-07-18 22:05:29 -05:00
parent ceb2da92d6
commit d4c9ed99d0
No known key found for this signature in database
GPG Key ID: 95CD2E0C7E329F2A
3 changed files with 13 additions and 3 deletions

View File

@ -6,7 +6,7 @@ from cogs.music import Music
import asyncio
from config import BOT_COLOR
from custom_source import LoadError
from custom_sources import LoadError
class Skip(commands.Cog):

View File

@ -5,6 +5,11 @@ class LoadError(Exception): # We'll raise this if we have trouble loading our t
pass
"""
Retrieve the playback URL for a custom track
"""
class CustomAudioTrack(DeferredAudioTrack):
# A DeferredAudioTrack allows us to load metadata now, and a playback URL later.
# This makes the DeferredAudioTrack highly efficient, particularly in cases
@ -36,7 +41,12 @@ class CustomAudioTrack(DeferredAudioTrack):
return base64
class CustomSource(Source):
"""
Custom Source for Spotify links
"""
class SpotifySource(Source):
def __init__(self):
super().__init__(
name="custom"

View File

@ -5,7 +5,7 @@ import datetime
from cogs.music import CheckPlayerError
from config import BOT_COLOR
from custom_source import LoadError
from custom_sources import LoadError
class Tree(app_commands.CommandTree):