本文整理汇总了Python中MOD.play方法的典型用法代码示例。如果您正苦于以下问题:Python MOD.play方法的具体用法?Python MOD.play怎么用?Python MOD.play使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MOD
的用法示例。
在下文中一共展示了MOD.play方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: runTest
# 需要导入模块: import MOD [as 别名]
# 或者: from MOD import play [as 别名]
def runTest():
status("active")
TestName = "ManualSearch"
ScriptName = "conflicts"
ScriptIndex = "3"
Grabber = DO.grab_define()
platform = DO.load_platform()
Modulation = "DVBS"
FEC = "3/4"
SR = "27500000"
Stream = "\\X_0000_00000_MUX_32000_EPG_Software_20130328a.ts"
Frequency = 1476
Modulator = "1"
COM = "COM7"
settings = [ScriptName, ScriptIndex, Grabber, Modulation, FEC, SR, Stream, Frequency, Modulator, COM]
DO.save_settings(settings)
GRAB.start_capture()
MOD.stop(Modulator)
# macros
searching_from_wizard_general_E501 = ["ok 1 3400", "ok 1 3400", "ok 1 3400", "right 1 3400", "ok 1 3400", "ok 1 22200", "ok 1 15000", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_general_english_E501 = ["up 2 3400", "right 1 1000", "down 2 3400", "ok 1 3400", "ok 1 3400", "ok 1 3400", "right 1 3400", "ok 1 3400", "ok 1 22200", "ok 1 15000", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_centre_E501 = ["ok 1 3400", "ok 1 3400", "ok 1 3400", "right 1 3400", "ok 1 3400", "ok 1 22200", "down", "ok 1 15000", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_centre_english_E501 = ["up 3 3400", "right 1 1000", "down 3 3400", "ok 1 3400", "ok 1 3400", "ok 1 3400", "right", "ok 1 3400", "ok 1 22200", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_south_E501 = ["ok 1 3400", "ok 1 3400", "ok 1 3400", "right 1 3400", "ok 1 3400", "ok 1 22200", "down", "down", "ok 1 15000", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_general_ALL = ["ok 1 3400", "ok 1 3400", "right 1 3400", "ok 1 3400", "ok 1 22200", "ok 1 15000", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_general_english_ALL = ["up 2 3400", "right 1 1000", "down 2 3400", "ok 1 3400", "ok 1 3400", "right", "ok 1 3400", "ok 1 22200", "ok 1 15000", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_centre_ALL = ["ok 1 3400", "ok 1 3400", "right 1 3400", "ok 1 3400", "ok 1 22200", "down", "ok 1 5000", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_centre_english_ALL = ["up 3 3400", "right 1 1000", "down 3 3400", "ok 1 3400", "ok 1 3400", "right", "ok 1 3400", "ok 1 22200", "down 1 1000", "ok 1 15000", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_south_ALL = ["ok 1 3400", "ok 1 3400", "right 1 3400", "ok 1 3400", "ok 1 22200", "down", "down", "ok 1 15000", "ok 1 10000", "exit 2 3000"]
load_regions_E501 = ["ok 1 3400", "ok 1 3400", "ok 1 3400", "right 1 3400", "ok 1 3400", "ok 1 22200"]
load_regions_english_E501 = ["up 2 2400", "right 1 1000", "down 2 2400", "ok 1 3400", "ok 1 3400", "ok 1 3400", "right", "ok 1 3400", "ok 1 22200"]
load_regions_ALL = ["ok 1 3400", "ok 1 3400", "right 1 3400", "ok 1 3400", "ok 1 22200"]
load_regions_english_ALL = ["up 2 2400", "right 1 1000", "down 2 2400", "ok 1 3400", "ok 1 3400", "right", "ok 1 3400", "ok 1 22200"]
############################ TestCase 1 ##########################################
testcase = 1
status("active")
MOD.play_stream(Modulation, FEC, SR, Stream, Frequency, Modulator)
UART.default_settings()
if platform in ["E501", "E502", "A230"]:
RC.push(searching_from_wizard_general_E501)
else:
RC.push(searching_from_wizard_general_ALL)
MOD.stop(Modulator)
MOD.play(Modulator)
UART.start_app("scheduler")
RC.push(["red", "ok 1 2400", "down 2 1000", "ok 1 2000", "ok 1 2000", "right 1 1000", "up 2 1000", "ok 1 2000", "ok 1 2000", "exit 5 2400", "1 1 2400"])
UART.start_app("dvbsmanualscanner")
sleep(120)
RC.push(["exit 2 3000", "red 1 2500"])
GRAB.compare(testcase)
############################ TestCase 2 ##########################################
testcase = 2
status("manual")
GRAB.compare(testcase)
############################ TestCase 3 ##########################################
testcase = 3
status("manual")
GRAB.compare(testcase)
############################ TestCase 4 ##########################################
testcase = 4
status("manual")
GRAB.compare(testcase)
############################ TestCase 5 ##########################################
testcase = 5
status("manual")
GRAB.compare(testcase)
############################ TestCase 6 ##########################################
testcase = 6
status("active")
MOD.play_stream(Modulation, FEC, SR, Stream, Frequency, Modulator)
UART.default_settings()
RC.push(["exit 2 2400"])
UART.activate_app("dvbsmanualscanner")
UART.start_app("dvbsmanualscanner")
RC.push(["cinemahalls"])
GRAB.compare(testcase)
############################ TestCase 7 ##########################################
testcase = 7
status("active")
RC.push(["mail"])
GRAB.compare(testcase)
############################ TestCase 8 ##########################################
testcase = 8
status("active")
RC.push(["red"])
GRAB.compare(testcase)
############################ TestCase 9 ##########################################
testcase = 9
status("active")
RC.push(["blue"])
GRAB.compare(testcase)
############################ TestCase 10 ##########################################
testcase = 10
status("active")
RC.push(["yellow"])
GRAB.compare(testcase)
############################ TestCase 11 ##########################################
testcase = 11
#.........这里部分代码省略.........
示例2: runTest
# 需要导入模块: import MOD [as 别名]
# 或者: from MOD import play [as 别名]
def runTest():
status("active")
TestName = "Infobanner_2"
ScriptName = "main"
ScriptIndex = "1"
Grabber = DO.grab_define()
platform = DO.load_platform()
Modulation = "DVBS"
FEC = "3/4"
SR = "27500000"
Stream = "\\X_0000_00000_MUX_32000_EPG_Software_20130328a.ts"
Stream_1 = "\\DRE Services\\X_0000_00000_MUX_38000_DRE4_Infocas_1.ts"
Stream_2 = "\\DRE Services\\X_0000_00000_MUX_38000_DRE4_TVMail_1.ts"
Frequency = 1476
Modulator = "1"
COM = "COM7"
settings = [ScriptName, ScriptIndex, Grabber, Modulation, FEC, SR, Stream, Frequency, Modulator, COM]
DO.save_settings(settings)
GRAB.start_capture()
MOD.stop(Modulator)
# macros
searching_from_wizard_general_E501 = ["ok 1 3400", "ok 1 3400", "ok 1 3400", "right 1 3400", "ok 1 3400", "ok 1 22200", "ok 1 15000", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_general_english_E501 = ["up 2 3400", "right 1 1000", "down 2 3400", "ok 1 3400", "ok 1 3400", "ok 1 3400", "right 1 3400", "ok 1 3400", "ok 1 22200", "ok 1 15000", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_centre_E501 = ["ok 1 3400", "ok 1 3400", "ok 1 3400", "right 1 3400", "ok 1 3400", "ok 1 22200", "down", "ok 1 15000", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_centre_english_E501 = ["up 3 3400", "right 1 1000", "down 3 3400", "ok 1 3400", "ok 1 3400", "ok 1 3400", "right", "ok 1 3400", "ok 1 22200", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_south_E501 = ["ok 1 3400", "ok 1 3400", "ok 1 3400", "right 1 3400", "ok 1 3400", "ok 1 22200", "down", "down", "ok 1 15000", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_general_ALL = ["ok 1 3400", "ok 1 3400", "right 1 3400", "ok 1 3400", "ok 1 22200", "ok 1 15000", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_general_english_ALL = ["up 2 3400", "right 1 1000", "down 2 3400", "ok 1 3400", "ok 1 3400", "right", "ok 1 3400", "ok 1 22200", "ok 1 15000", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_centre_ALL = ["ok 1 3400", "ok 1 3400", "right 1 3400", "ok 1 3400", "ok 1 22200", "down", "ok 1 5000", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_centre_english_ALL = ["up 3 3400", "right 1 1000", "down 3 3400", "ok 1 3400", "ok 1 3400", "right", "ok 1 3400", "ok 1 22200", "down 1 1000", "ok 1 15000", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_south_ALL = ["ok 1 3400", "ok 1 3400", "right 1 3400", "ok 1 3400", "ok 1 22200", "down", "down", "ok 1 15000", "ok 1 10000", "exit 2 3000"]
load_regions_E501 = ["ok 1 3400", "ok 1 3400", "ok 1 3400", "right 1 3400", "ok 1 3400", "ok 1 22200"]
load_regions_english_E501 = ["up 2 2400", "right 1 1000", "down 2 2400", "ok 1 3400", "ok 1 3400", "ok 1 3400", "right", "ok 1 3400", "ok 1 22200"]
load_regions_ALL = ["ok 1 3400", "ok 1 3400", "right 1 3400", "ok 1 3400", "ok 1 22200"]
load_regions_english_ALL = ["up 2 2400", "right 1 1000", "down 2 2400", "ok 1 3400", "ok 1 3400", "right", "ok 1 3400", "ok 1 22200"]
############################ TestCase 1 ##########################################
testcase = 1
status("active")
MOD.play_stream(Modulation, FEC, SR, Stream, Frequency, Modulator)
UART.default_settings()
RC.push(["exit 1 3000", "red 1 3000"]) # RC macros from remote_control.ini file
GRAB.compare(testcase)
############################ TestCase 2 ##########################################
testcase = 2
status("active")
UART.default_settings()
OPER.search()
MOD.stop(Modulator)
MOD.play(Modulator)
RC.push(["exit 1 3000", "red 1 3000"])
GRAB.compare(testcase)
############################ TestCase 3 ##########################################
testcase = 3
status("active")
RC.push(["exit 1 3000", "green 1 3000"])
GRAB.compare(testcase)
############################ TestCase 4 ##########################################
testcase = 4
status("active")
RC.push(["exit 1 3000", "6 1 5000", "yellow 1 3000"])
GRAB.compare(testcase)
############################ TestCase 5 ##########################################
testcase = 5
status("active")
RC.push(["exit 2 5000", "0 1 5000", "play/pause 1 50000", "play/pause 1 5000", "red 1 5000"])
GRAB.compare(testcase)
############################ TestCase 6 ##########################################
testcase = 6
status("active")
RC.push(["exit 1 5000", "green 1 5000"])
GRAB.compare(testcase)
############################ TestCase 7 ##########################################
testcase = 7
status("active")
RC.push(["exit 1 5000", "yellow 1 5000"])
GRAB.compare(testcase)
############################ TestCase 8 ##########################################
testcase = 8
status("active")
RC.push(["stop 1 5000", "exit 2 5000", "red 1 5000", "up"])
GRAB.compare(testcase)
############################ TestCase 9 ##########################################
testcase = 9
status("active")
RC.push(["down 1 3000"])
GRAB.compare(testcase)
############################ TestCase 10 ##########################################
testcase = 10
status("active")
RC.push(["up 1 3000", "left 1 3000"])
GRAB.compare(testcase)
############################ TestCase 11 ##########################################
testcase = 11
status("active")
RC.push(["right 2 3000"])
GRAB.compare(testcase)
############################ TestCase 12 ##########################################
testcase = 12
#.........这里部分代码省略.........
示例3: runTest
# 需要导入模块: import MOD [as 别名]
# 或者: from MOD import play [as 别名]
def runTest():
status("active")
TestName = "Help"
ScriptName = "functionality"
ScriptIndex = "1"
Grabber = DO.grab_define()
platform = DO.load_platform()
Modulation = "DVBS"
FEC = "3/4"
SR = "27500000"
Stream = "\\036E_20000_LCN-25_20140418a.ts"
Frequency = 1476
Modulator = "1"
COM = "COM7"
settings = [ScriptName, ScriptIndex, Grabber, Modulation, FEC, SR, Stream, Frequency, Modulator, COM]
DO.save_settings(settings)
GRAB.start_capture()
MOD.stop(Modulator)
# macros
searching_from_wizard_E501 = ["ok 1 2400", "ok 1 2400", "ok 1 2400", "right 1 2400", "ok 1 2400", "ok 1 45000", "ok 1 15000", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_ALL = ["ok 1 2400", "ok 1 2400", "right 1 2400", "ok 1 2400", "ok 1 45000", "ok 1 15000", "ok 1 10000", "exit 2 3000"]
############################ TestCase 1 ##########################################
testcase = 1
status("active")
MOD.play_stream(Modulation, FEC, SR, Stream, Frequency, Modulator)
UART.default_settings()
if platform in ["E501", "E502", "A230"]:
RC.push(searching_from_wizard_E501)
else:
RC.push(searching_from_wizard_ALL)
RC.push(["help 1 2400"])
GRAB.compare(testcase)
############################ TestCase 2 ##########################################
testcase = 2
status("active")
RC.push(["exit 3 1000", "menu", "left", "ok 1 2400"])
GRAB.compare(testcase)
############################ TestCase 3 ##########################################
testcase = 3
status("active")
GRAB.compare(testcase)
############################ TestCase 4 ##########################################
testcase = 4
status("active")
RC.push(["right", "ok 1 2400"])
GRAB.compare(testcase)
############################ TestCase 5 ##########################################
testcase = 5
status("active")
RC.push(["exit 1 2400"])
GRAB.compare(testcase)
############################ TestCase 6 ##########################################
testcase = 6
status("active")
RC.push(["exit 1 2000", "ok 1 2400"])
GRAB.compare(testcase)
############################ TestCase 7 ##########################################
testcase = 7
status("active")
RC.push(["menu 1 2400"])
GRAB.compare(testcase)
############################ TestCase 8 ##########################################
testcase = 8
status("manual")
GRAB.compare(testcase)
############################ TestCase 9 ##########################################
testcase = 9
status("active")
RC.push(["exit 3 2400", "help 1 2000", "exit 1 2400"])
GRAB.compare(testcase)
############################ TestCase 10 ##########################################
testcase = 10
status("manual")
GRAB.compare(testcase)
############################ TestCase 11 ##########################################
testcase = 11
status("active")
RC.push(["exit 3 2400", "help 1 2000", "help 1 2400"])
GRAB.compare(testcase)
############################ TestCase 12 ##########################################
testcase = 12
status("active")
RC.push(["exit 3 2400", "3 1 5000", "help 1 2000", "last 1 2000"])
GRAB.compare(testcase)
############################ TestCase 13 ##########################################
testcase = 13
status("manual")
RC.push(["exit 3 2400", "help 1 2000", "mute 1 2400"])
GRAB.compare(testcase)
############################ TestCase 14 ##########################################
testcase = 14
status("manual")
RC.push(["exit 3 2400", "help 1 2000", "stb 1 2400"])
GRAB.compare(testcase)
############################ TestCase 15 ##########################################
testcase = 15
status("active")
RC.push(["exit 3 2400", "help 1 2000", "VolUp 1 2400"])
#.........这里部分代码省略.........
示例4: runTest
# 需要导入模块: import MOD [as 别名]
# 或者: from MOD import play [as 别名]
def runTest():
status("active")
TestName = "Settings"
ScriptName = "12-scripts"
ScriptIndex = "12"
Grabber = DO.grab_define()
platform = DO.load_platform()
Modulation = "DVBS"
FEC = "3/4"
SR = "27500000"
Stream = "\\X_0000_00000_MUX_32000_EPG_Software_20130328a.ts"
Frequency = 1476
Modulator = "1"
COM = "COM7"
settings = [ScriptName, ScriptIndex, Grabber, Modulation, FEC, SR, Stream, Frequency, Modulator, COM]
DO.save_settings(settings)
GRAB.start_capture()
MOD.stop(Modulator)
# macros
searching_from_wizard_general_E501 = ["ok 1 3400", "ok 1 3400", "ok 1 3400", "right 1 3400", "ok 1 3400", "ok 1 22200", "ok 1 15000", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_general_english_E501 = ["up 2 3400", "right 1 1000", "down 2 3400", "ok 1 3400", "ok 1 3400", "ok 1 3400", "right 1 3400", "ok 1 3400", "ok 1 22200", "ok 1 15000", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_centre_E501 = ["ok 1 3400", "ok 1 3400", "ok 1 3400", "right 1 3400", "ok 1 3400", "ok 1 22200", "down", "ok 1 15000", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_centre_english_E501 = ["up 3 3400", "right 1 1000", "down 3 3400", "ok 1 3400", "ok 1 3400", "ok 1 3400", "right", "ok 1 3400", "ok 1 22200", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_south_E501 = ["ok 1 3400", "ok 1 3400", "ok 1 3400", "right 1 3400", "ok 1 3400", "ok 1 22200", "down", "down", "ok 1 15000", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_general_ALL = ["ok 1 3400", "ok 1 3400", "right 1 3400", "ok 1 3400", "ok 1 22200", "ok 1 15000", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_general_english_ALL = ["up 2 3400", "right 1 1000", "down 2 3400", "ok 1 3400", "ok 1 3400", "right", "ok 1 3400", "ok 1 22200", "ok 1 15000", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_centre_ALL = ["ok 1 3400", "ok 1 3400", "right 1 3400", "ok 1 3400", "ok 1 22200", "down", "ok 1 5000", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_centre_english_ALL = ["up 3 3400", "right 1 1000", "down 3 3400", "ok 1 3400", "ok 1 3400", "right", "ok 1 3400", "ok 1 22200", "down 1 1000", "ok 1 15000", "ok 1 10000", "exit 2 3000"]
searching_from_wizard_south_ALL = ["ok 1 3400", "ok 1 3400", "right 1 3400", "ok 1 3400", "ok 1 22200", "down", "down", "ok 1 15000", "ok 1 10000", "exit 2 3000"]
load_regions_E501 = ["ok 1 3400", "ok 1 3400", "ok 1 3400", "right 1 3400", "ok 1 3400", "ok 1 22200"]
load_regions_english_E501 = ["up 2 2400", "right 1 1000", "down 2 2400", "ok 1 3400", "ok 1 3400", "ok 1 3400", "right", "ok 1 3400", "ok 1 22200"]
load_regions_ALL = ["ok 1 3400", "ok 1 3400", "right 1 3400", "ok 1 3400", "ok 1 22200"]
load_regions_english_ALL = ["up 2 2400", "right 1 1000", "down 2 2400", "ok 1 3400", "ok 1 3400", "right", "ok 1 3400", "ok 1 22200"]
############################ TestCase 1 ##########################################
testcase = 1
status("active")
MOD.play_stream(Modulation, FEC, SR, Stream, Frequency, Modulator)k
UART.default_settings()
if platform in ["E501", "E502", "A230"]:
RC.push(searching_from_wizard_general_E501)
else:
RC.push(searching_from_wizard_general_ALL)
UART.start_app("settings")
RC.push(["cinemahalls"])
GRAB.compare(testcase)
############################ TestCase 2 ##########################################
testcase = 2
status("active")
RC.push(["help"])
GRAB.compare(testcase)
############################ TestCase 3 ##########################################
testcase = 3
status("active")
MOD.stop(Modulation)
MOD.play(Modulation)
UART.start_app("scheduler")
RC.push(["red", "ok 1 2400", "down 4 1000", "ok", "ok", "right 1 1000", "up 2 1000", "ok", "ok", "exit 5 2400"])
UART.start_app("settings")
sleep(80)
GRAB.compare(testcase)
############################ TestCase 4 ##########################################
testcase = 4
status("manual")
GRAB.compare(testcase)
############################ TestCase 5 ##########################################
testcase = 5
status("manual")
GRAB.compare(testcase)
############################ TestCase 6 ##########################################
testcase = 6
status("manual")
GRAB.compare(testcase)
############################ TestCase 7 ##########################################
testcase = 7
status("manual")
GRAB.compare(testcase)
############################ TestCase 8 ##########################################
testcase = 8
status("active")
RC.push(["VolUp 1 2400"])
GRAB.compare(testcase)
############################ TestCase 9 ##########################################
testcase = 9
status("active")
RC.push(["VolDown 1 2400"])
GRAB.compare(testcase)
############################ TestCase 10 ##########################################
testcase = 10
status("active")
RC.push(["mute"])
GRAB.compare(testcase)
############################ TestCase 11 ##########################################
testcase = 11
status("active")
RC.push(["guide"])
GRAB.compare(testcase)
############################ TestCase 12 ##########################################
testcase = 12
#.........这里部分代码省略.........