Search code examples
red5

Red5. Disable automatic creation of room


How I can disable automatic creation of room in Red5?

Thanks, Cyril


Solution

  • It should be as simple as overriding roomStart() in your application adapter class and returning false.

    @Override
    public boolean roomStart(IScope room) {
        return false;
    }