LibGDX Non GUI Application

I have a requirement such that I wish to render animation frames but I don’t want any UI to be shown. Currently I am using LibGDX and it shows the LWJGL Application Window when we run it.

I just want to render frames silently and save the frames to the file system.
How to accomplish that?

I’ve a opened a discussion over LibGDX Forum, you can see for your reference:-
http://www.badlogicgames.com/forum/viewtopic.php?f=11&t=22930

However no success from it!
Is there any other library that does that or how to do the same with LibGDX?

This is probably the wrong way to solve this, but couldn’t you just move the frame off the screen so the user cant see it?

I dont know which backend you are using but Lwjgl3ApplicationConfiguration has a #setInitialVisible(boolean) setter.

-ClaasJG