Exemplo n.º 1
0
        /**
         * Loads the native LibVLC and creates a LibVLC instance.
         *
         * @param args VLC command line parameters for the LibVLC Instance.
         */
        public VLC(string[] args)
        {
            U8String[] argv = new U8String[args.Length];
            for (int i = 0; i < args.Length; i++)
            {
                argv[i] = new U8String(args[i]);
            }

            handle = LibVLC.Create(argv.Length, argv, ex);
            Raise();
        }