Commit ee516160 authored by Filippo Carone's avatar Filippo Carone

new convenience constructor added

parent 85dfdfdd
......@@ -61,6 +61,11 @@ public class JVLC
System.arraycopy(args, 0, myargs, 1, args.length);
instance = createInstance(myargs);
}
public JVLC(String args)
{
this(args.split(" "));
}
public MediaInstance play(String media)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment