| Projects on Google Code | Results 1 - 4 of 4 |
GTK wrapper for LibVLC. This library allows you to use libvlc from C code in a GTK interface with GTK widget representing the player.
_*Warning :* A new blog is now avaliable. The channel playlists can be found in the download section and packages are also avaliable from my web site. Eric._
The goal of this project is to create a WebTV player, working on the Linux platform. It can be used by french people to watch ADSL TV on th...
Java Deamon to record and stream any DVB input using jvlc and libvlc.
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);
...