2011-09-16 16:24:56 +00:00
|
|
|
# Created On: 2011/09/16
|
2015-01-03 21:30:57 +00:00
|
|
|
# Copyright 2015 Hardcoded Software (http://www.hardcoded.net)
|
2014-10-13 19:08:59 +00:00
|
|
|
#
|
2015-01-03 21:33:16 +00:00
|
|
|
# This software is licensed under the "GPLv3" License as described in the "LICENSE" file,
|
2014-10-13 19:08:59 +00:00
|
|
|
# which should be included with this package. The terms are also available at
|
2015-01-03 21:33:16 +00:00
|
|
|
# http://www.gnu.org/licenses/gpl-3.0.html
|
2011-09-16 16:24:56 +00:00
|
|
|
|
2011-11-01 19:44:18 +00:00
|
|
|
from hscommon.trans import trget
|
2011-09-16 16:24:56 +00:00
|
|
|
|
2014-10-13 19:08:59 +00:00
|
|
|
from core.prioritize import (
|
|
|
|
KindCategory, FolderCategory, FilenameCategory, NumericalCategory,
|
|
|
|
SizeCategory, MtimeCategory
|
|
|
|
)
|
2011-09-16 16:24:56 +00:00
|
|
|
|
2011-11-01 19:44:18 +00:00
|
|
|
coltr = trget('columns')
|
2011-09-16 22:01:56 +00:00
|
|
|
|
2011-09-16 16:24:56 +00:00
|
|
|
class DurationCategory(NumericalCategory):
|
2011-09-16 22:01:56 +00:00
|
|
|
NAME = coltr("Duration")
|
2014-10-13 19:08:59 +00:00
|
|
|
|
2011-09-16 16:24:56 +00:00
|
|
|
def extract_value(self, dupe):
|
|
|
|
return dupe.duration
|
|
|
|
|
|
|
|
class BitrateCategory(NumericalCategory):
|
2011-09-16 22:01:56 +00:00
|
|
|
NAME = coltr("Bitrate")
|
2014-10-13 19:08:59 +00:00
|
|
|
|
2011-09-16 16:24:56 +00:00
|
|
|
def extract_value(self, dupe):
|
|
|
|
return dupe.bitrate
|
|
|
|
|
|
|
|
class SamplerateCategory(NumericalCategory):
|
2011-09-16 22:01:56 +00:00
|
|
|
NAME = coltr("Samplerate")
|
2014-10-13 19:08:59 +00:00
|
|
|
|
2011-09-16 16:24:56 +00:00
|
|
|
def extract_value(self, dupe):
|
|
|
|
return dupe.samplerate
|
|
|
|
|
|
|
|
def all_categories():
|
2014-10-13 19:08:59 +00:00
|
|
|
return [
|
|
|
|
KindCategory, FolderCategory, FilenameCategory, SizeCategory, DurationCategory,
|
|
|
|
BitrateCategory, SamplerateCategory, MtimeCategory
|
|
|
|
]
|
|
|
|
|