MovieTexture.duration

var duration : float

Description

The time, in seconds, that the movie takes to play back completely.

JavaScript
var mov: MovieTexture;
var gui: GUIText;

function Start() {
gui.text = mov.duration.ToString();
}