BrenekH / encodarr

Self-hosted web app for encoding files to a target format using distributed computing.
Mozilla Public License 2.0
63 stars 6 forks source link

Some track indicies fail to parse because they are 64-bit #122

Closed BrenekH closed 3 years ago

BrenekH commented 3 years ago

The simple fix is to change strconv.Atoi to strconv.ParseInt("", 10, 64) in controller/library/mediainfo/mediainfo.go, and changing the FileMetadata struct to use int64 instead of int.

BrenekH commented 3 years ago

Closed by #123