-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathyoutube.py
41 lines (34 loc) · 1.32 KB
/
youtube.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
import yt_dlp as youtube_dl
import discord
youtube_dl.utils.bug_reports_message = lambda: ''
ytdl_format_options = {
'format': 'bestaudio/best',
'restrictfilenames': True,
'noplaylist': True,
'nocheckcertificate': True,
'ignoreerrors': False,
'logtostderr': False,
'quiet': True,
'no_warnings': True,
'default_search': 'auto',
'source_address': '0.0.0.0'
}
ffmpeg_options = {
'before_options': '-reconnect 1 -reconnect_streamed 1 -reconnect_delay_max 5', 'options': '-vn'
}
ytdl = youtube_dl.YoutubeDL(ytdl_format_options)
class Yt(discord.PCMVolumeTransformer):
def __init__(self, source, *, data, volume=0.5):
super().__init__(source, volume=0.5)
self.data = data
self.title = data.get('title')
self.url = data.get('url')
self.duration = data.get('duration')
@classmethod
async def from_url(cls, url, *, loop=None, stream=True):
data = await loop.run_in_executor(None, lambda: ytdl.extract_info(url, download=stream))
if 'entries' in data:
# take first item from a playlist
data = data['entries'][0]
filename = data['url'] if stream else ytdl.prepare_filename(data)
return cls(discord.FFmpegPCMAudio(filename, **ffmpeg_options), data=data)