Wowza installation

1,880 views 14 slides Feb 01, 2013
Slide 1
Slide 1 of 14
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6
Slide 7
7
Slide 8
8
Slide 9
9
Slide 10
10
Slide 11
11
Slide 12
12
Slide 13
13
Slide 14
14

About This Presentation

Wowza basic


Slide Content

Wowza Installation
Astin

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

1.$ wget ‘wget ‘http://www.wowza.
com/downloads/WowzaMediaServer-3-5-
0/WowzaMediaServer-3.5.0.deb.bin’

2. $ sudo chmod +x WowzaMediaServer-3.5.0.deb.bin

3.$ cd /usr/local/WowzaMediaServer/bin/
# ./startup.sh
(than Enter license key)

Wowza Starts and stops
# /etc/init.d/WowzaMediaServer start/stop


- Entering new license
# vim /etc/local/WowzaMediaServer/conf/Server.license

than add new license key.

Example Test in
You can test PC and Mobile here,

http://www.wowza.com/gettingstarted?
type=Trial&lic=1358218800&x=01e701ef01e401f801e701e
001ee01f801e701ee01e401f801e701e601ef

or

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

- connectioncounts
http://61.43.139.62:8086/connectioncounts

referenced by:
http://blog.naver.com/PostView.nhn?blogId=aramjo&logNo=120110329014&viewDate=&currentPage=1&listtype=0
http://blog.naver.com/PostView.nhn?blogId=aramjo&logNo=120110613042

THANK YOU
I referenced almost here
http://www.wowza.com


Next Presentation is ..
other tips for wowza media server