What's new? | Help | Directory | Sign in
Google
                
Code License: MIT License
Labels: .net, csharp, vlc, libvlc, c-sharp
Feeds:
How to join?
Project owners:
  tjfontaine
Project members:
scott.e.graves, maitredede

A set of bindings written in C# to the libvlc api.

Using the API is simple

using System;
using Atx.LibVLC;

public class Test
{
  public static void Main(string[] args)
  {
    VlcEngine eng = new VlcEngine();
    int id = eng.Add(args[0], "A file to play");
    eng.Play(id);
    while(eng.IsPlaying)
      Console.Write("{0} / {1}\r", eng.Time / 1000, eng.Length / 1000);
  }
}