mirror of
https://github.com/9001/copyparty.git
synced 2025-08-19 01:42:20 -06:00
v0.11.42
This commit is contained in:
parent
b0c78910bb
commit
515ee2290b
|
@ -1,8 +1,8 @@
|
||||||
# coding: utf-8
|
# coding: utf-8
|
||||||
|
|
||||||
VERSION = (0, 11, 41)
|
VERSION = (0, 11, 42)
|
||||||
CODENAME = "the grid"
|
CODENAME = "the grid"
|
||||||
BUILD_DT = (2021, 7, 17)
|
BUILD_DT = (2021, 7, 18)
|
||||||
|
|
||||||
S_VERSION = ".".join(map(str, VERSION))
|
S_VERSION = ".".join(map(str, VERSION))
|
||||||
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)
|
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)
|
||||||
|
|
|
@ -229,7 +229,7 @@ class MTag(object):
|
||||||
self.log_func = log_func
|
self.log_func = log_func
|
||||||
self.args = args
|
self.args = args
|
||||||
self.usable = True
|
self.usable = True
|
||||||
self.prefer_mt = args.no_mtag_ff
|
self.prefer_mt = not args.no_mtag_ff
|
||||||
self.backend = "ffprobe" if args.no_mutagen else "mutagen"
|
self.backend = "ffprobe" if args.no_mutagen else "mutagen"
|
||||||
self.can_ffprobe = (
|
self.can_ffprobe = (
|
||||||
HAVE_FFPROBE
|
HAVE_FFPROBE
|
||||||
|
|
Loading…
Reference in a new issue