This also enables large file support to read metadata from movie length video files.
This commit is contained in:
parent
4a2e4fc99f
commit
aa119c72ea
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@ func (c *Convert) ToJson(f *MediaFile) (jsonName string, err error) {
|
|||
|
||||
log.Debugf("exiftool: extracting metadata from %s", relName)
|
||||
|
||||
cmd := exec.Command(c.conf.ExifToolBin(), "-j", f.FileName())
|
||||
cmd := exec.Command(c.conf.ExifToolBin(), "-api", "QuickTimeUTC=1 LargeFileSupport=1", "-j", f.FileName())
|
||||
|
||||
// Fetch command output.
|
||||
var out bytes.Buffer
|
||||
|
|
Loading…
Reference in a new issue