Search found 5 matches

Go to advanced search

by KellenSunderland
13 Jan 2013 03:44
Forum: Development around libVLC
Topic: Windows 8 Store libVLC development
Replies: 33
Views: 6842

Re: Windows 8 Store libVLC development

Hey Nicolas. I'm just working on getting it cleanly integrated with our new app right now. I'll try and post some usable examples soon.

Eventually all the code will be posted publically. Before this happens I'd want the vlc experts to take a look and do some code review.
by KellenSunderland
05 Nov 2012 06:18
Forum: Development around libVLC
Topic: Windows 8 Store libVLC development
Replies: 33
Views: 6842

Re: Windows 8 Store libVLC development

I picked up a Surface myself to test on. There's basically three things that will have to happen to get VLC installed on other winrt devices from what I can tell: 1. We'll need to get libvlc + plugins cross compiled on arm, and included in a wrapper app (like the one I've linked above). 2. We'll nee...
by KellenSunderland
02 Nov 2012 05:48
Forum: Development around libVLC
Topic: Windows 8 Store libVLC development
Replies: 33
Views: 6842

Re: Windows 8 Store libVLC development

Here's a screencast of what VLC looks like inside a windows store app. This is playing a 720p mkv file. CPU usage was around 10-14%, again likely because of my horrible frame copying. In the youtube version of the video it looks a little choppy, but watching it in front of me there's no dropped fram...
by KellenSunderland
02 Nov 2012 04:37
Forum: Development around libVLC
Topic: Windows 8 Store libVLC development
Replies: 33
Views: 6842

Windows 8 Store libVLC development

Hey everyone. I've been working for the last little while on getting a VLC Windows 8 store app working. I thought I'd share where I've gotten to so far and see if you had any comments. I've got some ideas for metro user interfaces that I wanted a test app for, a media player seemed like a good idea....
by KellenSunderland
13 Mar 2012 05:14
Forum: Development around libVLC
Topic: Needing Guide to Using LibVLC
Replies: 9
Views: 2072

Re: Needing Guide to Using LibVLC

Try the declaration like this:

//LIBVLC_API libvlc_instance_t * libvlc_new( int argc , const char *const *argv );
typedef libvlc_instance_t* (LIBVLC_API * _libvlc_new)( int argc , const char *const *argv );
_libvlc_new libvlc_new;

Go to advanced search