Windows Media : Seeking to Markers

DescriptionGoal: To seek to markers within an ASF file in both Microsoft Internet Explorer and Netscape Navigator. The Active Streaming File (ASF) format has marker functionality built-in. Markers a

ITPro Today

February 18, 2002

1 Min Read
ITPro Today logo

DescriptionGoal: To seek to markers within an ASF file in both Microsoft Internet Explorer and Netscape Navigator. The Active Streaming File (ASF) format has marker functionality built-in. Markers are points inside a piece of content that users can skip to, similar to a bookmark. By adding markers (using the ASFIndexer program, which is part of the Windows Media tool package), content authors can direct users to places within any given piece of content. Markers are like tracks on an audio CD. A CD player will play all of the tracks in order, but you can skip around to other tracks. The same is true of markers. Code to Include: We'll start with our generic cross-browser code embedding code. This code will instantiate the Media Player ActiveX control for browsers which support ActiveX, and the Media Player plug-in for browsers that don't:Next, we'll define a form and some buttons: In the code above, all of the buttons make calls through JavaScript directly to the Media Player using the Document Object Model(DOM). They call the following function: This sample deals with setting the CurrentMarker property and getting the read-only MarkerCount properties. The CurrentMarker property's value is set to a Marker number and the player automatically goes there. The MarkerCount property is used to make sure that the code doesn't create an error in the page. Browser/Platform CompatibilityThis code will work with Internet Explorer 4+, and Netscape Navigator 4+ on platforms that support the Windows Media Player plug-in and ActiveX control.

Complete Article

Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.

You May Also Like