Fix ffmpeg version checker
This commit is contained in:
parent
16de9ff46d
commit
60f1f61579
1 changed files with 8 additions and 2 deletions
|
@ -679,10 +679,16 @@ function getFFmpegVersion () {
|
|||
|
||||
return execPromise(`${ffmpegPath} -version`)
|
||||
.then(stdout => {
|
||||
const parsed = stdout.match(/ffmpeg version .?(\d+\.\d+\.\d+)/)
|
||||
const parsed = stdout.match(/ffmpeg version .?(\d+\.\d+(\.\d+)?)/)
|
||||
if (!parsed || !parsed[1]) return rej(new Error(`Could not find ffmpeg version in ${stdout}`))
|
||||
|
||||
return res(parsed[1])
|
||||
// Fix ffmpeg version that does not include patch version (4.4 for example)
|
||||
let version = parsed[1]
|
||||
if (version.match(/^\d+\.\d+/)) {
|
||||
version += '.0'
|
||||
}
|
||||
|
||||
return res(version)
|
||||
})
|
||||
.catch(err => rej(err))
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue