Search found 17 matches

Go to advanced search

by jboileau
05 Sep 2008 15:20
Forum: VLC media player for Windows Troubleshooting
Topic: 0.9 test builds
Replies: 80
Views: 17730

Re: 0.9 test builds

Hi,

are the sources for these test builds available? If yes, where? If they are on the nightly builds ftp, just point me to the right one.

thanks!
by jboileau
13 Dec 2007 15:51
Forum: General VLC media player Troubleshooting
Topic: Add input option to libvlc_media_instance
Replies: 1
Views: 365

Add input option to libvlc_media_instance

How can I add input options (a list of arguments like --sout-all etc) when using the libvlc_media_descriptor_... API? What API function should I call to do this? I would like to do something similar to libvlc_playlist_add_extended but using the libvlc_media_descriptor_... and libvlc_media_instance_....
by jboileau
13 Dec 2007 15:42
Forum: General VLC media player Troubleshooting
Topic: libvlc - how to catch events
Replies: 2
Views: 1177

Re: libvlc - how to catch events

Are you using your own window? If not this might be why. Create a Window and tell lbvlc to use it with a call to libvlc_video_set_parent. ex:

libvlc_video_set_parent(LibvlcInstance, (libvlc_drawable_t)HWindow, LibvlcException);

You can then do what you want with the window.
by jboileau
05 Dec 2007 00:07
Forum: General VLC media player Troubleshooting
Topic: use libvlc.dll within source code to save http stream
Replies: 6
Views: 3846

Re: use libvlc.dll within source code to save http stream

You can run VLC with the command line switch --help and it will generate a text help file. Then you can look in that file for the basic options or look at the help switches to genrate a more detailed help file. see here: http://forum.videolan.org/viewtopic.php?f=14&t=17203&p=53307&hilit=...
by jboileau
03 Dec 2007 20:43
Forum: General VLC media player Troubleshooting
Topic: stream video to separate window
Replies: 1
Views: 491

Re: stream video to separate window

I don't think this is possible with VLC as a standalone apllication. But if you are willing to go the development route you can do this using libvlc. See here: http://www.videolan.org/developers/vlc/doc/doxygen/html/group__libvlc.html#g1b6799263b93d35174a4d5acf093f066 General information libvlc deve...
by jboileau
03 Dec 2007 20:33
Forum: General VLC media player Troubleshooting
Topic: use libvlc.dll within source code to save http stream
Replies: 6
Views: 3846

Re: use libvlc.dll within source code to save http stream

You can find an example here on using libvlc: http://wiki.videolan.org/LibVLC_Tutorial_086c All you have to do is replace libvlc_playlist_add by libvlc_playlist_add_extended which takes a list of options. These can include the MRL you see at the top of stream settings dialog. So if you can stream us...
by jboileau
03 Dec 2007 20:17
Forum: General VLC media player Troubleshooting
Topic: source code and documentatin
Replies: 2
Views: 432

Re: source code and documentatin

You can find the information you need through this page:

http://wiki.videolan.org/Developers_Corner
by jboileau
30 Nov 2007 20:43
Forum: General VLC media player Troubleshooting
Topic: Libvlc and multiple media lists
Replies: 0
Views: 378

Libvlc and multiple media lists

I have read the 'LibVLC Media List Management' document on the wiki and i have a question. ( http://wiki.videolan.org/LibVLC_Media_List_Management ) Using the new media list management in libvlc, can I create more than one list and player for one libvlc instance? The description of libvlc_new says i...
by jboileau
29 Nov 2007 17:19
Forum: VLC media player for Windows Troubleshooting
Topic: Attaching to events in libvlc
Replies: 0
Views: 312

Attaching to events in libvlc

Hi, I am building a small application in C++ using libvlc.dll (libvlc_control.dll actually since I am using the 0.9.0 version from the trunk). Things are working pretty well and I have most of what I need completed. But I need to detect the end of whatever is playing. I have tried using the event ma...
by jboileau
13 Jun 2007 16:52
Forum: VLC stream-output (sout)
Topic: Recipe to reproduce Divx pause problem on udp streams
Replies: 0
Views: 529

Recipe to reproduce Divx pause problem on udp streams

Streaming a divx movie to udp has a problem when pausing and resuming the stream. The stream player takes a long time to recuperate, if it does, and the audio is usually out of sync. This happens since version 0.8.2. It worked fine in version 0.8.1. I am running this under Windows XP. Here are the s...
by jboileau
11 Aug 2006 20:50
Forum: VLC stream-output (sout)
Topic: Stream does not play if client is started first
Replies: 0
Views: 578

Stream does not play if client is started first

Hi, I stream mp3s from a server to a client machine, but if the client is started first the stream doesn't play. The client is always up and running and awaiting a stream. The command used is: vlc udp://@:1305 I later start a stream on the server machine. The command used is: vlc list.m3u --sout #du...
by jboileau
23 Jan 2006 14:26
Forum: Web and scripting
Topic: ActiveX streaming: has anybody succeeded?
Replies: 8
Views: 10192

ActiveX streaming: has anybody succeeded?

I am using 0.8.4.
by jboileau
20 Jan 2006 20:37
Forum: VLC stream-output (sout)
Topic: Streaming problem introduced since 0.8.2
Replies: 0
Views: 508

Streaming problem introduced since 0.8.2

I don't know if this has been reported yet. I could not find any mention of it on this forum. When you stream with VLC 0.8.2 or later to UDP. If you pause the streamer and start it again (press pause then play) the stream will not resume playing. This also happens if you use the track bar to jump to...
by jboileau
20 Jan 2006 17:17
Forum: Web and scripting
Topic: ActiveX streaming: has anybody succeeded?
Replies: 8
Views: 10192

ActiveX streaming: has anybody succeeded?

Thanks for your help. Looking at your code helped me figure things out in C#. I tried your way and because you had 2 option strings, things started to work. It seems there must be more than one option strings for it to work, or that a terminating string be added. A null string works. Here is some co...
by jboileau
18 Jan 2006 19:35
Forum: Web and scripting
Topic: ActiveX streaming: has anybody succeeded?
Replies: 8
Views: 10192

ActiveX streaming: has anybody succeeded?

I am trying to test streaming from the ActiveX without any luck so far. The media always plays in the control and is not streamed. I am using visual Studio and C#. Here is a snippet of my C# code: axVLCPlugin.playlistClear(); string[] lOptions = new string[] {":sout=#duplicate{dst=std{access=ud...
by jboileau
20 Dec 2005 22:22
Forum: VLC stream-output (sout)
Topic: Does duplicate create synchronised streams.
Replies: 0
Views: 479

Does duplicate create synchronised streams.

If I use the duplicate module to split a movie into two streams: one for the video and one for all the audio tracks, will the two streams be synchronised? I need to send the video to one subsystem (one IP address) and the audio tracks (3 languages) to another. One will display the video and the othe...
by jboileau
13 Dec 2005 21:47
Forum: VLC stream-output (sout)
Topic: es module does not seperate audio tracks
Replies: 2
Views: 734

es module does not seperate audio tracks

I am streaming a Divx video file that has 3 audio tracks (english, french and spanish), but all audio tracks are garbled into one when I try to play them at the receiving end. I need audio and video on differenet ports. I stream using the following multicast command: vlc C:\temp\ice_mulCBR.avi --sou...

Go to advanced search