Page 1 of 1

VLC 1.01 and Windows named pipes

Posted: 28 Jul 2009 22:41
by shagrath78
Hi folks,

I'm using VLC on windows to serve some streams, with a sout to a windows named pipe... something like

Code: Select all

:sout=#transcode{vcodec=mp2v,vb=4096,acodec=mp3,ab=128,channels=2}:std{access=file,mux=ts,dst="\\.\pipe\VLC1234"}
it was working fine on VLC 0.98, but unfortunately, with the 1.01, I'm getting this issue:

access_output_file access out error: cannot open `\.\pipe\VLC1234' (No such file or directory)
stream_out_standard stream out error: no suitable sout access module for `file/ts://\.\pipe\VLC1234'

seems VLC is now adding file/ts:// by default, which fails here at some point... if someone has any help to offer :p

Re: VLC 1.01 and Windows named pipes

Posted: 16 Nov 2009 22:18
by whome
Hahaa, is it this reason Windows pipes stop working in v1.0.x versions. I hope this is just a small quirk introduced in new source code and not bigger change in the architecture to make pipes harder to implement.

Re: VLC 1.01 and Windows named pipes

Posted: 05 Dec 2009 01:13
by ravenfire
ahhh.. that explains a few things.. bummer.. I gotta downgrade!

Re: VLC 1.01 and Windows named pipes

Posted: 05 Dec 2009 02:32
by kdh
could always upgrade to linux. :D

i keeed i keeed. :wink:

Re: VLC 1.01 and Windows named pipes

Posted: 15 Dec 2009 15:59
by kakone
Hello,

Is there a workaround to this problem ?
How can we do a sout to a windows named pipe with VLC 1.03 ?

Re: VLC 1.01 and Windows named pipes

Posted: 15 Dec 2009 16:14
by RĂ©mi Denis-Courmont
Double the antislashes, I guess.

Re: VLC 1.01 and Windows named pipes

Posted: 16 Dec 2009 17:54
by kakone
It works with \\\.\pipe\VLC1234

Thank you very much.