发新话题
打印

客户端重启FMS的方法

客户端重启FMS的方法

除了在FMS控制台重启FMS,还可以在客户端重启,方法如下:
  • admin_nc = new NetConnection();
  • admin_nc.connect('rtmp://IP:1111/admin','user','passwd');
  • //restart the server
  • admin_nc.call('stopServer', new stopServer());
  • admin_nc.call('startServer', new startServer());

TOP

发新话题