Page 2 of 2 FirstFirst 12
Results 11 to 17 of 17

Thread: Live Streaming

  1. #11

    Default

    Hi Richard,

    I've got this working I was misleading the securetoken between origin and edge and between edge and the player

    No I'd like to implement the Hotlink Denial module, I need to modify the Application.xlm on the edge, rigt?

    Is this the right code?
    IN MODULES
    <Module>
    <Name>Hotlink Denial</Name>
    <Description>Hotlink Denial Module</Description>
    <Class>com.wowza.wms.plugin.collection.module.Modu leHotlinkDenial</Class>
    </Module>

    IN PROPETIES
    <Property>
    <Name>domainLock</Name>
    <Value>127.0.0.1,*mydomain.com</Value>
    </Property>
    <Property>
    <Name>AllowEncoder</Name>
    <Value>FM</Value>
    </Property>

    Thanks.,

  2. #12
    Join Date
    Dec 2007
    Posts
    25,881

    Default

    Yes, that is how it is implemented, following the guide. You also need the jar file from the Wowza collection added to each edge /lib folder, then to restart Wowza. You don't need the AllowEncoder Property, but it won't cause any problem if you do.

    Richard

  3. #13
    Join Date
    Nov 2011
    Posts
    6

    Default

    Dear sirs,

    I've followed your conversation, and i'm planning to use videowhisper live stream software in a website.
    do you still use it, or there is another solutions to compare with?

    also if you can recommend a hosting wowza server to compare with http://www.videowhisper.com/?p=Wowza...Server+Hosting, that would be great.

    best regards,

  4. #14

    Default

    videowhisper Hosting - normal, there are a lot better, for example, unlimited transfer, cheaper than listed ..

  5. #15
    Join Date
    Nov 2011
    Posts
    6

    Default

    thanks wowzek, can u please send links for such hosting?
    also, if you know a software like http://www.videowhisper.com/?p=Live+Streaming works with php, please send me links, coz' i can't see and find except video whisper!!

  6. #16
    Join Date
    Dec 2011
    Posts
    1

    Default

    Dear sirs,

    I've followed your conversation, and i'm planning to use videowhisper live stream software in a website.
    do you still use it, or there is another solutions to compare with?

    also if you can recommend a hosting wowza server to compare with http://www.videowhisper.com/?p=Wowza...Server+Hosting, that would be great.
    Here is a live stream hosting provider that supports Wowza, FMS and Red5 media server. You can compare the pricing with Videowhisper
    http://hioxindia.com/shared-wowza-li...am-hosting.php

  7. #17

    Default

    To enable security token in VideoWhisper Live Streaming, you need to configure:
    1. Login script parameters, as explained on http://www.videowhisper.com/?p=PHP+Live+Streaming .

    This is done for php edition by editing settings.php :
    $tokenKey = "VideoWhisper";
    // This can be used to secure access as configured in RTMP server settings (secureTokenSharedSecret).
    It will fill this parameter in login parameters mentioned for php edition page:
    connection settings: server=<?=$rtmp_server?>&serverAMF=<?=$rtmp_amf?>& tokenKey=<?=$tokenKey?>
    &serverProxy=best
    This is to be configured for all applications (broadcaster and players):
    vc_login.php : Video Broadcasting Interface (live_broadcast.swf)
    vs_login.php : Video Watch and Discuss Interface (live_watch.swf)
    vv_login.php : Live Video Interface (live_video.swf)

    2.
    Configure Wowza Media Server rtmp side for VideoWhisper application:
    http://www.videowhisper.com/?p=RTMP+...tions#settings

    Wowza allows enabling some security modes with the MediaSecurity Addon Package.

    Enable Secure Token
    This will allow only connections from applications that support configuring a token key.

    </Modules>
    ...
    <Module>
    <Name>ModuleSecureToken</Name>
    <Description>ModuleSecureToken</Description>
    <Class>com.wowza.wms.plugin.security.ModuleSecureT oken</Class>
    </Module>
    ...
    </Modules>

    <Properties>
    ...
    <Property>
    <Name>secureTokenSharedSecret</Name>
    <Value>VideoWhisper</Value>
    </Property>
    ...
    </Properties>

    Replace VideoWhisper with the token key of choice and update in web application settings.

    RTMP Authentication and Secure Token can be used in combination with secure connections option.

    <Properties>
    ...
    <Property>
    <Name>requireSecureConnection</Name>
    <Value>true</Value>
    <Type>Boolean</Type>
    </Property>
    ...
    </Properties>

Page 2 of 2 FirstFirst 12

Tags for this Thread

Posting Permissions

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