My favorites | Sign in
Project Logo
                
Code license: MIT License
Labels: .net, csharp, vlc, libvlc, c-sharp
Feeds:
People details
Project owners:
  tjfontaine
Project committers:
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);
  }
}








Hosted by Google Code