blob: 766936dcb678f42597399467708004dfbd766a55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package YalpOutputs.YalpVlcTelnetOutput;
import YalpInterfaces.*;
public class YalpVlcTelnetOutput {
public static void main(String[] args) {
try {
System.setProperty("java.security.policy","output.policy");
}
catch (Exception e) {//DEBUG
System.out.println ("Output SecurityManager File not found" + e);
System.exit(0);
}
VlcStreamer vlc = new VlcStreamer("localhost", 2501, "/usr/bin/vlc", args);
System.out.println("VlcTelnetOutput");
}
}
|