Receieve video from server my connection is estblished and after getting failed

Ney

Member
Hi
i am using Android Plat Form, when i published the video and when i receive from Server video
then my connection is established but after it is getting FAILED so i am not able to live video Broadcast
publish URL-- ws://buckwormvideos.com:8080/test/
subscribe URL- ws://buckwormvideos.com:8080/test/
Please suggest what is the issue....
 

Max

Administrator
Staff member
Hello,

Publishing could fail because the stream name - 'test' - was already in use.
Statistics page can be used to monitor active streams: http://WCS_HOST:8081?action=stat (or, over HTTPS: https://WCS_HOST:8444?action=stat).

Reason of failure can be seen in flashphoner_manager.log
Code:
tail -f /usr/local/FlashphonerWebCallServer/logs/flashphoner_manager.log
E.g.,
Code:
URL:http://localhost:9091/EchoApp/StreamStatusEvent
OBJECT:
{
  "nodeId" : "aWygvZXqbsggO8qCwwHiJQ3EP2zaznsc@192.168.1.5",
  "appKey" : "defaultApp",
  "sessionId" : "/192.168.1.7:21683/192.168.1.5:8080",
  "mediaSessionId" : "4e3d91c0-f9ee-11e7-b759-11f8971fb2a6",
  "name" : "ee70",
  "published" : true,
  "hasVideo" : true,
  "hasAudio" : true,
  "status" : "FAILED",
  "info" : "Stream name is already in use",
  "record" : false,
  "width" : 0,
  "height" : 0,
  "bitrate" : 0,
  "quality" : 0,
  "mediaProvider" : "WebRTC",
  "history" : false,
  "origin" : "http://192.168.1.5:9091"
}
 
Top