You should read the instruction on the webstore first start. First start ––––––––––– At the first run, you need to select a folder where all your medias are! This is where the media database will index from! It will popup the file app when first starting, select your folder let it scan and you will ...
Do we have any solution to this problem yet? Showing a live stream in the webpage, WITHOUT any software installed in the client system. Installing software in server or using plugin by the client are acceptable though. Note: My input stream is MPEG-4 format. Thanks, Gopi You will have to install vl...
Thanks alot jb to put in your hard work to fix it. BTW it is again "broken" in the 0.8.6h version, but I don't want you to put in another 6+ hours to fix it again I am very happy the f version works on my old notebook with win98 :D Thanks and keep up the good work on VLC Maurice 8) EDIT: O...
/Knut To start playing in full screen is easily done I will search for the code change it and send you the updated file. Controlling the DVD with the remote is not as easy, maybe it could be done if I set the focus on the video and ignore the keypresses in MCE, but I don't know I have not much time ...
Did you use an administrator account to install. It has indeed something todo with the dll. If it doesn't do it with the admin account then I will see that I'll find some time and send you a manual register file, so you can register the file manually. BTW no one has reported this before so that is w...
I think you installed it on Vista, the problem is I can't get the dll registered the proper way. I still haven't had time to investigate what is going wrong. It should work on xp media center.
You are mixing the version 1 and 2 of the activeX. This is the properlink to the latest testpage, if you want to use the latest version. http://people.videolan.org/~damienf/plugin-0.8.6.html Look at the embed progid the first version is VideoLAN.VLCPlugin.1 and the latest is VideoLAN.VLCPlugin.2 The...
@Quovodis First of all thanks for the great work on the activeX. :) My question is, are there gonna be changes to the activeX when VLCplayer 0.9.0 is released? I am planning to write a vista media center plugin for the vlc player, but if there gonna be some big changes then I will write it from scra...
I didn't know but you can loose the borders in youre window see below. :) window.open('about:blank',null,"fullscreen = yes ,channelmode = yes ,status=no,toolbar=no,menubar=no,location=no,scrollbars=no"); I got it from here http://msdn2.microsoft.com/en-us/library/ms536651.aspx so you can s...
You can load all the files in visual studio 2005 and compile it. I did it once and it worked but i haven't installed visual studio 2005 yet on my freshly installed vista so i can't say how i did it exactly.
That is not true only the get and setvariable are missing (wich where ver convenient). You can also look at the .net interface here http://wiki.videolan.org/.Net_Interface_to_VLC from Tappen there are some more functions in it and it is written in C#.
Are people seeing this same problem when using a linux Firefox plugin, or only with Windows? I don't know for the firefox plugin but in windows ie the plugin crashes also when your only using one object if you refresh the page multiple times. The autoplay issue you mentioned is easy to be solved us...
Ok, but i must warn you i haven't tested it myself, because i have no mozilla based browser installed at the moment. First the htm page: <html> <head><title>Demo of VLC mozilla plugin</title> <script src="buildVLCtable.js" type="text/javascript"></script> </head> <body onload=&qu...
By using javascript he means using a function wich dynamicly writes (document.write) the object in the page.
If you don't know how to do it i can create a little example for you.
It doesn't gonna work when you put vlc in fullscreen, because youre document looses focus. What you can do is resize the activeX so it looks like fullscreen but you still keep the window borders from youre explorer. If it is for the use only on local computers then you could write it in a HTA file a...
@cinnabagel for embedding the player in ie or mozzilla look at the source of the example page of the activeX http://people.videolan.org/~damienf/plugin-0.8.6.html For more information on the activeX look in the first post of this subforum http://forum.videolan.org/viewtopic.php?f=16&t=29654 Maur...
Ok here is the code, I made a little html page so you can try it in your internet browser. Just copy and paste in notepad and save it as test.htm If you open the htm page you have to first fill in the MRL any path to a videofile on your hd ie "C:\test.avi" without the quotes. I commented t...
Ok i will look if i can filter out the code so you can understand it. Please note i did it in javascript, but at least you get the idea.
I will do it tonight and post the code.
From the documentation pages see below there are some more functions in v2 only the get and setvariable which are great aren't in there. Build HTML pages that use the plugin (version > 0.8.5.1) Additionally to viewing video on all pages, you can build custom pages that will use the advanced features...
I used the v2 in my MCE plugin so i didn't have the setvariable. I solved it by taking the index where the video is, stopped it and changed the contrast hue and saturation by adding options. Then start the video at the index i got before the video was stopped. I know it isn't the best solution but f...