Results 1 to 3 of 3

Thread: Wirecast URL

  1. #1

    Default Wirecast URL

    Hi,

    I was trying to use the Wirecast live encoder to test the quality of video.
    I got a problem here.
    In client side, I am using NetConnect below to connect to wowza
    nc.connect(rtmp://192.168.1.11/H264, true, "room_99999");
    I have to pass two parameters (true, "room_99999") to wowza to identify the room.
    It works ok in my flex application, the question is how can I specify these two parameters in Wirecase URL so that I can test? What would be the URL like?
    I have tried like this: rtmp://192.168.1.11/H264?true&room_99999 in Wirecast URL, but it didn't work.
    Last edited by lewyan13; 04-19-2010 at 09:00 PM.

  2. #2
    Join Date
    Dec 2007
    Posts
    25,893

    Default

    You can do something like this in the onConnect:

    Code:
    String[] qs = client.getQueryStr().split("&");
    Boolean bool = (qs[0].equals("true"))?true:false;
    String room = qs[1];
    Richard

  3. #3

    Default

    Hi Richard,

    I did appreciate your instruction. it worked.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •