web-dev-qa-db-ja.com

KeyError: 'url_encoded_fmt_stream_map'

YouTubeからプレイリスト全体をダウンロードできるコードを作成しようとしています。一部のプレイリストでは機能しましたが、一部のプレイリストでは機能しませんでした。以下のコードで示したプレイリストの1つ。また、このコードに機能を追加してください。プレイリストをダウンロードするためのコードがすでにある場合は、リンクを私と共有してください

`

from bs4 import BeautifulSoup
from pytube import YouTube
import urllib.request
import time
import os


## list of link parsed by bs4
s = []


## to name and save the playlist folder and download path respectively 
directory = 'Hacker101'
savePath = "G:/Download/video/"
path = os.path.join(savePath, directory)


## link parser
past_link_here = "https://www.youtube.com/playlist?list=PLxhvVyxYRviZd1oEA9nmnilY3PhVrt4nj"
html_page = urllib.request.urlopen(past_link_here)
x = html_page.read()
soup = BeautifulSoup(x, 'html.parser')
for link in soup.findAll('a'):
    k = link.get('href')
    if 'watch' in k:
        s.append(k)
    else:
        pass


## to create playlist folder
def create_project_dir(x):
    if not os.path.exists(x):
        print('Creating directory ' + x)
        os.makedirs(x)
create_project_dir(path)


## downloading videos by using links from list s = []
for x in set(s):
    link="https://www.youtube.com" + x
    yt = YouTube(link)
    k = yt.title
    file_path = path + '\\' + k + '.mp4'
    try:
        if os.path.exists(file_path):
            print(k + ' is \n' + "already downloaded")
        else:
            j = yt.streams.filter(progressive=True).all()
            l = yt.streams.first()
            print(k + ' is downloading....')
            l.download(path)
            time.sleep(1)
            print('downloading compleat')

##    except Exception:
##        print('error')

    except KeyError as e:
        print('KeyError') % str(e)

`

enter image description here

5
stackdotpop

新しいバージョンのpytubeのリリース前にこの質問をしましたが、この問題はpytube3で解決されており、pip cmdを使用してインストールするだけで済みますpip install pytube3

1
stackdotpop

親切にこのドキュメントをチェックしてください pytube iveはメソッドを使用し、実際に機能しました。最初のステップは基本的にpytubeライブラリをアップグレードすることです:pip3 install pytube3 --upgrade次にコードをロードします...通常のYouTubeビデオのダウンロードの場合:

from pytube import YouTube
url = input("Paste the URL here -->>")
yt = YouTube(url)
YouTube(url).streams[0].download()

プレイリスト全体

from pytube import Playlist

url = input("Paste the URL here -->>")
playlist = Playlist(url)
for my_videos in playlist:
     my_videos.streams.get_highest_resolution().download()

楽しいものをクールに作る!!!

0
Jay R