本文整理汇总了Python中ChannelList.ChannelList.fillMixedGenreInfo方法的典型用法代码示例。如果您正苦于以下问题:Python ChannelList.fillMixedGenreInfo方法的具体用法?Python ChannelList.fillMixedGenreInfo怎么用?Python ChannelList.fillMixedGenreInfo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ChannelList.ChannelList
的用法示例。
在下文中一共展示了ChannelList.fillMixedGenreInfo方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from ChannelList import ChannelList [as 别名]
# 或者: from ChannelList.ChannelList import fillMixedGenreInfo [as 别名]
#.........这里部分代码省略.........
ADDON_SETTINGS.setSetting("Channel_" + str(channelNum) + "_2", "4")
ADDON_SETTINGS.setSetting("Channel_" + str(channelNum) + "_changed", "true")
self.myOverlay.setBackgroundStatus("Initializing: Autotuning adding TV Genres",string2=uni(self.chanlist.showGenreList[i]),progress=int(channelNum*100//CHANNEL_LIMIT))
if (REAL_SETTINGS.getSetting("autoFindStudios") == "true" or REAL_SETTINGS.getSetting("autoFindMovieGenres") == "true"):
self.chanlist.fillMovieInfo()
if REAL_SETTINGS.getSetting("autoFindStudios") == "true":
self.log("autoTune, adding Movie Studios")
channelNum = baseNum
for i in range(len(self.chanlist.studioList)):
channelNum = self.chkChannelNum(channelNum)
ADDON_SETTINGS.setSetting("Channel_" + str(channelNum) + "_type", "2")
ADDON_SETTINGS.setSetting("Channel_" + str(channelNum) + "_time", "0")
ADDON_SETTINGS.setSetting("Channel_" + str(channelNum) + "_1", uni(self.chanlist.studioList[i]))
ADDON_SETTINGS.setSetting("Channel_" + str(channelNum) + "_changed", "true")
self.myOverlay.setBackgroundStatus("Initializing: Autotuning adding Movie Studios",string2=uni(self.chanlist.studioList[i]),progress=int(channelNum*100//CHANNEL_LIMIT))
if REAL_SETTINGS.getSetting("autoFindMovieGenres") == "true":
self.log("autoTune, adding Movie Genres")
channelNum = baseNum
for i in range(len(self.chanlist.movieGenreList)):
if self.chanlist.movieGenreList[i] != '':
channelNum = self.chkChannelNum(channelNum)
ADDON_SETTINGS.setSetting("Channel_" + str(channelNum) + "_type", "4")
ADDON_SETTINGS.setSetting("Channel_" + str(channelNum) + "_time", "0")
ADDON_SETTINGS.setSetting("Channel_" + str(channelNum) + "_1", uni(self.chanlist.movieGenreList[i]))
ADDON_SETTINGS.setSetting("Channel_" + str(channelNum) + "_changed", "true")
self.myOverlay.setBackgroundStatus("Initializing: Autotuning adding Movie Genres",string2=uni(self.chanlist.movieGenreList[i]),progress=int(channelNum*100//CHANNEL_LIMIT))
if REAL_SETTINGS.getSetting("autoFindMixGenres") == "true":
self.chanlist.fillMixedGenreInfo()
if REAL_SETTINGS.getSetting("autoFindMixGenres") == "true":
self.log("autoTune, adding Mixed Genres")
channelNum = baseNum
for i in range(len(self.chanlist.mixedGenreList)):
if self.chanlist.mixedGenreList[i] != '':
channelNum = self.chkChannelNum(channelNum)
ADDON_SETTINGS.setSetting("Channel_" + str(channelNum) + "_type", "5")
ADDON_SETTINGS.setSetting("Channel_" + str(channelNum) + "_time", "0")
ADDON_SETTINGS.setSetting("Channel_" + str(channelNum) + "_1", uni(self.chanlist.mixedGenreList[i]))
ADDON_SETTINGS.setSetting("Channel_" + str(channelNum) + "_2", "4")
ADDON_SETTINGS.setSetting("Channel_" + str(channelNum) + "_changed", "true")
self.myOverlay.setBackgroundStatus("Initializing: Autotuning adding Mixed Genres",string2=uni(self.chanlist.mixedGenreList[i]),progress=int(channelNum*100//CHANNEL_LIMIT))
#recent movie/tv
if REAL_SETTINGS.getSetting("autoFindRecent") == "true":
self.log("autoTune, adding Recent TV/Movies")
channelNum = baseNum
channelNum = self.chkChannelNum(channelNum)
TVflename = self.chanlist.createRecentlyAddedTV()
ADDON_SETTINGS.setSetting("Channel_" + str(channelNum) + "_type", "0")
ADDON_SETTINGS.setSetting("Channel_" + str(channelNum) + "_time", "0")
ADDON_SETTINGS.setSetting("Channel_" + str(channelNum) + "_1", TVflename)
ADDON_SETTINGS.setSetting("Channel_" + str(channelNum) + "_rulecount", "3")
ADDON_SETTINGS.setSetting("Channel_" + str(channelNum) + "_rule_1_id", "1")
ADDON_SETTINGS.setSetting("Channel_" + str(channelNum) + "_rule_1_opt_1", "Recent TV")
ADDON_SETTINGS.setSetting("Channel_" + str(channelNum) + "_rule_2_id", "12")
ADDON_SETTINGS.setSetting("Channel_" + str(channelNum) + "_rule_3_id", "13")
ADDON_SETTINGS.setSetting("Channel_" + str(channelNum) + "_rule_3_opt_1", "4")
ADDON_SETTINGS.setSetting("Channel_" + str(channelNum) + "_changed", "true")
self.myOverlay.setBackgroundStatus("Initializing: Autotuning adding Recent TV",string2=' ')