Viscom Software Screen2Video ActiveX Control

SWFAudioBitrate Property

Description:   

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

Usage:   

Screen2Video1.SWFAudioBitrate[= value]

 

Data Type:   

long

Example:   

This Visual Basic example 

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

End Sub