ai didi

python - "fmpeg"没有属性 "input"

转载 作者:行者123 更新时间:2023-12-02 18:03:20 24 4
gpt4 key购买 nike

我以前构建过这个 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)

所以它给出了一个错误提示:

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'

我不明白发生了什么事。我觉得可能跟ffmpeg的版本什么的有关系??

最佳答案

尝试:
pip install ffmpeg-python

代替:
pip install ffmpeg

看起来像你的 problem

关于python - "fmpeg"没有属性 "input",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73842876/

24 4 0
文章推荐: regex - 是否有 "match the following in any order"或 "match any permutation"的正则表达式?
文章推荐: docker - 使用 Docker 访问主机中存在的文件结构
文章推荐: macos - Docker Pull - 未能注册层 : Error processing tar file(exit status 1): unexpected EOF
文章推荐: pdf - 四开本中每章的单独引用书目(PDF 输出)
行者123
个人简介

我是一名优秀的程序员,十分优秀!

滴滴打车优惠券免费领取
滴滴打车优惠券
全站热门文章
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com