mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
Videos: Refactor codec, content and file type specifications #4770
Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
package fs
|
||||
|
||||
// Kilobyte (KB), Megabyte (MB), and Gigabyte (GB) size constants.
|
||||
// KiloByte, MegaByte, and GigaByte size constants.
|
||||
const (
|
||||
KB = 1024
|
||||
MB = KB * 1024
|
||||
GB = MB * 1024
|
||||
KiloByte = 1024
|
||||
MegaByte = KiloByte * 1024
|
||||
GigaByte = MegaByte * 1024
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user