example.lircrc
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:2k
源码类别:

midi

开发平台:

Unix_Linux

  1. # This is an example .lircrc file that shows the different config strings that
  2. # vlc understand. Button names are from an animax remote, and these may change
  3. # with different remotes.
  4. # The current full list of config strings vlc understands is always in vlc's
  5. # src/libvlc.h file. Look for lines like:
  6. # add_key( "key-fullscreen", KEY_FULLSCREEN, NULL, FULLSCREEN_KEY_TEXT,
  7. #          FULLSCREEN_KEY_LONGTEXT, VLC_FALSE );
  8. # You will need the first argument of these lines. in this case: key-fullscreen
  9. begin
  10.   prog = vlc
  11.   button = PLAY_UP
  12.   config = key-play
  13. end
  14. begin
  15.   prog = vlc
  16.   button = PAUSE_UP
  17.   config = key-pause
  18. end
  19. # Use this target if you have a combined play/pause button
  20. begin
  21.   prog = vlc
  22.   button = PLAY_UP
  23.   config = key-play-pause
  24. end
  25. begin
  26.   prog = vlc
  27.   button = STOP_UP
  28.   config = key-stop
  29. end
  30. begin
  31.   prog = vlc
  32.   button = POWER_UP
  33.   config = key-quit
  34. end
  35. begin
  36.   prog = vlc
  37.   button = SKIP_FORWARD_UP
  38.   config = key-next
  39. end
  40. begin
  41.   prog = vlc
  42.   button = SKIP_BACKWARD
  43.   config = key-prev
  44. end
  45. begin
  46.   prog = vlc
  47.   button = RED_BUTTON_UP
  48.   config = key-fullscreen
  49. end
  50. begin
  51.   prog = vlc
  52.   button = REWIND_UP
  53.   config = key-slower
  54. end
  55. begin
  56.   prog = vlc
  57.   button = FORWARD_UP
  58.   config = key-faster
  59. end
  60. #Audio controls
  61. begin
  62.   prog = vlc
  63.   button = VOLUME_DOWN_DOWN
  64.   config = key-vol-down
  65. end
  66. begin
  67.   prog = vlc
  68.   button = VOLUME_UP_DOWN
  69.   config = key-vol-up
  70. end
  71. begin
  72.   prog = vlc
  73.   button = SOMEBUTTON
  74.   config = key-audio-track
  75. end
  76. begin
  77.   prog = vlc
  78.   button = MUTE_UP
  79.   config = key-vol-mute
  80. end
  81. #For dvd navigation
  82. begin
  83.   prog = vlc
  84.   button = 4_UP
  85.   config = key-nav-left 
  86. end
  87. begin
  88.   prog = vlc
  89.   button = 5_UP
  90.   config = key-nav-down
  91. end
  92. begin
  93.   prog = vlc
  94.   button = 2_UP
  95.   config = key-nav-up
  96. end
  97. begin
  98.   prog = vlc
  99.   button = 6_UP
  100.   config = key-nav-right
  101. end
  102. begin
  103.   prog = vlc
  104.   button = MENU_UP
  105.   config = key-nav-activate
  106. end
  107. begin
  108.   prog = vlc
  109.   button = 9_UP
  110.   config = key-subtitle-track
  111. end