Skip to content

Commit 53c1a6b

Browse files
add: v5.5 features: SplitRecordFile, CreateRecordChapter, and RecordFileChanged
1 parent ebda0e7 commit 53c1a6b

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/types.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1020,6 +1020,13 @@ export interface OBSEventTypes {
10201020
*/
10211021
eventData: JsonObject;
10221022
};
1023+
1024+
RecordFileChanged: {
1025+
/**
1026+
* File name that the output has begun writing to
1027+
*/
1028+
newOutputPath: string;
1029+
};
10231030
}
10241031

10251032
// Requests and Responses
@@ -2497,6 +2504,15 @@ export interface OBSRequestTypes {
24972504
*/
24982505
projectorGeometry?: string;
24992506
};
2507+
2508+
CreateRecordChapter: {
2509+
/**
2510+
* Name of the chapter
2511+
*/
2512+
chapterName?: string;
2513+
};
2514+
2515+
SplitRecordFile: never;
25002516
}
25012517

25022518
export interface OBSResponseTypes {
@@ -3305,4 +3321,6 @@ export interface OBSResponseTypes {
33053321
};
33063322
OpenVideoMixProjector: undefined;
33073323
OpenSourceProjector: undefined;
3324+
CreateRecordChapter: undefined;
3325+
SplitRecordFile: undefined;
33083326
}

0 commit comments

Comments
 (0)