StreamUP Product Documentation
The StreamUP Chapter Marker Manager is your all in one solution for creating and tracking chapter markers in your recordings in OBS. Since creating content on multiple platforms is so important nowadays, this will help you keep track of the moments you want to make videos out of.
There are many different ways you can create chapter markers and annotations:
All of these chapter markers can be exported in various ways:
If you have any feedback or requests for this plugin please share them in the [StreamUP Discord server](https://discord.com/invite/RnDKRaVCEu?).
<aside> <img src="/icons/alert_gray.svg" alt="/icons/alert_gray.svg" width="40px" /> Handy Hint:
Everything in this plugin has a tooltip available so just hover your mouse over any button or box and it will give you an explanation as to what it does.
</aside>
To open the dock, in the top left of OBS press ‘Docks’ then you can click both the ‘StreamUP Chapter Marker Manager’ and the ‘StreamUP Chapter Annotations’. This will open the docks.
You can then click and drag the docks to lock them into your specified area in OBS. Or you can just leave them undocked.
<aside> <img src="/icons/alert_gray.svg" alt="/icons/alert_gray.svg" width="40px" /> The StreamUP Chapter Annotations dock will be unusable until you have configured the StreamUP Chapter Marker Manager settings as it requires ‘Export to file’ to be active.
</aside>
<aside> <img src="/icons/exclamation-mark-double_gray.svg" alt="/icons/exclamation-mark-double_gray.svg" width="40px" /> It is important to note the plugin will only work when a recording is active inside of OBS!
</aside>
Please see the settings guide on how to do this.
With the StreamUP Chapter Marker Manager, you can trigger different functions via WebSocket. This means you could get your moderators to add in chapter markers or even have an automated system to add chapter markers if a hype moment happens in your stream. Using the following pieces of code, you will be able to set and get chapter markers as well as setting annotations too.
To do a WebSocket call you will need to use the following template:
{
"requestType":"CallVendorRequest",
"requestData": {
"vendorName":"streamup-chapter-manager",
"requestType":"Replace this in with your request type",
"requestData": {}
}
}
Using this command will return the current name of the chapter that’s active at the moment.
{
"requestType":"CallVendorRequest",
"requestData": {
"vendorName":"streamup-chapter-manager",
"requestType":"getCurrentChapterMarker",
"requestData": null
}
}
{
"requestType": "getCurrentChapterMarker",
"responseData": {
"chapterName": "Active Chapter Name",
"success": true
},
"vendorName": "streamup-chapter-manager"
}
{
"requestType": "getCurrentChapterMarker",
"responseData": {
"chapterName": "Recording is not active",
"success": false
},
"vendorName": "streamup-chapter-manager"
}
Using this command will create a new chapter marker with the information provided
You can set the new chapter name and also the chapter source. This can be handy if you want triggers to be more specific such as providing the moderators name who created the marker.
The requestData is not mandatory. If you don’t fill it with “chapterName” or “chapterSource” then it will provide defaults.
<aside> <img src="/icons/alert_gray.svg" alt="/icons/alert_gray.svg" width="40px" /> Defaults:
chapterName = Your default chapter name set in the settings menu
chapterSource = “WebSocket”
</aside>
{
"requestType":"CallVendorRequest",
"requestData": {
"vendorName":"streamup-chapter-manager",
"requestType":"setChapterMarker",
"requestData": {
"chapterName": "Insert Chapter Name Here",
"chapterSource": "Insert Chapter Source Here"
}
}
}
{
"requestType": "setChapterMarker",
"responseData": {
"message": "Chapter marker added successfully.",
"success": true
},
"vendorName": "streamup-chapter-manager"
}
{
"requestType": "setChapterMarker",
"responseData": {
"message": "ChapterMarkerNotAdded",
"success": false
},
"vendorName": "streamup-chapter-manager"
}
Using this command will create a new annotation with the information provided
You can set a new annotation to add more context to your chapters
Parts of requestData are mandatory. If you don’t fill it with “annotationText” it will return an error. However annotationSource will provide a default.
<aside> <img src="/icons/alert_gray.svg" alt="/icons/alert_gray.svg" width="40px" /> Defaults:
</aside>
{
"requestType": "CallVendorRequest",
"requestData": {
"vendorName": "streamup-chapter-manager",
"requestType": "setAnnotation",
"requestData": {
"annotationText": "Insert All Your Annotation Text Here",
"annotationSource": "Insert Your Annotation Source Here"
}
}
}
{
"requestType": "setAnnotation",
"responseData": {
"message": "Annotation added successfully.",
"success": true
},
"vendorName": "streamup-chapter-manager"
}
{
"requestType": "setAnnotation",
"responseData": {
"message": "Annotation text is empty. Annotation not added.",
"success": false
},
"vendorName": "streamup-chapter-manager"
}
{
"requestType": "setAnnotation",
"responseData": {
"message": "Recording is not active. Annotation cannot be added.",
"success": false
},
"vendorName": "streamup-chapter-manager"
}