Viscom Software VideoCap ActiveX Control

BroadCastPublishingURL Property

Description:   

Connects to a publishing point on a Windows Media server. For example, if the URL is "http://MyServer/MyPublishingPoint", the push sink connects to the publishing point named MyPublishingPoint on the server named MyServer. The default port number is 80. If the server is using a different port, specify the port number in the URL.
For example, "http://MyServer:8080/MyPublishingPoint" specifies port number 8080.

Usage:   

VideoCap1.BroadCastPublishingURL[= value]

Data Type:   

String
 

Example:   

This Visual Basic example :

Private Sub Form_Load()
        VideoCap1.BroadCast = True
        VideoCap1.BroadCastVideoBitrate = 1024 * 512
        VideoCap1.BroadCastAudioBitrate = 1024 * 64
        VideoCap1.BroadCastPortNo = 8080
        VideoCap1.BroadCastQuality = 50
        VideoCap1.BroadCastMaxClients = 10
        VideoCap1.BroadCastKeyFrame = 5
        VideoCap1.BroadCastFrameRate = 15
        VideoCap1.BroadCastCaptureFile = True
        VideoCap1.PublishingURL= "http://MyServer:8080/MyPublishingPoint"
        VideoCap1.Start
End Sub


Value:   

 http://MyServer:8080/MyPublishingPoint