Skip to content

Commit

Permalink
Merge pull request dschreij#5 from rsprouse/master
Browse files Browse the repository at this point in the history
Prevent vlc from displaying filename when playing.
  • Loading branch information
dschreij committed Apr 18, 2013
2 parents dd1bfa7 + 86fc366 commit 992b4f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion media_player_vlc.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def __init__(self, name, experiment, string=None):
self.event_handler_trigger = "on keypress"
self.vlc_event_handler = None

self.vlcInstance = vlc.Instance()
self.vlcInstance = vlc.Instance("--no-video-title-show")
self.player = self.vlcInstance.media_player_new()
self.media = None
self.framerate = 0
Expand Down

0 comments on commit 992b4f9

Please sign in to comment.