You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10
Original file line number
Diff line number
Diff line change
@@ -75,6 +75,11 @@ const Config = {
75
75
followNewTab:true,
76
76
fps:25,
77
77
ffmpeg_Path:'<path of ffmpeg_path>'||null,
78
+
videoFrame: {
79
+
width:1024,
80
+
height:768,
81
+
},
82
+
aspectRatio:'4:3',
78
83
};
79
84
```
80
85
@@ -84,6 +89,11 @@ const Config = {
84
89
85
90
> -**ffmpeg_Path**: String value pointing to the installation of [FFMPEG](https://ffmpeg.org/). Default is null (Automatically install the FFMPEG and use it).
86
91
92
+
> -**videoFrame**: An object which is to specify the width and height of the capturing video frame. Default to browser viewport size.
93
+
94
+
> -**aspectRatio**: Specify the apsect ratio of the video. Default value is `4:3`.
0 commit comments