Closed malik-787 closed 2 weeks ago
same error happened to me
you have to add headers.user_agent it worked for me
def download_file(url, filename): with open(filename, 'wb') as f:
headers = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36"
}
response = requests.get(url, headers=headers)
f.write(response.content)
[image: Screenshot 2024-10-27 at 06.27.35.png] In the render_engine.py file, in the download_file function
It has been fixed now with the latest merge
Traceback (most recent call last): File "/usr/local/lib/python3.11/dist-packages/moviepy/video/io/ffmpeg_reader.py", line 285, in ffmpeg_parse_infos line = [l for l in lines if keyword in l][index]