I'm new to python and as part of my project I need to find the fps of any video file.
Below is the code that I have so far that doesn't work.
filen = input(' Please enter the exact file name of the video, eg: video.mp4 ')
filename = ('"'+filen+'"')
print(filename)
clip = VideoFileClip(filename)
rate = clip.fps
print("FPS : " + str(rate))