Pascal Schirrmann a écrit :
>> Playing audio CD, with the standard mplayer plugin, if I depress the 
>> channel + key of my remote (or the skip next, witch are both mapped to 
>> the Event Ch+ in my /etc/freevo/lircrc file), the preceding track is 
>> selected ! And, of course, if I select the CH- Skip Previous key, the 
>> next audio track is played.
>>
>>     
Wasn't so hard, finally...

grep -R was my friend, as commonly :
------------
svn diff src/event.py
Index: src/event.py
===================================================================
--- src/event.py        (révision 10192)
+++ src/event.py        (copie de travail)
@@ -362,8 +362,8 @@
     'EXIT'      : STOP,
     'UP'        : PLAYLIST_PREV,
     'DOWN'      : PLAYLIST_NEXT,
-    'CH+'       : PLAYLIST_PREV,
-    'CH-'       : PLAYLIST_NEXT,
+    'CH-'       : PLAYLIST_PREV,
+    'CH+'       : PLAYLIST_NEXT,
     'LEFT'      : Event(SEEK, arg=-60),
     'RIGHT'     : Event(SEEK, arg=60),
     'REW'       : Event(SEEK, arg=-10),
@@ -435,8 +435,8 @@
     'FFWD'      : Event(SEEK, arg=10),
     'UP'        : PLAYLIST_PREV,
     'DOWN'      : PLAYLIST_NEXT,
-    'CH+'       : PLAYLIST_PREV,
-    'CH-'       : PLAYLIST_NEXT,
+    'CH-'       : PLAYLIST_PREV,
+    'CH+'       : PLAYLIST_NEXT,
     '1'         : INPUT_1,
     '2'         : INPUT_2,
     '3'         : INPUT_3,
@@ -470,8 +470,8 @@
     'ENTER'     : IMAGE_TAG,
     'UP'        : PLAYLIST_PREV,
     'DOWN'      : PLAYLIST_NEXT,
-    'CH+'       : PLAYLIST_PREV,
-    'CH-'       : PLAYLIST_NEXT
+    'CH-'       : PLAYLIST_PREV,
+    'CH+'       : PLAYLIST_NEXT
     }

 IMAGE_ZOOM_EVENTS = {
-------------------

It seems to be good for me, but at the same time, I find strange that 
the fact to press the 'Up' key select the preceding track.

I'm maybe in a false understanding of this behaviour ?

Thanks for any ideas,
Pascal

-------------------------------------------------------------------------
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Freevo-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-users

Reply via email to