Search found 15 matches

Go to advanced search

by Odysee
14 Dec 2006 20:35
Forum: Web and scripting
Topic: Usage of libvlc.dll in C#
Replies: 67
Views: 77907

Odysse, do you authorize your work to be put on VideoLAN's wiki ?
Copyright ? Licence ?
Yes, of course ;)
by Odysee
11 Dec 2006 11:53
Forum: Web and scripting
Topic: How to receive info of available audio/subtitle tracks?
Replies: 9
Views: 2934

If you use the libvlc.dll directly, you can do that! Take a look at the menu source, you'll find the answer! Here my function written i managed c++: SortedList<int,String^>^ VlcControl::GetAudioTracks( ) { // create new list SortedList<int,String^>^ liEmptyAudioTracks = gcnew SortedList<int,String^>...
by Odysee
22 Nov 2006 07:46
Forum: Web and scripting
Topic: Usage of libvlc.dll in C#
Replies: 67
Views: 77907

Hi,

yes, you really need only the libvlc.dll and some plugins! You don't must install, the package!
by Odysee
21 Nov 2006 08:50
Forum: Web and scripting
Topic: Usage of libvlc.dll in C#
Replies: 67
Views: 77907

Use a Network Drive and install (copy only) the vlc package on it!
I haven't tried it so far, but it must work!
by Odysee
20 Nov 2006 20:15
Forum: Web and scripting
Topic: how to set http input caching value for VLC plugin?
Replies: 7
Views: 4237

Have you tried it to pass the caching params in the options field ?
There it must be an array of strings. I don't know how you can do this in HTML :roll:
by Odysee
20 Nov 2006 12:23
Forum: Web and scripting
Topic: ActiveX-Runtime error 5
Replies: 2
Views: 1477

Hi,

I think the options must be an Array of strings:

Dim szOptions(0) as String
szOptions(0) = "":vout-filter:deinterlace"

v.addTarget "C:\Program Files\VideoLAN\VLC\Bear.3gp", szOptions, VLCPlayListAppendAndGo, -666
by Odysee
17 Nov 2006 19:35
Forum: Web and scripting
Topic: how to set http input caching value for VLC plugin?
Replies: 7
Views: 4237

What are "0,100,200,210"?
That was the command from my dbox! No you doesn't need that! But "http://x.x.x.x/stream1 :http-caching=1200" should work :roll:
by Odysee
17 Nov 2006 17:20
Forum: Web and scripting
Topic: how to set http input caching value for VLC plugin?
Replies: 7
Views: 4237

You can add it to the input url string e.g. "http://x.x.x.x:31339/0,100,200,210 :http-caching=1200".
by Odysee
17 Nov 2006 13:10
Forum: Web and scripting
Topic: Usage of libvlc.dll in C#
Replies: 67
Views: 77907

1. Add a PictureBox or something with a Handle into the form (with dockstyle=fill)

2. Set the PicturBox as Control to the Wrapper with MyLibDll.VideoOutput = MyPictureBox

That's all...
by Odysee
17 Nov 2006 07:48
Forum: Web and scripting
Topic: Usage of libvlc.dll in C#
Replies: 67
Views: 77907

Yes, the Path variable must contain the path to the libvlc.dll ;)
Or you can tempoarly set the path with System.Enviroment in you app.
by Odysee
16 Nov 2006 09:49
Forum: Web and scripting
Topic: Usage of libvlc.dll in C#
Replies: 67
Views: 77907

Mail is on the way...
by Odysee
15 Nov 2006 19:53
Forum: Web and scripting
Topic: Usage of libvlc.dll in C#
Replies: 67
Views: 77907

Hi, here is a sample for c#. /***************************************************************************** (C) Copyright by Odysee Module : LibVlc.cs SCCS : $Archive: $ $Revision: $ Author : Odysee Date : 10.11.2006 Last Change : $Date: $ $Author: $ Description : Known problems : Modification histo...
by Odysee
15 Nov 2006 08:03
Forum: VLC media player for Windows Troubleshooting
Topic: Creating a .lib from the .dll
Replies: 6
Views: 1557

Or use the WinAPI with LoadLibrary an GetProcArddress.
I have tried this, and it works fine in VS2005 (C++ and c#).

You must only copy some structs from the oriiginal headers !
by Odysee
25 Oct 2006 18:22
Forum: Web and scripting
Topic: Is it possible to use libvlc.dll directly instead of ActiveX
Replies: 15
Views: 10819

I have found the problem! When i copy the exe into the vlc directory it works! But how must i initialize libvlc, when the program is not in the vlc directory ??? Working code in the vlc directory: char *ppsz_argv[2] = { "vlc", "--no-one-instance" }; -> Problem sloved :D char *pps...
by Odysee
25 Oct 2006 17:35
Forum: Web and scripting
Topic: Is it possible to use libvlc.dll directly instead of ActiveX
Replies: 15
Views: 10819

I'm trying this too! I have taken a look in the activex source. But it is not working yet :( Witch steps must be done, to show a video in my own window ? Here is my code. What is missing ??? ... // create vlc instance m_iVlcInstance = VLC_Create(); // init vlc char *ppsz_argv[2] = { "C:\\Progra...

Go to advanced search