I\'m trying to launch VLC in \"dummy\" mode from a Node.js server script, however using child_process.spawn(\'vlc\',[\'-I dummy\']) produces a new console windo
child_process.spawn(\'vlc\',[\'-I dummy\'])
Maybe you could run the process with child_process.spawn('start', ['/b', 'vlc', '-I dummy']) instead?
child_process.spawn('start', ['/b', 'vlc', '-I dummy'])