Search found 46 matches

Go to advanced search

by olegkirillov
09 Jan 2009 00:13
Forum: Development around libVLC
Topic: rc interface special functionality
Replies: 4
Views: 828

Re: rc interface special functionality

Solved. :) Added "clear" command (it was missing in rc interface). Added "i_id" field in "playlist" command output. Added "goto <i_id>" command. Added "remove <i_id>" command. Added "sweep" command (removes all playlist items except current...
by olegkirillov
02 Jan 2009 22:28
Forum: Development around libVLC
Topic: rc interface special functionality
Replies: 4
Views: 828

Re: rc interface special functionality

Heh... I know what to change but I don't know how. :) What I do really need is the way to find the current input's position in playlist to try deletion loops on items before and after the currently playing one. I was surprised when I discovered that current version of rc.c does not have the "re...
by olegkirillov
01 Jan 2009 23:24
Forum: Development around libVLC
Topic: rc interface special functionality
Replies: 4
Views: 828

rc interface special functionality

Hi! I'm rewriting the rc console interface to implement special functionality for my Internet-TV channel. Now I need one function, that is not straightforward. I need a special command (I call it "sweep") to delete all playlist contents except the currently playing file. There are two hurd...
by olegkirillov
18 Aug 2008 12:27
Forum: VLC stream-output (sout)
Topic: Use VLC to expose video card as an ip webcam
Replies: 3
Views: 1219

Re: Use VLC to expose video card as an ip webcam

You have to get local playback working before you can stream anything. As you do not see the local output it seems that your dshow input is configured incorrectly.
by olegkirillov
18 Aug 2008 12:25
Forum: VLC stream-output (sout)
Topic: Assigning streams to multiple audio outputs help
Replies: 3
Views: 770

Re: Assigning streams to multiple audio outputs help

Maybe this could help:
DirectX audio output
--directx-audio-device=<integer>
Output device
DirectX device number: 0 default device, 1..N device by number(Note that the default device appears as 0 AND another number).
by olegkirillov
03 Aug 2008 11:40
Forum: VLC stream-output (sout)
Topic: Use VLC to expose video card as an ip webcam
Replies: 3
Views: 1219

Re: Use VLC to expose video card as an ip webcam

Not sure what you're trying to do, but I guess you may get what you need by specifying "screen:" as a source for input.
by olegkirillov
01 Aug 2008 14:47
Forum: VLC stream-output (sout)
Topic: Webcam streaming
Replies: 5
Views: 2335

Re: Webcam streaming

If you can view stream from your camera vith vlc, then, in most cases, you can rebroadcast it. You don't need WME, vlc can do transcoding for you, if needed. Using vlc you're only limited by your upstream bandwidth, not the number of viewers. The back side of the coin is that they'll be unable to co...
by olegkirillov
31 Jul 2008 22:37
Forum: VLC stream-output (sout)
Topic: Assigning streams to multiple audio outputs help
Replies: 3
Views: 770

Re: Assigning streams to multiple audio outputs help

Did you try to launch multiple copies of vlc with corresponding URLs of the streams, separated by server?
Or you just need help in separation of the input streams on the server?
Please clarify your task.
by olegkirillov
29 Jul 2008 22:49
Forum: VLC stream-output (sout)
Topic: Include subtitles in stream output
Replies: 5
Views: 730

Re: Include subtitles in stream output

You should specify necessary transcode options (vcodec, vb, acodec, ab, etc) to encode your new output stream.
by olegkirillov
29 Jul 2008 19:57
Forum: VLC stream-output (sout)
Topic: .bat file
Replies: 6
Views: 814

Re: .bat file

Put "START /MIN vlc" in your .bat file
by olegkirillov
29 Jul 2008 16:18
Forum: VLC stream-output (sout)
Topic: .bat file
Replies: 6
Views: 814

Re: .bat file

Excuse me, I should be more detailed. :)

Code: Select all

vlc --sout=#transcode{vcodec=WMV1,vb=96,scale=1,acodec=mp3,ab=96,channels=1}:duplicate{dst=std{access=http,mux=asf,dst=:1234}} --sout-all "C:\streams\big_vid_a.mpg" "C:\streams\big_vid_b.mpg"
I suppose vb=96 is too low, though.
by olegkirillov
29 Jul 2008 12:37
Forum: VLC stream-output (sout)
Topic: Include subtitles in stream output
Replies: 5
Views: 730

Re: Include subtitles in stream output

Post your command line, we'll try to give a hint.
by olegkirillov
29 Jul 2008 10:51
Forum: VLC stream-output (sout)
Topic: .bat file
Replies: 6
Views: 814

Re: .bat file

Remove the square bracket.
by olegkirillov
29 Jul 2008 10:46
Forum: VLC stream-output (sout)
Topic: Include subtitles in stream output
Replies: 5
Views: 730

Re: Include subtitles in stream output

You need to enable transcoding to embed subs into picture. This can substantially affect the quality of output. Are you sure you want to do this?
by olegkirillov
24 Jul 2008 15:03
Forum: VLC stream-output (sout)
Topic: streaming "monoscope" if input stream is broken
Replies: 1
Views: 691

Re: streaming "monoscope" if input stream is broken

I suppose it's not possible with vlc.
It's easier to engineer more reliable input stream source, than to embed the functionality you had requested.
by olegkirillov
24 Jul 2008 15:00
Forum: VLC stream-output (sout)
Topic: How can I establish a smallest vlc
Replies: 1
Views: 436

Re: How can I establish a smallest vlc

Just build it from src. It's not too hard as it seems. Take a stable release and disable everything you don't need.
by olegkirillov
21 Jul 2008 10:51
Forum: VLC stream-output (sout)
Topic: STB + VLC
Replies: 3
Views: 1720

Re: STB + VLC

I suppose an "STB" stands for some kind of IP-TV set-top. What access protocol, codec and format it uses then?
by olegkirillov
21 Jul 2008 10:30
Forum: VLC stream-output (sout)
Topic: vlc streaming question
Replies: 3
Views: 1144

Re: vlc streaming question

I think I can understand what you wrote, but still I cannot understand what you are trying to do. You need to allow users select files and play them with possibility to seek? Then you don't need streaming, you're just need progressive download. This can be done without using vlc for server, any http...
by olegkirillov
21 Jul 2008 10:22
Forum: VLC stream-output (sout)
Topic: Streaming - locally ok but not over web
Replies: 11
Views: 5552

Re: Streaming - locally ok but not over web

What codec, access protocol and mux are you using?
Try wmv3/wma, http and asf respectively, these should work.
by olegkirillov
16 Jul 2008 09:29
Forum: VLC stream-output (sout)
Topic: vlc streaming question
Replies: 3
Views: 1144

Re: vlc streaming question

Please clarify what do you want to achieve. For now your question too general, there's no marketing people to make PowerPoint presentations on VLC design. :) In two words the scheme is simple: for each input VLC creates the separate thread which takes care of driving the data from input down to outp...
by olegkirillov
16 Jul 2008 09:17
Forum: VLC stream-output (sout)
Topic: Dumb Question (Hopefully)
Replies: 6
Views: 771

Re: Dumb Question (Hopefully)

Try to use the URI syntax - file://comutername/sharename/file.iso
by olegkirillov
14 Jul 2008 16:08
Forum: VLC stream-output (sout)
Topic: Dumb Question (Hopefully)
Replies: 6
Views: 771

Re: Dumb Question (Hopefully)

All you need is just file sharing. When vlc takes file as input it (obviously) does not try to load it, but read the file progressively (plus use some caching ahead, if configured) and plays the movie from start. Vlc takes care of bitrate management. The streaming method lays the burden of bitrate m...
by olegkirillov
13 Jul 2008 22:53
Forum: VLC stream-output (sout)
Topic: Bit Rate to High
Replies: 8
Views: 2414

Re: Bit Rate to High

YAAAAAHOWWW! Bingo!
I'm just stupid lame. Searched source right to left and upside down to find that solution is just to use --sout-asf-bitrate-override option!
Anyway now I know how sout works. Or at least I think so. :)
by olegkirillov
12 Jul 2008 18:07
Forum: VLC stream-output (sout)
Topic: Streaming using 3 Gateways?
Replies: 7
Views: 868

Re: Streaming using 3 Gateways?

First you have to be quite sure that your codec won't produce the stream of more than your channel's bandwidth. Check the settings and play the stream in another vlc to see the actual bandwidth (it'll be higher than codec's output because of the container and packetizing overhead. Lower the codec's ...
by olegkirillov
12 Jul 2008 10:03
Forum: VLC stream-output (sout)
Topic: how to insert logo vlc (windows)
Replies: 3
Views: 1279

Re: how to insert logo vlc (windows)

I want to put the emphasis on the fact, that, unless you are transcoding, you'll be the only one who see your logo - as network users do not have the logo graphics file and they do not ask their vlc's to add it.

Go to advanced search