Home | History | Annotate | Download | only in video

Lines Matching refs:quality

62     def set_playback_quality(self, quality):
63 """Set the video quality to the quality passed in the arg.
65 @param quality: video quality to set.
69 'player.setPlaybackQuality("%s")' % quality)
73 """Returns the playback quality."""
125 @param expected_quality: quality to be set.
154 for quality in video_qualities:
155 logging.info('Playing video in %s quality.', quality)
156 self.set_playback_quality(quality)
158 self.wait_for_expected_resolution(quality)
160 if (quality not in ['auto', 'tiny', 'small'] and
161 quality != current_quality):
167 'Expected video quality: %s. Current video quality: %s'
168 % (quality, current_quality))