@@ -718,6 +718,12 @@ export interface OBSEventTypes {
718
718
*/
719
719
outputPath : string ;
720
720
} ;
721
+ RecordFileChanged : {
722
+ /**
723
+ * File name that the output has begun writing to
724
+ */
725
+ newOutputPath : string ;
726
+ } ;
721
727
ReplayBufferStateChanged : {
722
728
/**
723
729
* Whether the output is active
@@ -1020,13 +1026,6 @@ export interface OBSEventTypes {
1020
1026
*/
1021
1027
eventData : JsonObject ;
1022
1028
} ;
1023
-
1024
- RecordFileChanged : {
1025
- /**
1026
- * File name that the output has begun writing to
1027
- */
1028
- newOutputPath : string ;
1029
- } ;
1030
1029
}
1031
1030
1032
1031
// Requests and Responses
@@ -1865,6 +1864,14 @@ export interface OBSRequestTypes {
1865
1864
ToggleRecordPause : never ;
1866
1865
PauseRecord : never ;
1867
1866
ResumeRecord : never ;
1867
+ SplitRecordFile : never ;
1868
+ CreateRecordChapter : {
1869
+ /**
1870
+ * Name of the new chapter
1871
+ * @defaultValue Unknown
1872
+ */
1873
+ chapterName ?: string ;
1874
+ } ;
1868
1875
GetSceneItemList : {
1869
1876
/**
1870
1877
* Name of the scene to get the items of
@@ -2504,15 +2511,6 @@ export interface OBSRequestTypes {
2504
2511
*/
2505
2512
projectorGeometry ?: string ;
2506
2513
} ;
2507
-
2508
- CreateRecordChapter : {
2509
- /**
2510
- * Name of the chapter
2511
- */
2512
- chapterName ?: string ;
2513
- } ;
2514
-
2515
- SplitRecordFile : never ;
2516
2514
}
2517
2515
2518
2516
export interface OBSResponseTypes {
@@ -3017,6 +3015,8 @@ export interface OBSResponseTypes {
3017
3015
ToggleRecordPause : undefined ;
3018
3016
PauseRecord : undefined ;
3019
3017
ResumeRecord : undefined ;
3018
+ SplitRecordFile : undefined ;
3019
+ CreateRecordChapter : undefined ;
3020
3020
GetSceneItemList : {
3021
3021
/**
3022
3022
* Array of scene items in the scene
@@ -3321,6 +3321,4 @@ export interface OBSResponseTypes {
3321
3321
} ;
3322
3322
OpenVideoMixProjector : undefined ;
3323
3323
OpenSourceProjector : undefined ;
3324
- CreateRecordChapter : undefined ;
3325
- SplitRecordFile : undefined ;
3326
3324
}
0 commit comments