summaryrefslogtreecommitdiffstats
path: root/DOCS/LIRC
diff options
context:
space:
mode:
authorarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-02-24 20:28:24 +0000
committerarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-02-24 20:28:24 +0000
commitd34041569e71fc9bd772354e94dc9d16061072a5 (patch)
tree8f481cae1c70f32d1756fbe5f39000577b73042d /DOCS/LIRC
parente95a95ece09bac96bdfd37322f96c6f57ef79ebc (diff)
downloadmpv-d34041569e71fc9bd772354e94dc9d16061072a5.tar.bz2
mpv-d34041569e71fc9bd772354e94dc9d16061072a5.tar.xz
Initial revision
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'DOCS/LIRC')
-rw-r--r--DOCS/LIRC54
1 files changed, 54 insertions, 0 deletions
diff --git a/DOCS/LIRC b/DOCS/LIRC
new file mode 100644
index 0000000000..831ede3c66
--- /dev/null
+++ b/DOCS/LIRC
@@ -0,0 +1,54 @@
+
+LIRC support for MPlayer
+ written by Andreas Ackermann in 2/2001
+ contact: acki@acki-netz.de
+
+o What is LIRC?
+
+ Linux Infrared Remote Control - use an easy to build home-brewn IR-receiver,
+ an (almost) arbitrary remote control and control your linux box with it!
+ More about it at www.lirc.org.
+
+o MPlayer and LIRC
+
+ If you have installed the lirc-package, you can compile MPlayer with LIRC
+ support using ./configure --enable-lirc
+ You should do 'make distclean' before re-compile with 'make dep;make'
+
+ If everything went fine, MPlayer will print a message like
+ LIRC init was successful.
+ on startup. If an error occurs it will tell you. If it doens't tell you
+ anything about LIRC there's no support compiled in. That's it :-)
+
+ The application name for MPlayer is - oh wonder - mplayer.
+ It understands the following commands:
+
+ PAUSE - pause playing. Any other keystroke will continue replay.
+ QUIT - exit mplayer
+ RWND - 10 secs back
+ FRWND - 60 secs back
+ FWD - skip 10 secs
+ FFWD - skip 60 secs
+
+ Don't forget to enable the repeat flag for RWND/FWD in .lircrc. Here's an
+ excerpt from my .lircrc:
+
+ begin
+ remote = CU-SX070
+ prog = mplayer
+ button = Tape_Play
+ repeat = 1
+ config = FFWD
+ end
+
+ begin
+ remote = CU-SX070
+ prog = mplayer
+ button = Tape_Stop
+ config = QUIT
+ end
+
+ Enjoy
+
+ -Andreas
+