Title.BitRate Property

The Title.BitRate property returns a Long value specifying the title's bit rate in bits per second.

Syntax

Title.BitRate

Example

The following Visual Basic code outputs the bit rate for each title in the collection.

MediaServer1.SetServer ("NYCServer8")
Dim title as IMSrvTitle
For Each title In MediaServer1.Titles("*.vod")
   MsgBox title.Name & “: “ & title.BitRate
Next

See Also

MaxBandwidth, MaxTitleBitRate, MinTitleBitRate

© 1996-1998 Microsoft Corporation. All rights reserved.