프로그램 사용/VLC2011. 11. 17. 18:05
IE8에서는 되는데 크롬에서는 안되는듯...

[링크 : http://forum.videolan.org/viewtopic.php?f=16&t=57845]

---
2011.11.18 추가

VLC가 엉겼었는지 언인스톨 후에 다시 깔고 나니 크롬에서도 문제없이 된다 -ㅁ- 

'프로그램 사용 > VLC' 카테고리의 다른 글

VLC codebase axvlc.cab  (2) 2011.11.18
VLC classid  (0) 2011.11.18
VLC 외부코덱 연결하기 제약사항  (0) 2011.06.23
VLC 화면 캡쳐하기  (0) 2011.05.30
VLC에서 RTSP를 TCP로 받기 / RTSP over HTTP  (2) 2011.02.24
Posted by 구차니
프로그램 사용/VLC2011. 2. 24. 15:26
VLC 도움말
RTP/RTSP/SDP 디먹서 (Live555 사용)
      --rtsp-tcp, --no-rtsp-tcp  RTSP (TCP) 을 통한 RTP 사용 (기본 사용안함)
          RTSP (TCP) 을 통한 RTP 사용 (기본 사용안함)
      --rtp-client-port=<정수> 클라이언트 포트
          세션의 RTP 소스에 사용하는 포트
      --rtsp-mcast, --no-rtsp-mcast
                                 RTSP 을 통한 RTP 멀티캐스트 강제
                                 (기본 사용안함)
          RTSP 을 통한 RTP 멀티캐스트 강제 (기본 사용안함)
      --rtsp-http, --no-rtsp-http
                                 HTTP 을 통한 RTSP 및 RTP 터널 (기본 사용안함)
          HTTP 을 통한 RTSP 및 RTP 터널 (기본 사용안함)
      --rtsp-http-port=<정수>  HTTP 터널 포트
          HTTP 을 통한 RTSP/RTP 터널링에 사용할 포트.
      --rtsp-caching=<정수>    캐시 값 (ms)
          RTSP 스트림의 기본 캐싱 값 변경을 허용. 이 값은
          밀리초 단위로 설정되어야 합니다.
      --rtsp-kasenna, --no-rtsp-kasenna
                                 Kasenna RTSP 표현법 (기본 사용안함)
          Kasenna servers use an old and nonstandard dialect of RTSP. With this
          parameter VLC will try this dialect, but then it cannot connect to
          normal RTSP servers. (기본 사용안함)
      --rtsp-wmserver, --no-rtsp-wmserver
                                 WMServer RTSP dialect (기본 사용안함)
          WMServer uses an unstandard dialect of RTSP. Selecting this parameter
          will tell VLC to assume some options contrary to RFC 2326 guidelines.
          (기본 사용안함)
      --rtsp-user=<문자열>    RTSP 사용자명
          Sets the username for the connection, if no username or password are
          set in the url.
      --rtsp-pwd=<문자열>     RTSP 비밀번호
          Sets the password for the connection, if no username or password are
          set in the url.

Receiving streamed data via TCP instead of UDP
If you're not receiving any data packets (you can test this using "-n"), then you may be behind a firewall that (stupidly) blocks UDP packets. If this is the case, you can use the "-t" option to request that the RTSP server stream RTP and RTCP data packets over its TCP connection, instead of using UDP packets. (Note that not all RTSP servers support TCP streaming, and that TCP cannot be used to receive multicast streams.)

You should use this option only if you are unable to receive UDP packets, or if you are recording the stream for later playback, and need to do so without packet loss. Streaming over TCP can cause incoming data to be excessively delayed, which is inappropriate if the data is being processed in real time.

Alternatively, you can use the "-T <http-port-number>" option to request that the stream be sent (using TCP) over a "RTSP-over-HTTP tunnel", using the specified HTTP port number. RTSP-over-HTTP tunneling can be useful if you are behind a HTTP-only firewall. (Note, however, that not all RTSP servers support this.)

[링크 : http://www.live555.com/openRTSP/]
    [링크 : http://developer.apple.com/quicktime/icefloe/dispatch028.html] RTSP over HTTP 관련글



결론 : 그래도 안되네 -_-

'프로그램 사용 > VLC' 카테고리의 다른 글

VLC 외부코덱 연결하기 제약사항  (0) 2011.06.23
VLC 화면 캡쳐하기  (0) 2011.05.30
VLC 를 터널링으로 사용하기 (실패 OTL)  (0) 2011.02.23
VLC에서 RTSP를 multicast로 받기  (0) 2011.02.15
VLC - V4L2 modules  (0) 2010.07.03
Posted by 구차니
Linux2011. 2. 24. 13:07
SSH는 TCP이고, SSH Tunneling을 하게되면, TCP를 터널링하게 된다.
그런 이유로 UDP를 사용하는 RTSP는 SSH 터널링으로는 돌릴수가 없다.
또한 RTSP over HTTP는 존재하지만 터널링 관련해서는 나오지 않는다
(근데 HTTP는 대개 TCP를 쓰지 않나?)

아무튼, socat이라는 녀석을 이용해서 UDP를 TCP로 바꾸어 터널링 시키는 방법을 사용하는 것으로 보인다.


'Linux' 카테고리의 다른 글

/proc/cpuinfo flags 필드의 내용  (0) 2011.03.22
linux kernel이 64bit 인지 확인하는 방법  (0) 2011.03.22
iptables를 이용한 ICMP 응답 무시하기  (2) 2011.02.18
메일서버 확인하기  (0) 2011.02.17
MacOSX 의 시스템 구조  (0) 2011.02.06
Posted by 구차니
프로그램 사용/VLC2011. 2. 15. 11:49
"옵션 더 보기" 를 선택하면 아래에
:rtsp-caching=1200 이라고 기본으로 적혀있는데

이곳에 :rtsp-mcast=1 이라는 구문을 넣어주면 rtsp로 작동된다(고 한다.)
도는지 안도는지는 모르겠지만.. 아무튼 동영상은 나오니...



아래는 vlc의 자체 내장 옵션관련 문서
Posted by 구차니
회사일/IP camera2011. 2. 11. 15:23

'회사일 > IP camera' 카테고리의 다른 글

3G-SDI / compressed SDI  (0) 2012.02.07
pelco-D/P PC용 제어 프로그램  (0) 2011.12.30
egi, esp  (0) 2011.03.08
EIA1956 - 영상 해상도 테스트  (0) 2011.02.10
ip camera 모델별 RTSP 프로토콜 주소  (0) 2010.10.08
Posted by 구차니
프로그램 사용/VLC2010. 1. 18. 15:40
우여곡절끝에 VLC를 컴파일 해서 samr / H.263 코덱으로 접속을 해도 에러는 나지 않도록 했는데..
RTSP 10초 timeout으로 플레이 까지는 하지 못한다.
도대체 VLC로 유튜브 플레이한 사람은.. 용자인가 -ㅁ-?




아무튼, youtube + RTSP로 검색하다보니, xHTML이 빠져서 그런거 같은 느낌이 강하게 든다..
도대체 이넘은 또 어떻게 산을 넘어가야 하나?

 YouTube launched its mobile site, YouTube Mobile on 15 June 2007. It is based on xHTML and uses 3GP videos with H263/AMR codec and RTSP streaming. It is available via a web interface at m.youtube.com or via YouTube's Mobile Java Application.

[링크 : http://blog.daum.net/johagnes/1890446]

'프로그램 사용 > VLC' 카테고리의 다른 글

의미는 없는 Linux / Windows VLC 차이  (0) 2010.01.26
VLC로 youtube 동영상 감상하기  (0) 2010.01.26
VLC compile [링크]  (0) 2010.01.15
ffmpeg + AMR + x264 + VLC?  (0) 2010.01.14
우분투에서 VLC 컴파일하기  (3) 2010.01.13
Posted by 구차니
프로그램 사용2009. 11. 13. 17:50

open source / LGPL 기반의 프로그램이며 콘솔 기반의 windows binary를 제공한다.

Source code license

This code is "open source", and is released under the LGPL. This allows you to use these libraries (via linking) inside closed-source products. It also allows you to make closed-source binary extensions to these libraries - for instance, to support proprietary media codecs that subclass the existing "liveMedia" class hierarchy. Nonetheless, we hope that subclass extensions of these libraries will also be developed under the LGPL, and contributed for inclusion here. We encourage developers to contribute to the development and enhancement of these libraries.


The "LIVE555 Media Server" is a complete RTSP server application. It can stream several kinds of media file (which must be stored in the current working directory - i.e., the directory from which you launch the application.):
  • A MPEG Transport Stream file (with file name suffix ".ts")
  • A MPEG-1 or 2 Program Stream file (with file name suffix ".mpg")
  • A MPEG-4 Video Elementary Stream file (with file name suffix ".m4e")
  • A MPEG-1 or 2 (including layer III - i.e., 'MP3') audio file (with file name suffix ".mp3")
  • A WAV (PCM) audio file (with file name suffix ".wav")
  • An AMR audio file (with file name suffix ".amr")
  • An AAC (ADTS format) audio file (with file name suffix ".aac")

[링크 : http://live555.com/]
Posted by 구차니