Access Vlc Media Player From Java
Thursday, 20 March 2014Posted by
Amrishwa
0 Comments
Vlc Media Player is a open source media player supports all audio and video Formats.
you can download it from vlc media player website
here is the link
Vlc Media Player
We can access vlc media player from java simply put this code.
We can access vlc media player from java simply put this code.
try
{
String c="C:/Program Files/VideoLAN/VLC/vlc.exe -f E:/dhoom3.mp4";
Runtime.getRuntime().exec(c);
}
catch(Exception exp)
{
System.out.println(exp);
}
Note:-This Project is developed on Windows 7 it may give differ output on other Operating systems
Subscribe to:
Post Comments (Atom)