What is the format name for this data?

In short: I would like to know the name of this format!

I would like to know if this is a special generic format or just a simple self-generated config file:

scenes : {
  Scene : {
    class : Scene
    sources : {
      Game Capture : {
        render : 1
        class : GraphicsCapture
        data : {
          window : "[duke3d]: Duke Nukem 3D Atomic Edition 1.4.3 STABLE"
          windowClass : SDL_app
          executable : duke3d.exe
          stretchImage : 0
          alphaBlend : 0
          ignoreAspect : 0
          captureMouse : 1
          invertMouse : 0
          safeHook : 0
          useHotkey : 0
          hotkey : 123
          gamma : 100
        }
        cx : 1920
        cy : 1080
      }
    }
  }
}

      

My background is that I would like to read several files like this one above. And I don't want to implement a whole new parser for that. So I want to drop java libraries that have already implemented this functionality. But, without knowing about such code formats, it is quite difficult to search for these libraries.

//Additional Information

  • This is a configuration file or "scene file" for Open Broadcaster Software.
  • File name extension .xconfig
+3


source to share


2 answers


I got some feedback from the main developer of these files.

As I thought, this is not a form of reference - just a simple configuration file.



solved!

0


source


It appears to be a configuration file or "scene file" for Open Broadcaster Software. When used with OBS, it has a .xconfig extension. Hope this helps. -Yang



+5


source







All Articles