Results 1 to 3 of 3

Thread: (XBMC) Want to adjust the volume with the mouse wheel

  1. #1
    Join Date
    Jan 2010
    Location
    India
    Beans
    Hidden!
    Distro
    Lubuntu

    (XBMC) Want to adjust the volume with the mouse wheel

    I want to use the mouse wheel to adjust volume in XBMC.

    I found these 2 solutions but none worked.

    Solution 1

    Solution 2

    Code:
    $ xbmc --version
    XBMC Media Center 13.2 Git:0f3db05
    Copyright (C) 2005-2013 Team XBMC - http://xbmc.org
    Is there a way to do this in 13.2 ?
    Lubuntu 20.04

  2. #2
    Join Date
    Jul 2009
    Location
    Hippiesoldierstan Norwich
    Beans
    2,326
    Distro
    Lubuntu 22.04 Jammy Jellyfish

    XBMC - adjust the volume with the mouse wheel

    ok yogi took a bit of time but got there .... myself on Ubuntu 14.04

    and using xbmc 13.2


    first to open:

    Code:
    sudo gedit /usr/share/xbmc/system/keymaps/mouse.xml

    and then to replace with: added lines are in brown



    Code:
    <?xml version="1.0" encoding="UTF-8"?><keymap>
      <global>
        <mouse>
          <leftclick>leftclick</leftclick>
          <middleclick>middleclick</middleclick>
          <rightclick>rightclick</rightclick>
          <doubleclick>doubleclick</doubleclick>
          <wheeldown>wheeldown</wheeldown>
          <wheelup>wheelup</wheelup>
          <mousedrag>mousedrag</mousedrag>
          <mousemove>mousemove</mousemove>
        </mouse>
      </global>
    
     <!-- Full Screen Video Controls -->
      <FullscreenVideo>
        <mouse>
          <wheelup>VolumeUp</wheelup>
          <wheeldown>VolumeDown</wheeldown>
        </mouse>
      </FullscreenVideo>
      <!-- Video On-Screen-Display Controls -->
      <VideoOSD>
        <mouse>
          <wheelup>VolumeUp</wheelup>
          <wheeldown>VolumeDown</wheeldown>
        </mouse>
      </VideoOSD>
      <!-- Music Visualization Controls -->
      <Visualisation>
        <mouse>
          <wheelup>VolumeUp</wheelup>
          <wheeldown>VolumeDown</wheeldown>
        </mouse>
      </Visualisation>
    <!-- Music On-Screen-Display Controls -->
      <MusicOSD>
        <mouse>
          <wheelup>VolumeUp</wheelup>
          <wheeldown>VolumeDown</wheeldown>
        </mouse>
      </MusicOSD>
    
    <!-- Home On-Screen-Display Controls (Master List for movies/music/etc) -->
      <Home>
        <mouse>
          <wheelup>VolumeUp</wheelup>
          <wheeldown>VolumeDown</wheeldown>
        </mouse>
      </Home>
    
      <!-- Picture Slideshow Controls -->
      <SlideShow>
        <mouse>
          <leftclick>Pause</leftclick>
          <rightclick>PreviousMenu</rightclick>
          <wheelup>PreviousPicture</wheelup>
          <wheeldown>NextPicture</wheeldown>
        </mouse>
      </SlideShow>
    
    </keymap>

    all thanx to info from this post


    PS XBMC is so good when videos flicker on VLC or mpv they rmain stable on xbmc ...
    Last edited by shantiq; September 23rd, 2014 at 09:27 AM.
    Linux is Latin for off-the-beaten-track
    what I like MOST about our Ubuntu ... The Community ie 50 brains are better than one
    Playing with Slackware too now ...
    ShanArt

  3. #3
    Join Date
    Jan 2010
    Location
    India
    Beans
    Hidden!
    Distro
    Lubuntu

    Re: (XBMC) Want to adjust the volume with the mouse wheel

    Awesome ! It worked. Since you are also using 13.2 I simply deleted whatever was on that file and replaced it with yours.
    Lubuntu 20.04

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •