Skip to content

Find VLC player command line path

License

Notifications You must be signed in to change notification settings

feross/vlc-command

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vlc-command travis npm downloads javascript style guide

Find VLC player command line path

install

npm install vlc-command

usage

var cp = require('child_process')
var vlcCommand = require('vlc-command')

vlcCommand(function (err, cmd) {
  if (err) return console.error('could not find vlc command path')

  if (process.platform === 'win32') {
    cp.execFile(cmd, ['--version'], function (err, stdout) {
      if (err) return console.error(err)
      console.log(stdout)
    })
  } else {
    cp.exec(cmd + ' --version', function (err, stdout) {
      if (err) return console.error(err)
      console.log(stdout)
    })
  }
})

license

MIT. Copyright (c) Feross Aboukhadijeh.

About

Find VLC player command line path

Resources

License

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published