Returns a Long value specifying the bit rate of a title, in bits per second.
Syntax
Title.BitRate
Example
The following Visual Basic code generates a list of bit rates for each title in the collection.
MediaServer1.SetServer ("NYCServer8")
Dim title as IMSrvTitle
For Each title In MediaServer1.Titles("*.mpg")
MsgBox(title.Name & “: “ & title.BitRate)
Next
See Also
MaxBandwidth, MaxTitleBitRate, MinTitleBitRate
[Previous][Next]