Topics
All
MacOS
(Only)
Windows
(Only)
Linux
(Only, Not)
iOS
(Only, Not)
Components
Crossplatform Mac & Win
Server
Client
Old
Deprecated
Guides
Examples
Videos
New in version:
10.1
10.2
10.3
10.4
10.5
11.0
11.1
11.2
11.3
11.4
Statistic
FMM
Blog
Shows property dialog.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
AVRecorder | 9.1 | ❌ No | ✅ Yes | ❌ No | ❌ No | ❌ No |
Parameter | Description | Example | Flags |
---|---|---|---|
AVSession | The ID for the AVRecorder session as returned by AVRecorder.Init. | $AVSession | |
Object | Which object to ask for the dialog. Can be audioDevice, videodevice, encoder, VideoStreamConfig, AudioStreamConfig. |
"audioDevice" | |
WindowRef | Parent window for dialog. Window Reference is the unique OS level window ID. You can obtain this by using the Window.FindByTitle or Window.FindByIndex functions. Pass zero to access the frontmost window. |
0 | Optional |
X | X position relative to parent window. | Optional | |
Y | Y position relative to parent window. | Optional |
Returns OK or error.
Show audio properties dialog:
MBS( "AVRecorder.ShowPropertyDialog"; AVRecorder::Session; "audioDevice" )
Show video properties dialog:
MBS( "AVRecorder.ShowPropertyDialog"; AVRecorder::Session; "videoDevice" )
Show video stream property dialog:
MBS( "AVRecorder.ShowPropertyDialog"; AVRecorder::Session; "VideoStreamConfig")
Show encoder options:
MBS( "AVRecorder.ShowPropertyDialog"; AVRecorder::Session; "Encoder")
Created 24th February 2019, last changed 24th February 2019
AVRecorder.SetVideoMirrored - AVRecorder.StartPreview
Feedback: Report problem or ask question.