Now supports adding subtitles

Allows to cancel a job

Allows to burn de image

Show a progress bar when copying a file

When adding a subtitles file, shows the last path used

Fixed the progress bar for the number of jobs to do
This commit is contained in:
Sergio Costas 2014-08-04 12:33:25 +02:00
parent 4cc1bee474
commit 64a33e1c74
24 changed files with 495 additions and 35 deletions

View file

@ -25,6 +25,7 @@ class vlc_player(devede.executor.executor):
supports_play = True
supports_convert = False
supports_menu = False
supports_burn = False
display_name = "VLC"
@staticmethod
@ -46,7 +47,7 @@ class vlc_player(devede.executor.executor):
def play_film(self,file_name):
command_line = ["vlc", file_name]
command_line = ["vlc", "--play-and-exit",file_name]
self.launch_process(command_line)
def process_stdout(self,data):