Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFeross Aboukhadijeh <feross@feross.org>2014-09-12 17:59:06 +0400
committerFeross Aboukhadijeh <feross@feross.org>2014-09-12 17:59:13 +0400
commita99aeb6f8d9d89b8143511600db2e1fbbd10ce2f (patch)
tree5b9163845bde7d41b7fbc9b8e89fc248b42b2619
parent6a020744c9f46b7cf7163c887bae97cf46e13aaf (diff)
VLC should not open on top (fix #85)
-rwxr-xr-xbin/cmd.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/cmd.js b/bin/cmd.js
index 282b946..ce61cd5 100755
--- a/bin/cmd.js
+++ b/bin/cmd.js
@@ -108,8 +108,8 @@ if (process.env.DEBUG) {
}
var VLC_ARGS = process.env.DEBUG
- ? '-q --video-on-top --play-and-exit'
- : '--video-on-top --play-and-exit --extraintf=http:logger --verbose=2 --file-logging --logfile=vlc-log.txt'
+ ? '-q --play-and-exit'
+ : '--play-and-exit --extraintf=http:logger --verbose=2 --file-logging --logfile=vlc-log.txt'
var MPLAYER_EXEC = 'mplayer -ontop -really-quiet -noidx -loop 0'
var MPV_EXEC = 'mpv --ontop --really-quiet --loop=no'
var OMX_EXEC = 'omxplayer -r -o ' + (typeof argv.omx === 'string')