Youtubedl键错误:“条目”

2024-04-24 23:47:31 发布

您现在位置:Python中文网/ 问答频道 /正文

当“+dl”时,我尝试使用discord.py获取一些视频信息https://youtube......“执行时,程序将在mp3中下载youtube链接并发送:视频名称、持续时间和id,但执行过程中出现错误:


    ydl_opts = {
    'outtmpl': './SomethingMore/dl.mp3',
    'format': 'bestaudio/best',
    'noplaylist': True,
    'default_search' : 'ytsearch',
    'postprocessors': [{
    'key': 'FFmpegExtractAudio',
    'preferredcodec': 'mp3',
    'preferredquality': '192',
    }]}

    Link = ctx.message.content
    Link = Link.strip('+dl ')

    with youtube_dl.YoutubeDL(ydl_opts) as ydl:

        playlist_dict = ydl.extract_info(Link, download=False)
        
        for video in playlist_dict['entries']:
                 
            if not video:
                print('ERROR: Unable to get info. Continuing...')
                continue
 
            video_title = video.get("title")
            video_duration = video.get("duration")
            video_id = video.get("id")
            

        await ctx.channel.send('Download of '+ video_title +' is starting, please wait a minute')

        try:
            ydl.download([Link])
            await ctx.channel.send('Download ended')

以下是错误:

Ignoring exception in command dl:
Traceback (most recent call last):
  File "C:\Users\Zarcross\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\LocalCache\local-packages\Python38\site-packages\discord\ext\commands\core.py", line 85, in wrapped
    ret = await coro(*args, **kwargs)
  File "h:\Users\Zarcross\Desktop\Discord\main.py", line 267, in dl
    for video in playlist_dict['entries']:
KeyError: 'entries'

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "C:\Users\Zarcross\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\LocalCache\local-packages\Python38\site-packages\discord\ext\commands\bot.py", line 903, in invoke
    await ctx.command.invoke(ctx)
  File "C:\Users\Zarcross\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\LocalCache\local-packages\Python38\site-packages\discord\ext\commands\core.py", line 859, in invoke
    await injected(*ctx.args, **ctx.kwargs)
  File "C:\Users\Zarcross\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\LocalCache\local-packages\Python38\site-packages\discord\ext\commands\core.py", line 94, in wrapped
    raise CommandInvokeError(exc) from exc
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: KeyError: 'entries'

Tags: inpypackagesvideolinkawaitusersext
1条回答
网友
1楼 · 发布于 2024-04-24 23:47:31

显然,您的playlist_dict没有键'entries'

很难说为什么。尝试检查playlist_dict中还有什么

除此之外,将阻塞(youtube-dl)和异步(ctx.channel.send())代码混合在一起是一种糟糕的做法

考虑从一个单独的线程(^ {< CD6>})

调度阻塞调用

UPD:据我所知,现在YoutubeDL.extract_info()只返回dict的列表,所以您可以删除['entries']部分,然后在返回的列表上迭代

In [73]: import youtube_dl as ydl

In [74]: with ydl.YoutubeDL() as ydl:
    ...:     ydl.extract_info??
    ...:
Signature:
ydl.extract_info(
    url,
    download=True,
    ie_key=None,
    extra_info={},
    process=True,
    force_generic_extractor=False,
)
Source:
    def extract_info(self, url, download=True, ie_key=None, extra_info={},
                     process=True, force_generic_extractor=False):
        '''
        Returns a list with a dictionary for each video we find.
        If 'download', also downloads the videos.
        extra_info is a dict containing the extra values to add to each result
        '''

        if not ie_key and force_generic_extractor:
            ie_key = 'Generic'

        if ie_key:
            ies = [self.get_info_extractor(ie_key)]
        else:
            ies = self._ies

        for ie in ies:
            if not ie.suitable(url):
                continue

            ie = self.get_info_extractor(ie.ie_key())
            if not ie.working():
                self.report_warning('The program functionality for this site has been marked as broken, '
                                    'and will probably not work.')

            return self.__extract_info(url, ie, download, extra_info, process)
        else:
            self.report_error('no suitable InfoExtractor for URL %s' % url)
File:      ~/.local/lib/python3.9/site-packages/youtube_dl/YoutubeDL.py
Type:      method

相关问题 更多 >