(self, autoplay)
| 4203 | self.set_loop(loop) |
| 4204 | |
| 4205 | def set_autoplay(self, autoplay): |
| 4206 | if autoplay: |
| 4207 | self.attributes['autoplay'] = 'true' |
| 4208 | else: |
| 4209 | self.attributes.pop('autoplay', None) |
| 4210 | |
| 4211 | def set_loop(self, loop): |
| 4212 | """Sets the VideoPlayer to restart video when finished. |