Page 2 of 6 FirstFirst 1234 ... LastLast
Results 11 to 20 of 51

Thread: Article: How to get MulticastPublish AddOn (multicast and unicast streams to UDP and RTSP)

  1. #11

    Default

    Hi Steve,

    The RTPPusher package is very basic and only used as a reference example. You'll have to modify it to your needs.

    One way, is to put the stream info in your Application.xml and read it using client.getAppInstance().getProperties().getPropert yStr() statements.

  2. #12

    Default

    Hi randall,
    ok thanks, i have solved my problem

    stefano

  3. #13
    Join Date
    Oct 2008
    Posts
    126

    Default

    With this AddOn, is it also necessary to do use these steps for starting the stream in Stream Manager? http://www.wowza.com/forums/content....sed-encoder%29 Also, can I specify a port such as udp://0.0.0.0:1234 for the stream that I'd like to pull into Wowza in my mpeg.stream file? Thanks, Derrick F.

  4. #14

    Default

    If the incoming stream is MPEG-TS then yes you will need to use the stream manager or StartupStreams.xml to start the incoming streams. Yes, you should a .stream file.

    Charlie

  5. #15
    Join Date
    Oct 2008
    Posts
    126

    Default

    Great! Thanks Charlie! Derrick F.

  6. Default

    How would I use this to push out a server side created stream?

  7. Default

    Actually, I figured it out so no worries.

  8. #18

    Default

    Are there any Akamai push examples? I have it pushing to my Akamai channel but I keep getting a username/password validation fail. I did uncomment the RTMP authentication section and entered the channel username/password. Am I missing something simple?

  9. #19
    Join Date
    Dec 2007
    Posts
    25,682

    Default

    Another user posted this:

    https://github.com/telvue/WowzaAkamaiPushPlugin

    Richard

  10. #20

    Default

    I had a similar problem with our test Akamai account the other day. Re-download the push publishing add-on and use the most recent .jar file. Then switch your code from:

    Code:
    publisher.setAkamaiUserName(akamaiUsername);
    publisher.setAkamaiPassword(akamaiPassword);
    To this:

    Code:
    PushPublishRTMPAuthProviderAdobe adobeRTMPAuthProvider = new PushPublishRTMPAuthProviderAdobe();
    
    adobeRTMPAuthProvider.init(publisher);
    adobeRTMPAuthProvider.setUserName(akamaiUsername);
    adobeRTMPAuthProvider.setPassword(akamaiPassword);
    publisher.setRTMPAuthProvider(adobeRTMPAuthProvider);

    Charlie

Page 2 of 6 FirstFirst 1234 ... LastLast

Posting Permissions

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