(self)
| 676 | table.attach(button, 2, 3, 2, 3, gtk.FILL, gtk.FILL) |
| 677 | |
| 678 | def do_remux(self): |
| 679 | if self.player.is_playing(): |
| 680 | self.play_toggled() |
| 681 | in_uri = self.player.get_location() |
| 682 | out_uri = in_uri[:-4] + '-remuxed.ogg' |
| 683 | r = Resynchronizer(in_uri, out_uri, self.sync.get_sync_points()) |
| 684 | r.run(self) |
| 685 | |
| 686 | def do_choose_file(self): |
| 687 | if self.player.is_playing(): |
no test coverage detected