“fmpeg”没有属性“输入”

Rob*_*ngh 5 python ffmpeg pytube

我之前已经构建了这个 YouTube 下载器,但是当我最近测试它时;它停止工作了。

from pytube import YouTube
import ffmpeg
import os

raw = 'C:\ProgramData\ytChache'

path1 = 'C:\ProgramData\ytChache\Video\\'
path2 = 'C:\ProgramData\ytChache\Audio\\'

file_type = "mp4"

if os.path.exists(path1 and path2):
    boo = True
else:
    boo = False

while boo:

    url = str(input("Link : "))
    choice = int(input('Enter 1 for Only Audio and Enter 2 For Both Audio and Video \n: '))

    video = YouTube(url)
    Streams = video.streams

    if choice == 1:
        aud = Streams.filter(only_audio=True).first().download(path2)

    elif choice == 2:
        resol = str(input("Resolution : "))
        vid = Streams.filter(res=resol, file_extension=file_type).first().download(path1)
        aud = Streams.filter(only_audio=True).first().download(path2)

        file = video.title + '.mp4'
        # location = path1
        # location2 = path2
        rem = os.path.join(path1, file)
        rm = os.path.join(path2, file)

        video_stream = ffmpeg.input(path1, video.title + '.mp4')
        audio_stream = ffmpeg.input(path2, video.title + '.mp4')
        ffmpeg.output(audio_stream, video_stream, video.title + '.mp4').run()
        os.remove(rem)
        os.remove(rm)

    else:
        print('Invalid Selection')

if not boo:
    os.mkdir(raw)
    os.mkdir(path1)
    os.mkdir(path2)
Run Code Online (Sandbox Code Playgroud)

所以它给出了一个错误:

Traceback (most recent call last):
  File "E:\dev files\YouTube Video Downloader\Video Downloader.py", line 39, in <module>
    video_stream = ffmpeg.input(path1 + video.title + '.mp4')
AttributeError: module 'ffmpeg' has no attribute 'input'
Run Code Online (Sandbox Code Playgroud)

我不明白发生了什么事。我认为这可能与 ffmpeg 的版本有关或有什么关系?

小智 14

尝试:
pip install ffmpeg-python

代替:
pip install ffmpeg

看起来像你的问题