@vidtreo/recorder-wc 0.9.4 → 0.9.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -0
- package/dist/vidtreo-recorder.js +442 -91
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -62,6 +62,16 @@ All attributes are optional except where noted. Attributes use kebab-case (e.g.,
|
|
|
62
62
|
| `enable-device-change` | `boolean` | No | `true` | Enable camera/microphone selection. Set to `"false"` to disable. |
|
|
63
63
|
| `lang` | `string` | No | `"en"` | Language code for UI text (`"en"` or `"es"`) |
|
|
64
64
|
| `texts` | `string` (JSON) | No | - | Custom text overrides for localization. Must be valid JSON string. |
|
|
65
|
+
| `watermark` | `string` (JSON) | No | - | Watermark configuration. Must be valid JSON string. |
|
|
66
|
+
|
|
67
|
+
**Watermark JSON Structure:**
|
|
68
|
+
```json
|
|
69
|
+
{
|
|
70
|
+
"url": "https://example.com/logo.png",
|
|
71
|
+
"position": "bottom-right",
|
|
72
|
+
"opacity": 0.5
|
|
73
|
+
}
|
|
74
|
+
```
|
|
65
75
|
|
|
66
76
|
**Note:** Boolean attributes are enabled by default. To disable them, set the attribute value to `"false"` (string).
|
|
67
77
|
|