How can I notify user that file (using as source in HTML video tag) is not supported by browser? So I am looking for any event or property that can tell me that file is not valid or not supported by video tag.
<video src="sample.avi"></video>
Scenario:
- User uploads some file into the system.
- System shows just uploaded file as a preview.
Goal: Display message that selected video file can't be previewed (is not supported by video tag in this browser).
Thanks