Viscom Software Screen2Video ActiveX Control

MP4Comment Property 

Description:   

Set the Comment metadata when output MP4 file.

Usage:   

Screen2Video1.MP4Comment[= value]

 

Data Type:   

String

Example:   

This Visual Basic example 

Private Sub Capture_Click()      
    Screen2Video1.OutputType=10
    Screen2Video1.MP4AudioBitrate = 224000
    Screen2Video1.MP4AudioChannels = 2
    Screen2Video1.MP4AudioSampleRate = 48000
    Screen2Video1.MP4Framerate = 25
    Screen2Video1.MP4Height = 720
    Screen2Video1.MP4Width = 1280
    Screen2Video1.MP4VideoBitrate = 4600000
    Screen2Video1.MP4Title = "My Title"
    Screen2Video1.MP4Author = "My Author"
    Screen2Video1.MP4Comment = "My Comment"
    Screen2Video1.MP4Album = "My Album"
    Screen2Video1.FileName="c:\test.mp4"
    Screen2Video1.Start

End Sub