There is a way to get the video duration, without to have the video tag in the html ?
E.g:
var Video = $('<video></video>')
.append("<source src=video.mp4 type=video/mp4; codecs="+'"avc1.42E01E, mp4a.40.2"'+ "/>")
.append("<source src=video.webm type=video/webm; codecs="+'"vp8, vorbis"'+ "/>");
I want to get the duration from "Video", is it possible?