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.
- 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.
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)
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"
});
}