Skip to content

Commit

Permalink
Add hack to make sure VLC instances are killed
Browse files Browse the repository at this point in the history
  • Loading branch information
thierryr committed Feb 27, 2015
1 parent 9774323 commit 6687889
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions gec22_demo/vlc-oml.oedl
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,10 @@ defApplication('vlc') do |app|
mp.defMetric('timeChunk_s',:float)
end
end

# Small hack: VLC sometimes do not exist when receiving SIGTERM
# even after a very long period of time... here we make sure that it stops!
defApplication('kill_vlc') do |app|
app.quiet = true
app.binary_path = "/usr/bin/killall vlc"
end

0 comments on commit 6687889

Please sign in to comment.