cap.isOpened() is returning false . I am using ubuntu but when I am using the same code in windows, I am able to execute
import numpy as np
import cv2
cap = cv2.VideoCapture('jitender.mp4')
count=0
print(cap.isOpened())
while(cap.isOpened()):
    ret, frame = cap.read()
    gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
    cv2.imshow('frame',gray)
    count=count+1
    print(count)
    if cv2.waitKey(1) & 0xFF == ord('q'):
        break
cap.release()
cv2.destroyAllWindows()
 
    