1

我正在学习 PYQT5,所以这是我的第一次尝试。为了学习 PYQT5,我开始用 pyqt5 和 pytube 制作一个 youtube 视频下载器,但我无法处理进度条部分(播放列表)。当我运行代码时,它给出了AttributeError: 'mywindow' object has no attribute 'video'

你能给我建议吗?

from PyQt5 import QtWidgets

from pytube import YouTube, Playlist

from mydesign import Ui_MainWindow  # importing our generated file

import sys

class mywindow(QtWidgets.QMainWindow):

    def __init__(self):

        super(mywindow, self).__init__()

        self.ui = Ui_MainWindow()

        self.ui.setupUi(self)
        self.ui.action_IKI.setShortcut("Ctrl+Q")
        self.ui.pushButton.clicked.connect(self.click)
        self.ui.action_IKI.triggered.connect(self.quit)


    def quit(self):
        QtWidgets.QApplication.quit()



    def click(self):
        self.completed = 0
        if self.ui.comboBox.currentIndex() == 0:
            while self.completed < 100:
                self.completed += 0.0001
                self.ui.progressBar_2.setValue(self.completed)
        elif self.ui.comboBox.currentIndex() == 1:
            link = self.ui.lineEdit.text()
            yt = YouTube(link, on_progress_callback=self.progress_func)
            video = yt.streams.filter(progressive=True, file_extension='mp4').first()
            video.download()


        elif self.ui.comboBox.currentIndex() == 2:
            pass

        elif self.ui.comboBox.currentIndex() == 3:
            pl = Playlist(self.ui.lineEdit.text())
            pl.populate_video_urls()
            for i in pl.video_urls:
                yt = YouTube(i, on_progress_callback=self.progress_func)
                video = yt.streams.filter(progressive=True, file_extension="mp4").first()
                video.download()

    def progress_func(self, stream, chunk, file_handle, bytes_remaining):
        size = self.video.filesize
        self.progress = (float(abs(bytes_remaining-size)/size))*float(100)
        self.ui.progressBar_2.setValue(self.progress)         
4

2 回答 2

1

可能这应该有帮助:

self.video = yt.streams.filter(progressive=True, file_extension='mp4').first()
self.video.download()

有4个地方可以添加self.video

于 2019-01-26T21:06:28.280 回答
0

给你一个例子,它成功了。

yt = YouTube(YouTube_url,on_progress_callback=self.on_progress)
self.video = yt.streams.first()
self.video.download(self.datapath + '/video/', video_id)
def on_progress(self, chunk, file_handler, remaining):
    contentSize = self.video.filesize
    size = contentSize - remaining
    # print('已下载%.2f' % (percent))
    print('\r' + '[Download progress]:[%s%s]%.2f%%' % (
        '█' * int(size * 20 / contentSize), ' ' * (20 - int(size * 20 / contentSize)),
        float(size / contentSize * 100)), end='')

结果:

结果图像

于 2020-07-02T12:55:59.457 回答