forked from eugeneware/ffmpeg-static
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.js
executable file
·36 lines (32 loc) · 839 Bytes
/
example.js
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
#!/usr/bin/env node
'use strict'
const {join} = require('path')
const shell = require('any-shell-escape')
const {exec} = require('child_process')
const argv = process.argv.slice(2)
if (argv.includes('-h') || argv.includes('--help')) {
console.info(`
This is just a simple CLI wrapper around the powerful ffmpeg CLI tool.
This script just showcases how to use ffmpeg-static; It wouldn't make
sense to hide a flexible tool behind a limited wrapper script.
Usage:
./example.js src-audio-file.m4a dest-audio-file.mp3
`)
process.exit(0)
}
const [src, dest] = argv
const makeMp3 = shell([
'ffmpeg', '-y', '-v', 'error',
'-i', join(process.cwd(), src),
'-acodec', 'mp3',
'-format', 'mp3',
join(process.cwd(), dest)
])
exec(makeMp3, (err) => {
if (err) {
console.error(err)
process.exit(1)
} else {
console.info('done!')
}
})