Index
- Kind of Editions
- Pricing
- Install JDK on terminal
- Install Wowza Media Server
- Wowza Server Starts and Stops
- Example Test
- Do Broadcasting using tools
- Traffic Test Example
Wowza Media Server 3.5 Editions
- Trial
: 30 day limits, watermark
- Monthly($55) & Daily($5)
: the use of an unlimited number of server instances
- Perpetual($995)
: requires separate license keys for each server. each AddOn feature is
licensed separately. Wowza nDVR AddOn and Wowza DRM AddOn licenses
provide unlimited connection capacity per instance. Each Wowza Transcoder
AddOn license is limited to oneincoming channel (stream) and an unlimited
number of outbound streams per the Wowza Media Server 3.5 Perpetual
Edition license. Multiple Wowza Transcoder AddOn licenses can be stacked on
a single Wowza Media Server 3.5 Perpetual Edition license for additional
channel capacity.
Wowza Media Server 3.5 Editions
- Developement
: 180 days of use, limited to ten concurrent connections, two (2) inbound and
ten (10) total combined concurrent inbound and outbound streams
Pricing is
http://www.wowza.com/pricing
Install JDK
1.http://www.oracle.
com/technetwork/java/javase/downloads/index.html
2. $ tar xzf jdk-7u110linux-x64.gz
3. # cd /usr/local/ than mv (unzipped path) .
4.
# cd /etc/
# vim enviroment
PATH=”/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:
/bin:/usr/games:/usr/local/jdk1.7.0_11/bin”
JAVA_HOME=”/usr/local/jdk1.7.0_11”
Install Wowza Media Server
0. http://www.wowza.com than Download and license key
Using /usr/local/WowzaMediaServer/examples
than do .html
Set up live streaming(Broadcaster)
Using Telestream wirecast encoder.
Sign Up and Download to
http://www.telestream.net/wirecast/overview.htm
than
Add Video Shot >> Broadcast >> ...
Set up live streaming(Broadcastee)
/local/usr/WowzaMediaServer/examples/VideoOnDemandS
treaming/ than do .html
- rtmp://61.43.139.62/live
- mystream
or
http://osmf.org/configurator/fmp/#
input VideoSource
rtmp://61.43.139.62/live/myStream
than change live in advance tab.
How to traffic test?
use rtmpdump and python code.
rtmpdump >> http://linux.die.net/man/1/rtmpdump
from multiprocessing import Process, Lock
import os
def f(l,i):
# l.acquire()
os.popen('rtmpdump -r rtmp://61.43.139.62/live/myStream -o ' + 'iku'\
+ str(i) + '.flv' + ' -B 60').read() # -B 60 means that it creates 60 mins .flv file
# l.release()
if __name__ == '__main__':
lock = Lock()
for num in range(100): # the number of file
Process(target=f, args=(lock, num)).start()
How to traffic test? (2)
1. Monitoring tool JConsole
2. 8086 port
- drive live stream
http://61.43.139.62:8086/streammanager
- serverinfo: running time, connection status ..
http://61.43.139.62:8086/serverinfo
- connection info
http://61.43.139.62:8086/connectioninfo