Skip to content

jurion/.NET-VLC-remote-http-control-

Repository files navigation

WP8.1-W8.1-and-BAND-VLC-remote-control

The library and a demo project for remote HTTP VLC control for windows 8.1, windows phone 8.1 and Microsoft BAND (soon). Library is already good, but UI for phone and windows need some work

There is no configuration page for Windows 8.1 application.

Projects

  • VlcLib : Portable class library. Targeting Windows 8.1, Windows phone 8.1 and .Net 4.5. Includes everything for communication with VLC using HTTP protocol.
  • VLCRemoteControl : Windows 8.1 application. You need to changes IP address and password manually in the code
  • VlcRemotePhone : Windows phone 8.1/10 application (Will not work on windows phone 8.0). There is a configuration page, but not a lot of other design.

VlcRemotePhone

Still missing controls (They are functional in the Lib, but need some design work for App), but YouTube search is already working. You need to use your own API key for testing. (You can change it in code behind for App.xaml)

VlcLib

The library also supports YouTube play back.
var com = new VlcWebControler(this.GetUrl(), this.password.Password);
var isOk = await com.TestConnexion();
if (isOk)
{
    this.connectionResult.Text = "Connection TEST: OK!";
    await com.PlayFile(new VlcLib.Media.VlcMediaItem()
    {
        FileName = "https://www.youtube.com/watch?v=OCy5461BtTg?vq=hd1080"
    });
}

About

Remote control for VLC for Windows phone 8.1, Windows 8.1 and Microsoft BAND

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages