Search found 18 matches

Go to advanced search

by elund
26 Apr 2009 21:34
Forum: Development around libVLC
Topic: VideoLan.Interop a .Net libvlc 0.9.x wrapper
Replies: 195
Views: 86283

Re: VideoLan.Interop a .Net libvlc 0.9.x wrapper

Hi guys, I've been away for a while on what you might call the opposite of a vacation (aka excessive work) . I want to take care of the bugs first and stabilize the wrapper before adding new features. Can you summarize what the current bugs are? Hi Kairos! Welcome back :-) What are you comments to ...
by elund
27 Mar 2009 09:24
Forum: Development around libVLC
Topic: VideoLan.Interop a .Net libvlc 0.9.x wrapper
Replies: 195
Views: 86283

Re: VideoLan.Interop a .Net libvlc 0.9.x wrapper

I believed TKaraoke is using this or the Marx wrapper and it's rock solid. Download it and queue up a few hundred songs and see if it's stable or not. You can download it at their website: http://www.tkaraoke.com Thank you very much for your tip :D But as far as I can see the source code is not ava...
by elund
25 Mar 2009 11:48
Forum: Development around libVLC
Topic: VideoLan.Interop a .Net libvlc 0.9.x wrapper
Replies: 195
Views: 86283

Re: VideoLan.Interop a .Net libvlc 0.9.x wrapper

Hi Youpi! I would recommend you to managed your own playlist. The author of VideoLan.Interop is actually doing the same: http://forum.videolan.org/viewtopic.php?f=32&t=52021&p=176692&hilit=playlist#p176692 . With that said I still experience this wrapper - and the one made by Marx - as u...
by elund
18 Feb 2009 11:33
Forum: Development around libVLC
Topic: VLC on WIN CE
Replies: 2
Views: 2820

Re: VLC on WIN CE

Have you seen this:
http://eleves.ec-lille.fr/~couprieg/ind ... vlc-update

I would also be interested in a port of VLC to Windows CE.

Best regards, Elund
by elund
17 Feb 2009 21:28
Forum: Development around libVLC
Topic: VideoLan.Interop a .Net libvlc 0.9.x wrapper
Replies: 195
Views: 86283

Re: VideoLan.Interop a .Net libvlc 0.9.x wrapper

void vlcMediaPlayer_StateChanged(object sender, StateChangedEventArgs e) { if (InvokeRequired == true) Invoke(new EventHandler<StateChangedEventArgs>(vlcMediaPlayer_StateChanged), sender, e); else { if (vlcMediaPlayer.State == VlcState.Playing) { trackBar.Maximum = (int)vlcMediaPlayer.Length; } } }...
by elund
17 Feb 2009 07:46
Forum: Development around libVLC
Topic: How can I play H264 videos from Dot.Net ?
Replies: 5
Views: 5818

Re: How can I play H264 videos from Dot.Net ?

I also couldn't compile the source code, I'm getting a message saying that this application solution was created with a newer version of "Visual C# 2005", and it can't be loaded, I'm using the free version that can be download from Microsoft web site. In the project file "DMediaPlaye...
by elund
04 Feb 2009 13:22
Forum: Development around libVLC
Topic: VideoLan.Interop a .Net libvlc 0.9.x wrapper
Replies: 195
Views: 86283

Re: VideoLan.Interop a .Net libvlc 0.9.x wrapper

Is there a bug in libvlc 0.9.8a? I have tested with the VlcMediaListPlayer Sample and noticed that it only plays the first item in the MediaList in stead of all items in the MediaList. I have the same problem with the Marx C# Wrapper: http://forum.videolan.org/viewtopic.php?f=32&t=47385&star...
by elund
03 Feb 2009 08:33
Forum: Development around libVLC
Topic: Question about Marx C# Wrapper
Replies: 1
Views: 813

Re: Question about Marx C# Wrapper

You can wrap the library in a user control as shown in the TestVLC example by nicopam:
viewtopic.php?f=32&t=47385&p=167172&hil ... lc#p167172

Best regards, Elund
by elund
02 Feb 2009 15:59
Forum: Development around libVLC
Topic: C# Wrapper for libvlc 0.9.0 - Testers Required
Replies: 153
Views: 83087

Re: C# Wrapper for libvlc 0.9.0 - Testers Required

Is there missing an implementation of libvlc_media_list_player in the Marx C# Wrapper? I have now implemented Marx_libvlc_media_list_player: using System; using System.Runtime.InteropServices; using System.IO; namespace Marx_libvlc_wrapper { #region Handle for libvlc_media_list_player public class ...
by elund
29 Jan 2009 10:56
Forum: Development around libVLC
Topic: C# Wrapper for libvlc 0.9.0 - Testers Required
Replies: 153
Views: 83087

Re: C# Wrapper for libvlc 0.9.0 - Testers Required

Can someone sketch how to create and use a Marx_libvlc_media_list object?
Is there missing an implementation of libvlc_media_list_player in the Marx C# Wrapper?

Best regards, Elund
by elund
28 Jan 2009 11:51
Forum: Development around libVLC
Topic: C# Wrapper for libvlc 0.9.0 - Testers Required
Replies: 153
Views: 83087

Re: C# Wrapper for libvlc 0.9.0 - Testers Required

Hi!

Can someone sketch how to create and use a Marx_libvlc_media_list object?

Thanks in advance, Elund
by elund
27 Jan 2009 15:20
Forum: Development around libVLC
Topic: C# Wrapper for libvlc 0.9.0 - Testers Required
Replies: 153
Views: 83087

Re: C# Wrapper for libvlc 0.9.0 - Testers Required

Sorry, I've been busy on project work. I'll be releasing the source of the Media player interface and wrapper soon. Hi Marx! Nice work! Did you ever release the source of the Media Player interface? I want to test your C# Wrapper, because I have some problems with the other 2 wrappers discussed in ...
by elund
26 Jan 2009 11:59
Forum: Development around libVLC
Topic: .Net_Interface_to_VLC
Replies: 2
Views: 590

Re: .Net_Interface_to_VLC

The external playlist_Clear() function did actually clear the playlist. The property PlaylistCount is zero after a call to playlist_Clear(); The thing that confused me is that playlist_AddExt() keeps counting up the id of the playlist item. I would have expected that the id of the playlist was reset...
by elund
26 Jan 2009 09:55
Forum: Development around libVLC
Topic: VideoLan.Interop a .Net libvlc 0.9.x wrapper
Replies: 195
Views: 86283

Re: VideoLan.Interop a .Net libvlc 0.9.x wrapper

To test the functionality of clearing the playlist I have added a button to the VlcMediaListPlayer.Sample application: private void button1_Click(object sender, EventArgs e) { int nCount = VlcPlayer.PlayList.Count; for (int i = 0; i < nCount; i++) VlcPlayer.PlayList.RemoveAt(i); } This results in an...
by elund
23 Jan 2009 09:50
Forum: Development around libVLC
Topic: .Net_Interface_to_VLC
Replies: 2
Views: 590

.Net_Interface_to_VLC

Hi! I am coding a C# windows forms application by using http://wiki.videolan.org/.Net_Interface_to_VLC But I have a problem with external playlist_Clear() function. It does not clear the playlist. Somewhere on the Internet I have read that it might be caused by when AutoPlay is set to true and MRL s...
by elund
22 Jan 2009 14:55
Forum: Development around libVLC
Topic: VideoLan.Interop a .Net libvlc 0.9.x wrapper
Replies: 195
Views: 86283

Re: VideoLan.Interop a .Net libvlc 0.9.x wrapper

Hmm! I have the same problem. Did you find a solution?
Argh!Stupid me ;-) I was missing the plugins sub-directory below the sample programs.

Best regards, Elund
by elund
22 Jan 2009 14:18
Forum: Development around libVLC
Topic: VideoLan.Interop a .Net libvlc 0.9.x wrapper
Replies: 195
Views: 86283

Re: VideoLan.Interop a .Net libvlc 0.9.x wrapper

This wrapper is not working for me. I grabbed publicEnemy's code from here: http://www.syairin.com/SimplePlayer.7z All I get is a blank screen. Details: WindowsXP VLC 0.9.8 Hmm! I have the same problem. Did you find a solution? I was also able to compile all samples from http://meedios.svn.sourcefo...
by elund
22 Jan 2009 10:47
Forum: Web and scripting
Topic: Embedded VLC Player for C# WinForm
Replies: 2
Views: 18340

Re: Embedded VLC Player for C# WinForm

Hi Chris,

It actually works ;-)

And you can download a complete source code example here: http://www.codeplex.com/dmediaplayer.

Best regards, Elund

Go to advanced search