Skip to content

Commit

Permalink
fix alac quality tag
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaarey committed Feb 12, 2025
1 parent 8193efc commit 53044d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -1777,7 +1777,7 @@ func extractMediaQuality(b string) (string, error) {
fmt.Println(err)
}
KHZ := float64(HZ) / 1000.0
Quality = fmt.Sprintf("%sB-%skHz", bitDepth, KHZ)
Quality = fmt.Sprintf("%sB-%.1fkHz", bitDepth, KHZ)
break
}
}
Expand Down

0 comments on commit 53044d8

Please sign in to comment.