Actually, I'm not sure this is possible to demux an MPEG-2 TS files to "raw" Elementary Streams with VLC at all. You can generate ES files like this: vlc --intf dummy $1 vlc:quit --sout '#es{access=file,mux=es,dst-video="video.mp2v",dst-audio="audio.mp2a"}' and I didn'...
src/.libs/libvlc.so: undefined reference to `libiconv_open' src/.libs/libvlc.so: undefined reference to `libiconv_close' src/.libs/libvlc.so: undefined reference to `libiconv' I got around this by editing vlc-trunk/Makefile (after configure, before compile), changing the line that looked like: vlc_...
I'm trying to re-scale an interlaced image. The input is a 25 fps interlaced MPEG 2 file at 720x756 (PAL). I need to crop this down and re-size it back up to 720x576. Cropping and sizing with 'transcode{croptop=105, cropleft=65, cropright=65,width=720,height=576}' works but looks awful because of th...
I think you need to recompile it. Change the function VLCPlugin::onDraw() so that it contains: FillRect(hdcDraw, &bounds, (HBRUSH)GetStockObject(BLACK_BRUSH)); about 6 lines down. This assumes you want it black - otherwise just create your own brush. Then comment out the block that begins with: ...
I'm using something like this: <head> <script type="text/javascript"> function startIt() { var ob = document.getElementById('vlc'); if (ob) { var options=[":http-caching=400"]; ob.addTarget("http://some.server:8080/",options,2,0); ob.play(); } } </script> </head> <body ...