vlc

python vlc.py or vlcwidget.py unable to open the MRL

I am encountering the following error. The mpg file is in the same directory where vlcwidget.py is located. Could some one point it out the issue or share thier experience? C:\workspace\python-HEAD\python>vlcwidget.py trn_anaglyph_adj.mpg libdvdnav: Using dvdnav version 4.1.4 libdvdread: Using libdvdcss version 1.2.10 for DVD access li...

Start VLC from asp.net webpage

I have the following code: protected void VLC_Click(object sender, EventArgs e) { SecureString password = ConvertStringToSecureString("[password]"); string domain = ""; Process.Start(@"C:\Program Files\VideoLAN\VLC\vlc.exe ", "[username]", password, domain); } private SecureString ConvertStringToSecureString(string s) { ...

Can an HTML object tag be placed inside an HTML form tag?

I have a simple ASP.NET page that uses the VLC media player to play a video in IE. I also have four buttons to control the playback: Play, Pause, Stop, and Mute The four buttons call JavaScript functions that access the ActiveX control. When I click on any of the buttons, I get the following error in the JavaScript function: "...

How to play youtube videos through vlc plugin ?

Hello, I'm using vlc plugin into C# Windows form application. It works fine with all media type but it can't play youtube videos through the plugin also it can be played in the main player itself. I'm using the following code : axVLCPlugin2.playlist.add("http://www.youtube.com/watch?v=BxPtmLmqdXU"); axVLCPlugin2.playlist.play();...

adding dll library to java using idea for using a program

Hi all I am trying to add and use a program called JVLC to my program. I downloaded a zip file that contains a jar file(jvlc.jar) for java interface and 2 dll files (jvlc.dll , libvlc.dll) and a folder that contains many dll files. when I run my program an UnsatisfiedLinkError occurs. I used this code to add those 2 dll files to my proj...

fatal error LNK1107 when generating lib file from vlc dll.

Hi, I followed the instructions on this site http://wiki.videolan.org/GenerateLibFromDll for generating a lib file from a dll. The def file is created fine and I have editted it as suggested but when I try to generate the lib file I get the LNK1107 error for an invalid or corrupt file. Any help would be most welcome. Regards ...

use ActiveX in java

Hi all I am trying to develop a program that uses a program called VLC to display media. This program can be installed on windows; also there is a version for using in java called JVLC. I have used executing vlc.exe as a process. also I have tried to use JVLC. I downloaded a dictionary that contains one interface jar files and some dll f...

Problems with VLC and instant messaging.

I've have asked these questions before with no proper answer. I hope I'll get some response here. I'm developing an instant messenger in python and I'd like to handle video/audio streaming with VLC. Tha basic idea right now is that in each IM client I'm running one VLC instance that acts as a server that streams to all the users I want...

Is it possible to play a song in vlc player out of the command line?

Hi, is there a shell command in linux (for vlc media player) to open a *.mp3 file? Thank you very much ;D ...

Creating DVD navigation using VLC versoin 1.1.4

Hi, I have been developing a DVD player using vlc version 1.1.1 libraries and have recently upgraded to version 1.1.4. Previously I have been getting the current vlc_object_t by using libvlc_get_vlc_instance and then using the object, along with the relevant key information, in subsequent calls to __var_SetInteger. This mehtod worked ...