Save the list of recorders with Unity Recorder

Hello,
I’ve been trying to save the list of recorders under recorder unity as an asset by a script for a while to be able to retrieve it afterwards on the inspector. But I still haven’t found a way, has anyone ever had to do with this?

thank you

This is not possible via scripting.
It would look something like this but you can’t access m_ControllerSettings because it’s private.

var recorderWindow = (RecorderWindow)UnityEditor.EditorWindow.GetWindow(typeof(RecorderWindow), false, "Recorder", false);
RecorderControllerSettingsPreset.SaveAtPath(recorderWindow.m_ControllerSettings);