File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -1020,6 +1020,13 @@ export interface OBSEventTypes {
1020
1020
*/
1021
1021
eventData : JsonObject ;
1022
1022
} ;
1023
+
1024
+ RecordFileChanged : {
1025
+ /**
1026
+ * File name that the output has begun writing to
1027
+ */
1028
+ newOutputPath : string ;
1029
+ } ;
1023
1030
}
1024
1031
1025
1032
// Requests and Responses
@@ -2497,6 +2504,15 @@ export interface OBSRequestTypes {
2497
2504
*/
2498
2505
projectorGeometry ?: string ;
2499
2506
} ;
2507
+
2508
+ CreateRecordChapter : {
2509
+ /**
2510
+ * Name of the chapter
2511
+ */
2512
+ chapterName ?: string ;
2513
+ } ;
2514
+
2515
+ SplitRecordFile : never ;
2500
2516
}
2501
2517
2502
2518
export interface OBSResponseTypes {
@@ -3305,4 +3321,6 @@ export interface OBSResponseTypes {
3305
3321
} ;
3306
3322
OpenVideoMixProjector : undefined ;
3307
3323
OpenSourceProjector : undefined ;
3324
+ CreateRecordChapter : undefined ;
3325
+ SplitRecordFile : undefined ;
3308
3326
}
You can’t perform that action at this time.
0 commit comments