Visual Studio 2010 Windows Media Player DurationString Issue

725 Views Asked by At

All I'm trying to do is get the duration of a song before the player starts and load it into a label.

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

    OpenFileDialog1.ShowDialog()
    Player1.settings.autoStart = False
    Player1.URL = OpenFileDialog1.FileName
    Label2.Text = Player1.currentMedia.name
    Label1.Text = Player1.currentMedia.duration            

End Sub

The name of the track is loaded immediately but the durationString takes 30 secs before it is loaded.

Any ideas why?

Thanks

John

1

There are 1 best solutions below

0
On

After a bit more digging, this code does it

Player1.newMedia(Player1.URL).durationString

Loads the duration before the media has started playing