Search found 7 matches

Go to advanced search

by phreed
07 Feb 2009 00:58
Forum: General VLC media player Troubleshooting
Topic: Live Streaming
Replies: 0
Views: 165

Live Streaming

cvlc -vvv \ --demux rawvid \ --rawvid-chroma RV24 --rawvid-fps 15 \ --rawvid-width=640 --rawvid-height=480 \ http://localhost:13001 \ --no-sout-audio \ --sout "#transcode{vcodec=FLV1,vb=800}:std{access=http{mime=video/x-flv},mux=ffmpeg{mux=flv},dst=0.0.0.0:13002/livestream.flv}" The rawvi...
by phreed
22 Jan 2009 21:18
Forum: VLC media player for Windows Troubleshooting
Topic: Convert/Save to .FLV from .AVI Not Working
Replies: 12
Views: 28560

Re: Convert/Save to .FLV from .AVI Not Working

If you want to do real time streaming, normal FLV output transcoding ain't gonna work. If you just want to do some videos that people can watch, then it is a option.
Why not?
What is the problem?
by phreed
22 Jan 2009 18:02
Forum: VLC stream-output (sout)
Topic: How to produce a raw video feed
Replies: 5
Views: 3233

Re: How to produce a raw video feed

Don't use HTTP/TCP/IP. Create a FIFO with mkfifo, or if you start VLC from the feeding program, create a pipe. Let VLC read from it as a normal file. On Linux, you can even use vmsplice() from the feeder to the FIFO kill one memory copy. I'd thought about using a pipe but can it be made to work on ...
by phreed
21 Jan 2009 21:23
Forum: VLC stream-output (sout)
Topic: How to produce a raw video feed
Replies: 5
Views: 3233

Re: How to produce a raw video feed

My remaining vlc specific question is just how minimal can the http server be? I have been playing around with socat but haven't quite gotten it working yet. socat tcp-l:13000 system:'while read line; do case ${line} in \r\n) echo "stream it";; *) echo ${line};; esac; done',pipes However, ...
by phreed
21 Jan 2009 16:11
Forum: VLC stream-output (sout)
Topic: Streaming capture device from console
Replies: 1
Views: 548

Re: Streaming capture device from console

Post the entire command line.
You only supplied the sout portion.
by phreed
16 Jan 2009 16:30
Forum: VLC stream-output (sout)
Topic: How to produce a raw video feed
Replies: 5
Views: 3233

Re: How to produce a raw video feed

The problem was finding a definitive declaration of what constitutes a the rawvid rgb24 stream. It is simply a stream of pixel values encoded in three bytes (R8+G8+B8 = 24bits) each with neither headers nor frame delimiters. The frame info is supplied separately to the stream reader (i.e. frame heig...
by phreed
13 Jan 2009 19:58
Forum: VLC stream-output (sout)
Topic: How to produce a raw video feed
Replies: 5
Views: 3233

How to produce a raw video feed

I am adding a rawvid (rgb24) feed from my program (delta3d) and want to use vlc to transcode it and serve it up. Specifically I want to do this... vlc --demux rawvid --rawvid_chroma RV24 --rawvid-width 800 --rawvid-height 600 "http://localhost:13002/" Starting socat stdio tcp-listen:13002 ...

Go to advanced search