This guide explains how to customize your video recording page using URL parameters. These features allow you to tailor the recording experience to user needs.
1. Hide UI Elements
| Parameter | Description |
|---|---|
?screen=hidden | Hides the video preview screen |
?qr=hidden | Hides the QR code component |
?camera=hidden | Hides the camera switch button |
?settings=hidden | Hides the settings button |
?timer=hidden | Hides the video recording timer |
To hide multiple elements at once:?hidden=screen,qr,camera,settings,timer
2. Restrict Recording Types
| Parameter | Description |
|---|---|
?fileUpload=false | Disables file upload |
?screenRecord=false | Disables screen recording |
?voiceRecord=false | Disables voice recording |
3. Automate Actions
| Parameter | Description |
|---|---|
?autoConfirm=true | Automatically confirms and proceeds when the recording ends |
4. Auto-Fill Form Fields
| Parameter | Description |
|---|---|
?form_firstName=John | Pre-fills the first name field |
?form_lastName=Doe | Pre-fills the last name field |
?form_email=john@example.com | Pre-fills the email field |
?form_phone=5551234567 | Pre-fills the phone number |
?form_company=Acme%20Inc | Pre-fills the company field |
You can also fill fields without the form_ prefix:
Example: ?firstName=John
5. Usage Examples
Example 1 – Simplified Interface:?hidden=timer,camera,settings
Example 2 – Video Recording Only:?fileUpload=false&screenRecord=false&voiceRecord=false
Example 3 – Pre-Filled Form Fields:?form_firstName=John&form_company=Acme%20Inc
Example 4 – Quick Recording with Auto Confirmation:?autoConfirm=true&hidden=timer
Example 5 – Fully Customized Experience:?hidden=screen,qr,camera,settings,timer&fileUpload=false&screenRecord=false&voiceRecord=false&autoConfirm=true&form_firstName=John&form_company=Acme%20Inc
Technical Notes
- Parameters are case-sensitive:
screen=hiddenworks, whileScreen=hiddenmay not. - Use URL encoding for values with spaces or special characters (
Acme Inc→Acme%20Inc) - Combine parameters using
&. - Use comma-separated values in
hidden=to group multiple elements.