h264 스트리밍 서버 구축(리눅스,아파치) (실시간 아님, 그냥 서버에 있는 동영상 파일을 스트리밍 방식으로 쏴줌)

by ADMINPLAY posted Aug 13, 2012
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄

아파치를 소스컴파일해서 설치했다는 가정하에...

 

wget http://h264.code-shop.com/download/apache_mod_h264_streaming-2.2.7.tar.gz
tar -zxvf apache_mod_h264_streaming-2.2.7.tar.gz

./configure --with-apxs=/usr/local/apache/bin/apxs

 

make

make install

 

httpd.conf 맨 밑줄에 추가

 

AddHandler h264-streaming.extensions .mp4
LoadModule h264_streaming_module /usr/lib/httpd/modules/mod_h264_streaming.so

 

 

### 플레이어로 확인 하기 ###

1. jwplayer 다운받기

http://www.longtailvideo.com/players/jw-flv-player/

이메일 주소 넣으면 다운로드 됨

 

2. 해당 jwplayer 파일 웹서버에 올리기 및 재생할 동영상 파일 서버에 올리기

 

3. jwplayer 소스 작성 (예를들어 http://abc.xxxx.co.kr/broad.html 이런식으로 웹페이지 파일 작성)

 
 

<script type="text/javascript" src="jwplayer.js"></script>
<div id="container">Loading the player ...</div>
<script type="text/javascript">
 jwplayer("container").setup({
  flashplayer: "player.swf",
  file: "flv_21.flv",
  height: 270,
  width: 480,
  provider : 'http',
  controlbar : 'over' 
 });
</script>

 

4. 브라우저에서 http://abc.xxxx.co.kr/broad.html 띄워 확인


Articles

1 2 3 4 5