I am writing a Python script to convert a video (.MP4) into an audio file (.MP3) on a Django server. To achieve this, I am using the Moviepy library but when I run the script, I get the following error:
Internal Server Error: /test/
Traceback (most recent call last):
File "C:\Users\etsho\AppData\Local\Programs\Python\Python38\lib\site-packages\django\core\handlers\exception.py", line 34, in inner
response = get_response(request)
File "C:\Users\etsho\AppData\Local\Programs\Python\Python38\lib\site-packages\django\core\handlers\base.py", line 126, in _get_response
response = self.process_exception_by_middleware(e, request)
File "C:\Users\etsho\AppData\Local\Programs\Python\Python38\lib\site-packages\django\core\handlers\base.py", line 124, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "C:\Users\etsho\AppData\Local\Programs\Python\Python38\lib\site-packages\django\views\decorators\csrf.py", line 54, in wrapped_view
return view_func(*args, **kwargs)
File "C:\shoe\musicsite\main\views.py", line 29, in test
video = VideoFileClip(os.path.join(basePath + ".mp4"))
File "C:\Users\etsho\AppData\Local\Programs\Python\Python38\lib\site-packages\moviepy\video\io\VideoFileClip.py", line 88, in __init__
self.reader = FFMPEG_VideoReader(filename, pix_fmt=pix_fmt,
File "C:\Users\etsho\AppData\Local\Programs\Python\Python38\lib\site-packages\moviepy\video\io\ffmpeg_reader.py", line 34, in __init__
self.fps = infos['video_fps']
KeyError: 'video_fps'
[15/Nov/2019 23:49:43] "POST /test/ HTTP/1.1" 500 80909
There's practically no information about this error or how to solve it that I could find, so any help or insight would be much appreciated.
Here is my Python script (views.py):
import pyodbc, json, pytube
from django.http import HttpResponse
from django.views.decorators.csrf import csrf_exempt
from rest_framework import parsers
import os
from moviepy.editor import *
@csrf_exempt
def test(request):
if request.method == 'POST':
filePath = 'C:\\Users\\etsho\\Music\\'
#retrieve url from app
body_unicode = request.body.decode('utf-8')
body = json.loads(body_unicode)
videoURL = body['url']
print("before download")
#download youtube video
youtube = pytube.YouTube(videoURL)
videoTitle = youtube.title
video = youtube.streams.filter(only_audio=True).first()
freshDownload = video.download(filePath)
print("after download")
basePath, extension = os.path.splitext(freshDownload)
video = VideoFileClip(os.path.join(basePath + ".mp4"))
video.audio.write_audiofile(os.path.join(basePath + ".mp3"))
print("video converted")
return HttpResponse("")