Page 1 of 1
streaming to QuickTime Player
Posted: 22 Jul 2005 19:34
by Pintadus
Hello,
What codecs and diffusion protocol should I use to stream with VLC so that a QuickTime Player can display it ?
Re: streaming to QuickTime Player
Posted: 23 Jul 2005 15:39
by fkuehne
You should use MPEG4 as audio and video codec in a MPEG4 or MOV container / encapsulation format. I'd you should use RTSP as protocol, but plain HTTP could work as well (untested).
Posted: 22 Nov 2006 19:36
by ZeusDK
You can use:
:sout=#rtp{sdp=rtsp://127.0.0.1:9000/test.sdp}:transcode{vcodec=mp4v,vb=96,scale=1,acodec=mp4a,ab=32,channels=1}
And insert rtsp://127.0.0.1:9000/test.sdp in QuickTime.
Posted: 24 Nov 2006 22:53
by ZeusDK
Sorry - it was (now the transcode is working):
Code: Select all
:sout=#transcode{vcodec=mp4v,vb=96,scale=1,acodec=mp4a,ab=32,channels=1}:rtp{sdp=rtsp://127.0.0.1:9000/test.sdp}