IT STORYs
FMS 기본 스트리밍 폴더 변경 방법 본문
FMS 기본 스트리밍 폴더 변경 방법 (기본폴더에서 2008폴더로 변경)
Linux 서버에 접속 후 아래 디렉토리로 이동합니다.
/opt/adobe/fms/applications
위 폴더 안에 있는 vod 폴더를 같은 폴더 안에 2008 이름으로 복사 합니다.
cp -rf vod 2008
위 작업이 완료되면
/opt/adobe/fms/applications 폴더안에
Vod 폴더와 2008 폴더가 같이 있게되며
2008 폴더안에 있는 Application.xml 파일을 열어 다음 부분(빨간색부분)을 수정합니다.
<StreamManager>
<VirtualDirectory>
<!-- Specifies application specific virtual directory mapping for recorded streams. -->
<Streams>/;${2008_DIR}</Streams>
</VirtualDirectory>
</StreamManager>
위 작업을 완료 후 다음은 아래 폴더안에 있는
/opt/adobe/fms/conf
fms.ini 파일을 열어 다음과 같이 추가하여 줍니다.
# VOD_DIR denotes the full path of sample "VOD" application's
# folder for storing onDemand .flv/.mp3 files.
# For example:
# VOD_DIR = <FMS_Installation_Dir>\applications\vod
#
VOD_DIR = <FMS_Installation_Dir>\applications\vod
2008_DIR = /원하는경로/2008
(vod 기본값은 변경하실 필요 없습니다.)
위와 같이 작업 완료 후 다음 폴더에서
/opt/adobe/fms
./server restart 명령어를 이용하여 fms 데몬을 재 시작합니다.
위 셋팅이 완료되면 다음과 같이 테스트를 합니다.
Flv플레이어를 이용하여
rtmp://FMS_IP/2008/폴더명/파일명.flv
위 주소로 테스트 합니다.