Resource icon

Scene Tree Folder plugin for OBS Studio 0.1.5

SCHIROKY

New Member
I do not get a remove context menu in the corresponding dock to remove a folder I have created previously.
Any hint how to remove a folder?
 

Garlandt

New Member
I do not get a remove context menu in the corresponding dock to remove a folder I have created previously.
Any hint how to remove a folder?
You are not the first one to point this out and sadly, I believe, the original developer abandoned the project. It is because of this issue, that I had to revert back to the original scene dock.
 
Is there a chance we'll see a mac port?

A quick search of those questions in this thread, I count four people asking the same thing, including you.

Given the lack of updates for even the Windows version, I would venture a guess that the answer would very likely be "Unlikely".

Hope this helps.

--Katt. =^.^=
 

Alva

New Member
I really enjoyed this PlugIn, but it disappears by updating OBS to 32. Beta1.
Hope it will be updated or it will appears again at a later Beta Update :(
 
look the link above your post. The StreamUp Plugin have it too

It looks to be a viable replacement, but BE ADVISED: The formats are different! I am in the process of porting this to the StreamUP way of doing things, but I'm doing it manually. The format's pretty easy to understand in both cases, but it's pretty tedious to convert. I don't know if anyone's actually taken the time to create a converter, though I can write something at least to describe the formats of both. That said, Andi's markup for the format is much cleaner than Tree View's is.

--Katt. =^.^=
 

RK87

New Member
I've converted my Scene Tree to Scene Organiser format - thanks AI

My Scene Organiser config do not persist when changing "Scene Collections" in OBS.

Am I missing something obvious?
 

KinGr8

New Member
yes this is an awesome plugin and same updated to the OBS 32 and no longer works, I attempted to try with the StreamUP but scene_tree_view is no longer listed on there. There does not appear to be an alternate out there. So be good to have this up and working again on OBS version 32.

UPDATE: it appears to be called scene organiser in StreamUP will give that a try....
 

KinGr8

New Member
yes this is an awesome plugin and same updated to the OBS 32 and no longer works, I attempted to try with the StreamUP but scene_tree_view is no longer listed on there. There does not appear to be an alternate out there. So be good to have this up and working again on OBS version 32.

UPDATE: it appears to be called scene organiser in StreamUP will give that a try....
FURTHER UPDATE: Well that did not amount to anything either, the StreamUP plugin installer does not have this listed either, it does have the scene_tree_view listed but this is the same version that is not working
 

KinGr8

New Member
FURTHER UPDATE: Well that did not amount to anything either, the StreamUP plugin installer does not have this listed either, it does have the scene_tree_view listed but this is the same version that is not working
Aha Found it it is already in there go to Stream UP settings and then Scene Organiser and then you have to toggle it ON.
 

RK87

New Member
Sorry for the misunderstanding. I only meant I used AI to convert Scene Tree json format to Scene Organiser json format.

The issue I'm having is related to switching between different OBS "Scene Collection" - the Scene Organiser config does not persist when changing to a different OBS Scene Collection.

Scene Organiser manages OBS "Scene Collection" scene configs differently.


Scene Tree json format
JSON:
{
    "Testing": [
        {
            "folder": [
                {
                    "name": "Scene 3"
                }
            ],
            "is_expanded": true,
            "name": "FOLDER_01"
        },
        {
            "folder": [
                {
                    "name": "Scene 1"
                },
                {
                    "name": "Scene 2"
                }
            ],
            "is_expanded": true,
            "name": "FOLDER_02"
        }
    ],
    "Testing 2": [
        {
            "folder": [
                {
                    "name": "Scene 3"
                }
            ],
            "is_expanded": true,
            "name": "FOLDER_01"
        },
        {
            "folder": [
                {
                    "name": "Scene 1"
                },
                {
                    "name": "Scene 2"
                }
            ],
            "is_expanded": true,
            "name": "FOLDER_02"
        }
    ],
}

Converted to Scene Organiser json format - unable to list multiple Scene Collections
JSON:
{
    "Testing": [
        {
            "name": "FOLDER_01",
            "type": "folder",
            "expanded": true,
            "children": [
                {
                    "name": "Scene 3",
                    "type": "scene"
                }
            ]
        },
        {
            "name": "FOLDER_02",
            "type": "folder",
            "expanded": true,
            "children": [
                {
                    "name": "Scene 1",
                    "type": "scene"
                },
                {
                    "name": "Scene 2",
                    "type": "scene"
                }
            ]
        }
    ]
}
 
Last edited:
I've converted my Scene Tree to Scene Organiser format - thanks AI

What did you actual use to make this work? I did an entire job of doing this by hand, but I tend to rely on double-checking the JSON formatting both by eye and with the plugins available for Notepad++ (to verify parsing the JSON) as well as OBS Studio (to verify actual operation of the JSON).

My Scene Organiser config do not persist when changing "Scene Collections" in OBS.

Am I missing something obvious?

I can confirm this one here. Before testing this, I backed up the config file in case something happened to it. I can confirm that there is a problem with losing the configuration when you change scene collections. Though to be fair, I did not use the plugin to actually manage my folder setup; I hand-converted my Tree View config.

Since I backed up the config, I restored the affected file and it's fine.

That said, paging @Andilippi!

--Katt. =^.^=
 

RK87

New Member
Thanks for confirming @KattPhloxworthy.

I have more details in a post that is pending mod approval.

As for converting the config, I used chatGPT. I included an upload of my old config and an example of the new config format.

```chatGPT Prompt
I would like you to convert my OBS scene tree json config file to a new scene organiser json config format.

OLD config: "scene_tree.json"
NEW config: "scene_tree_normal.json"

Do you understand?
Make sure you are 100% confident you have correctly converted the old config to the new config format.
```

'scene_tree_normal.json' is a test use case I create to capture the new json format.
JSON:
{
    "testing": [
        {
            "name": "Folder_01",
            "type": "folder",
            "expanded": true,
            "children": [
                {
                    "name": "SubFolder_01",
                    "type": "folder",
                    "expanded": true,
                    "children": [
                        {
                            "name": "scene_sf1_01",
                            "type": "scene"
                        }
                    ]
                },
                {
                    "name": "scene_f1_01",
                    "type": "scene"
                },
                {
                    "name": "scene_f1_02",
                    "type": "scene"
                }
            ]
        },
        {
            "name": "Folder_02",
            "type": "folder",
            "expanded": true,
            "children": [
                {
                    "name": "scene_f2_01",
                    "type": "scene"
                }
            ]
        }
    ]
}
 
Top