1AUTHOR = "mqg" 2NAME = "power_VideoEncode.vp9_1hr" 3PURPOSE = "Stress test video encode and measure statistics." 4 5CRITERIA = "This test is a benchmark." 6TIME = "LONG" 7TEST_CATEGORY = "Benchmark" 8TEST_CLASS = "power" 9TEST_TYPE = "client" 10PY_VERSION = 3 11 12DOC = """ 13This test records power related statistics while encode video file in vp9 14for 1 hr. 15""" 16 17HOURS = 60 * 60 18formats = [('vp9', 'fhd', 24)] 19 20args_dict = utils.args_to_dict(args) 21pdash_note = args_dict.get('pdash_note', '') 22job.run_test('power_VideoEncode', pdash_note=pdash_note, 23 seconds_per_test=HOURS, format=formats) 24