Skip to content
This repository has been archived by the owner on Aug 27, 2023. It is now read-only.

Commit

Permalink
feat: fix an issue with filenames with space chars when doing getMeta…
Browse files Browse the repository at this point in the history
…data
  • Loading branch information
jstarpl committed Aug 21, 2019
1 parent 0d22781 commit ba3f4b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scanner.js
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ function getMetadata (config, doc) {
// in partial result, and not just "all or nothing".
const args = [
'-hide_banner',
'-i', `${doc.mediaPath}`,
'-i', `"${doc.mediaPath}"`,
'-filter:v', filterString,
'-an',
'-f', 'null',
Expand Down

0 comments on commit ba3f4b1

Please sign in to comment.