iphone 일 경우 "m3u8" 을 통하여 동영상 서비스를 합니다.
예) http://anyurl.com/stream/playlist.m3u8
안드로이드(Android) 일 경우에는 rtsp 프로토콜을 통하여 실시간 동영상 서비스를 합니다.
예) rtsp://anyurl.com/live.stream
자바스크립트 등을 이용하면 편리하게 구현할 수 있습니다.
<script>
var aaa = navigator.userAgent;
if (aaa.match(/iPhone/)){ // 아이폰일 경우
document.location = "http://anyurl.com/playlist.m3u8";
}
else if (aaa.match(/Android/)){ // 안드로이드일 경우
document.location = "rtsp://anyurl.com/live.stream";
}
'개발도구' 카테고리의 다른 글
[루비] Ruby (0) | 2012.02.22 |
---|---|
[Icon png] android.R.drawable Icon Resources (0) | 2011.10.27 |
[모바일 기기별로 - 웹 브라우저 표기 하기 ] (0) | 2011.09.01 |