Page 1 of 1

saving rss feed display

Posted: 17 Apr 2006 21:57
by balm
Hi everyone,

I'm saving a streamed video to a file with rss feed enabled. When I playback the file, there's no rss feed display, somehow it does not get recorded into the file.

This is the partial code that does the recording:

Code: Select all

vopt() = Array(":sout=#transcode{vcodec=MJPG,vb=1024,scale=1,soverlay}:duplicate{dst=display,dst=std{access=file,mux=asf,url=" & filename & "}}") VLCPlugin1.addTarget target, vopt, VLCPlayListInsert, 0
Do I have to enable something to be able to record the rss feed data?

Thanks
Balm

Posted: 17 Apr 2006 23:57
by dionoea
try adding ,sfilter=rss in #transcode

Posted: 18 Apr 2006 01:40
by balm
It only does it if I enter it in vlc gui but it won't do it using activex.

The won't work:

Code: Select all

vopt() = Array(":sout=#transcode{vcodec=MJPG,vb=1024,scale=1,sfilter=rss}:duplicate{dst=display,dst=std{access=file,mux=asf,url=" & filename & "}}")
but If I enter this:

Code: Select all

:sout=#transcode{vcodec=mp4v,vb=1024,scale=1,sfilter=rss}:duplicate{dst=display,dst=std{access=file,mux=asf,url="C:\Projects\Auslog\Stream Files\t3.asf"}}
in Stream ouput destination target, it works

:idea:

Thanks
Balm[/quote]

Posted: 18 Apr 2006 12:37
by dionoea
sfilter=rss,soverlay

Posted: 18 Apr 2006 18:34
by Balm
Got it to work. :D

Here is the changes:
vcodec = MJPEG
changed to
vcodec = mp4v


Balm