Viscom Software Screen2Video ActiveX Control

SWFVideoBitrate Property

Description:   

Get/Set the video bitrate of swf video. e.g. 128000 is 128 kbps.

Usage:   

Screen2Video1.SWFVideoBitrate[= value]

 

Data Type:   

long

Example:   

This Visual Basic example 

Private Sub Capture_Click()      
        Screen2Video1.OutputType=3
        Screen2Video1.SWFAudioBitrate=96000
        Screen2Video1.SWFVideoBitrate = 3512000
        Screen2Video1.SWFAudioSampleRate = 44100
        Screen2Video1.SWFOutputWidth = 320
        Screen2Video1.SWFOutputHeight = 240
        Screen2Video1.FileName="c:\test.swf"
        Screen2Video1.Start

End Sub