aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tools/peertube-watch.ts
blob: 892c9e7a695e2c024d06a201ecb03fb7f31b3fa3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { registerTSPaths } from '../helpers/register-ts-paths'
registerTSPaths()

import { program, Option, OptionValues } from 'commander'
import { join } from 'path'
import { execSync } from 'child_process'

program
  .name('watch')
  .arguments('<url>')
  .addOption(
    new Option('-g, --gui <player>', 'player type')
      .default('vlc')
      .choices([ 'airplay', 'stdout', 'chromecast', 'mpv', 'vlc', 'mplayer', 'xbmc' ])
  )
  .option('-r, --resolution <res>', 'video resolution', '480')
  .addHelpText('after', '\n\n  Examples:\n\n' +
    '    $ peertube watch -g mpv https://peertube.cpy.re/videos/watch/e8a1af4e-414a-4d58-bfe6-2146eed06d10\n' +
    '    $ peertube watch --gui stdout https://peertube.cpy.re/videos/watch/e8a1af4e-414a-4d58-bfe6-2146eed06d10\n' +
    '    $ peertube watch https://peertube.cpy.re/videos/watch/e8a1af4e-414a-4d58-bfe6-2146eed06d10\n'
  )
  .action((url, options) => run(url, options))
  .parse(process.argv)

function run (url: string, options: OptionValues) {
  if (!url) {
    console.error('<url> positional argument is required.')
    process.exit(-1)
  }

  const cmd = 'node ' + join(__dirname, 'node_modules', 'webtorrent-hybrid', 'bin', 'cmd.js')
  const args = ` --${options.gui} ` +
    url.replace(/(\/videos\/watch\/)|\/w\//, '/download/torrents/') +
    `-${options.resolution}.torrent`

  try {
    execSync(cmd + args)
  } catch (err) {
    console.error('Cannto exec command.', err)
    process.exit(-1)
  }
}