head	1.14;
access;
symbols;
locks
	root:1.14; strict;
comment	@# @;


1.14
date	2011.03.22.09.01.36;	author root;	state Exp;
branches;
next	1.11;

1.11
date	2011.03.21.15.10.27;	author root;	state Exp;
branches;
next	1.1;

1.1
date	2011.03.21.14.04.44;	author root;	state Exp;
branches;
next	;


desc
@/opt/nforge/var/wiki/rmplayer/data/text/FrontPage
@


1.14
log
@222.238.227.79;;beta beta;;
@
text
@= rMPlayer =
== MPlayer web frontend ==

|| [[attachment:rMPlayer-0.10.Main.PNG]] || [[attachment:rMPlayer-0.1.0.Radio.PNG]] || [[attachment:rMPlayer-0.1.0.Options.PNG]] ||


        요즘 집에서 쉬고있는데 무료하기도 하고, 집에서 오디오로 CD로 음악을 듣다보면, 지루할때가 많아서 mp3, radio, movie 등을 재생할수 있는 프로그램을 작성해보았음.
        쓰던 개발서브용 노트북(Fujitsu P7120)을 홈네트워크 서버처럼 이용하고, IPhone 으로 Web 으로 접속해서 재생하는 형태의 구성.

        * 현재 동영상은 테스트할 환경이 안되어, mplayer 의 option 이 맞는지 확인할수 없음.
        * 혹시 TV 출력에 문제가 있으면, rmplayerd 의 command option 을 알맞게 변경할것.
        * 이 프로젝트는 light weghit한 concept 이며, 잘만든 HTPC 를 원하면 XBMC (http://xbmc.org/) 같은 project 를 추천함.

        Tested by
                RHEL5

                PHP 5.3.6.RC1
                        **(중요) low version 에서는 ./funcs/dir.php iterator 때문에 동작에 문제가 있음.

                MPlayer SVN-r31628-4.1.2 (C) 2000-2010 MPlayer Team

                socat (http://www.dest-unreach.org/socat/) Multipurpose relay
                        MPlayer 가 command read FIFO 만 지원함으로, 명령에 대한 결과 리턴용으로 relay server 용도로 사용중.
                        mplayer 의 결과는 debug out 을 특정 파일에 write 하고, 그걸 socat 이 network 으로 relay 함.

                jquerymobile
                        UI 화면 구성.


        1. Start up script 설정.
              * # cp ./install/rmplayerd /etc/init.d/
              * # chkconfig --add rmplayerd
              * # chkconfig --level 2345 rmplayerd on
              * # /etc/init.d/rmplayerd start

        2. config.php 설정.
{{{#!vim php
<?
/* media file path */
$_multimedia_root_path  = "/project/disk/hda5/07_Multimedia" ; 

$_whitelist       = array(  'mp3'  /* white list */
                               , 'asf'
                               , 'asx'
                               , 'mkv'
                               , 'mp4'
                               , 'wma'
                               , 'avi' )       ;
?>
}}}
@


1.11
log
@222.238.227.79;;beta beta;;
@
text
@d2 1
a2 1
== MPlayer www frontend ==
d4 1
a4 1
||| [[attachment:rMPlayer-0.10.Main.PNG]] ||| [[attachment:rMPlayer-0.1.0.Radio.PNG]] ||| [[attachment:rMPlayer-0.1.0.Options.PNG]] |||
d31 1
a31 1
              * # cp /install/rmplayerd /etc/init.d/
d34 1
@


1.1
log
@222.238.227.79;;beta beta;;
@
text
@d2 4
d31 3
a33 3
                * # cp /install/rmplayerd /etc/init.d/
                * # chkconfig --add rmplayerd
                * # chkconfig --level 2345 rmplayerd on
d36 14
a49 16
        <?
                $_multimedia_root_path  = "/project/disk/hda5/07_Multimedia" ;  /* media files path */
                
               //media file이 있는 위치를 지정합니다.

                $_whitelist       = array(  'mp3'                                                               /* white list */
                                                                , 'asf'
                                                                , 'asx'
                                                                , 'mkv'
                                                                , 'mp4'
                                                                , 'wma'
                                                                , 'avi' )       ;
               
                 //listing 할 파일 리스트 수정.
        ?>

@
