How I can disable automatic creation of room in Red5?
Thanks, Cyril
It should be as simple as overriding roomStart() in your application adapter class and returning false.
@Override public boolean roomStart(IScope room) { return false; }