Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2008-03-29 Thread kimsnarf
FYI to map the Scanner plugin to the play.hold function, the file to edit is Default.map in SqueezeCenter/server/IR/ The line should read: play.hold = modefunction_Plugins::Scanner::Plugin->jumptoscanner -- kimsnarf kimsn

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-29 Thread Phil Meyer
>My post wasn't intended to be a criticism of THIS plugin. It was just >my musing that the *SB* lacks "sexy" track navigation like the iPod. I >acknowledge that kdf has created a BETTER implementation than the >native SB method. I WOULD however, like to see either SlimDevices or a >plugin developer

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-29 Thread NeilF
NFLnut;238628 Wrote: > My post wasn't intended to be a criticism of THIS plugin. It was just my > musing that the *SB* lacks "sexy" track navigation like the iPod. I > acknowledge that kdf has created a BETTER implementation than the > native SB method. I WOULD however, like to see either SlimDev

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-28 Thread NFLnut
NeilF;237673 Wrote: > KDF is kindly kicking his plugin around so at least it offers an easily > accessible improvement to the clunky default one! My post wasn't intended to be a criticism of THIS plugin. It was just my musing that the *SB* lacks "sexy" track navigation like the iPod. I acknowle

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-25 Thread NeilF
kdf;237766 Wrote: > in your specific case, I'd recommend: > > > Code: > > > sub scannerExitHandler { > my ($client,$exittype) = @_; > $exittype = uc($exittype); > > if ($jumptomode) { > Slim::Buttons::Common::popMode($client);

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-24 Thread kdf
in your specific case, I'd recommend: Code: sub scannerExitHandler { my ($client,$exittype) = @_; $exittype = uc($exittype); if ($jumptomode) { Slim::Buttons::Common::popMode($client); $jumptomode = 0;

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-24 Thread kdf
NeilF;237717 Wrote: > Works a treat, so now Play doesn't exit. What's the difference between > the LEFT and RIGHT exit? The plugin uses the generic INPUT.Bar mode which provides details on how it has left (in case your plugin wishes to act on that information) In general exit LEFT moves one leve

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-24 Thread NeilF
Works a treat, so now Play doesn't exit. What's the difference between the LEFT and RIGHT exit? RIGHT always seems to take you back to where you came from, LEFT to the MENU page before that one which is a little confusing? I think I'd make LEFT behave the same as RIGHT? Code: ---

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-24 Thread kdf
NeilF;237672 Wrote: > NICE! That seems to work perfectly apart from two things:- > > 1) In 'Now Playing' when holding play I get save playlist? And yet all > (four) play.hold's are defined as 'play.hold = > modefunction_PLUGIN.Scanner->jumptoscanner'? Wassup?/QUOTE] > > I mentioned this one bef

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-24 Thread NeilF
kdf;237476 Wrote: > I found a typo. I've posted v1.8 to the site for the 6.5 download. Hope > that works for you; it tests ok here after setting up 6.5. > > -kdf NICE! That seems to work perfectly apart from two things:- 1) In 'Now Playing' when holding play I get save playlist? And yet all (

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-24 Thread NFLnut
NeilF;236490 Wrote: > Huh? All I want to do is FF and REW in a friendly manner... So in an > ideal world (as the default FF and REW is clunky) find some easier way > to FF or REW, eg: by using the 'scanner' plugin. > > I must admit the FF and REW functionality is a bit of a let down for > me. Th

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-23 Thread kdf
I found a typo. I've posted v1.8 to the site for the 6.5 download. Hope that works for you; it tests ok here after setting up 6.5. -kdf -- kdf kdf's Profile: http://forums.slimdevices.com/member.php?userid=7 View this thr

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-22 Thread NeilF
kdf;236727 Wrote: > Give this a try. It wasn't a huge change, so ported to 6.5. I don't > run that version any more so it's untested. > > You will need to change your mapping to: > play.hold = modefunction_PLUGIN.Scanner->jumptoscanner > > It works in 7.0, but there are naming conventions tha

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-20 Thread kdf
Give this a try. It wasn't a huge change, so ported to 6.5. I don't run that version any more so it's untested. You will need to change your mapping to: play.hold = modefunction_PLUGIN.Scanner->jumptoscanner It works in 7.0, but there are naming conventions that are different, and I'm going on

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-20 Thread NeilF
kdf;236680 Wrote: > On 20-Oct-07, at 7:06 AM, NeilF wrote: > > > > > I then play that and want to FF thru a bit of it... I would expect > to > > press FF and that's it. I would _not_ expect to have been taken out > of > > 'browse>artist>album>track'. Why should I have been? > > so, how about a

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-20 Thread kdf
On 20-Oct-07, at 7:06 AM, NeilF wrote: > > I then play that and want to FF thru a bit of it... I would expect to > press FF and that's it. I would _not_ expect to have been taken out of > 'browse>artist>album>track'. Why should I have been? so, how about a function to get into the scanner, and a

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-20 Thread NeilF
Phil Meyer;236602 Wrote: > >By the definitions we've talked about so far we can get to it in a > >single key depression and move to the place we want to hear. Great! > > > As I said before, we have described the shortcut to get into the > scanner plugin from the Now Playing screen (only from that

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-20 Thread Phil Meyer
>By the definitions we've talked about so far we can get to it in a >single key depression and move to the place we want to hear. Great! > As I said before, we have described the shortcut to get into the scanner plugin from the Now Playing screen (only from that screen - other screens probably sh

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-20 Thread NeilF
kdf;236572 Wrote: > On 20-Oct-07, at 12:55 AM, NeilF wrote: > > > > > *sighs at attitude* > that was my thought, exactly. If you decide to cut the dramatics, > we'll talk again. > again, good luck. > -kdf I thank you for any help/advice you've offered, but if you check through this thread yo

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-20 Thread kdf
On 20-Oct-07, at 12:55 AM, NeilF wrote: > > *sighs at attitude* that was my thought, exactly. If you decide to cut the dramatics, we'll talk again. again, good luck. -kdf ___ plugins mailing list plugins@lists.slimdevices.com http://lists.slimdevic

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-20 Thread NeilF
Phil Meyer;236524 Wrote: > >Surely that definition above (in custom.map) is for when in a playlist > >or something? And not when playing a track from a browse or something? > > I don't really see what you are trying to achieve then. > > Most people I would assume to be listening to the music th

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-20 Thread NeilF
kdf;236510 Wrote: > yes, it is. I should have remembered that I was done with this thread. > I hope you eventually find the solution you are looking for. > > -kdf *sighs at attitude* -- NeilF shuttle sn45g, athlon 3200+, 512mb, xp pro (sp2), netgear dg834gt, squeeze box 3 slimserver versi

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-19 Thread Phil Meyer
>Surely that definition above (in custom.map) is for when in a playlist >or something? And not when playing a track from a browse or something? I don't really see what you are trying to achieve then. Most people I would assume to be listening to the music they are playing, and therefore on the N

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-19 Thread kdf
NeilF;236490 Wrote: > Such a shame :( yes, it is. I should have remembered that I was done with this thread. I hope you eventually find the solution you are looking for. -kdf -- kdf kdf's Profile: http://forums.slimde

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-19 Thread NeilF
kdf;236488 Wrote: > Set your screensaver to "now playing (jump back on wake)" let the > screensaver take you to now playing when you are done scanning, and if > you have to go back then any key press will jump back to scanner. Huh? All I want to do is FF and REW in a friendly manner... So in an

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-19 Thread kdf
Set your screensaver to "now playing (jump back on wake)" let the screensaver take you to now playing when you are done scanning, and if you have to go back then any key press will jump back to scanner. -- kdf kdf's Profi

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-19 Thread NeilF
Phil Meyer;235914 Wrote: > >OK... I'll put my backup back and do as you say... And you recon that > >when I press LEFT (or RIGHT) out of that SCANNER I should return back > >to the track/album I was previously in, rather than being left in > >'PLUGIN'? > > No. To exit the scanner back to the cu

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-19 Thread NeilF
Phil Meyer;235893 Wrote: > >GROAN!! > > > >I changed all play.hold to that definition and now under standard > >browsing the plugin does get offered... However, on leaving the > plugin > >it leaves you buried down in plugins, rather than where you > previously > >were? *sigh* This is clunky! > >

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-18 Thread NeilF
Phil Meyer;235914 Wrote: > >OK... I'll put my backup back and do as you say... And you recon that > >when I press LEFT (or RIGHT) out of that SCANNER I should return back > >to the track/album I was previously in, rather than being left in > >'PLUGIN'? > > No. To exit the scanner back to the cu

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-17 Thread Phil Meyer
>OK... I'll put my backup back and do as you say... And you recon that >when I press LEFT (or RIGHT) out of that SCANNER I should return back >to the track/album I was previously in, rather than being left in >'PLUGIN'? No. To exit the scanner back to the current playing track, press Now Playing.

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-17 Thread NeilF
Phil Meyer;235893 Wrote: > >GROAN!! > > > >I changed all play.hold to that definition and now under standard > >browsing the plugin does get offered... However, on leaving the plugin > >it leaves you buried down in plugins, rather than where you previously > >were? *sigh* This is clunky! > > > Yo

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-17 Thread Phil Meyer
>I suspect this is just the way it (SB) works? Hence my previous >*groan*... > >Is that the case? > No, I think you've configured it incorrectly. Sorry, I replied earlier, but forgot to press the send button... Phil ___ plugins mailing list plugins@list

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-17 Thread Phil Meyer
>GROAN!! > >I changed all play.hold to that definition and now under standard >browsing the plugin does get offered... However, on leaving the plugin >it leaves you buried down in plugins, rather than where you previously >were? *sigh* This is clunky! > You only want to set the play.hold action for

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-17 Thread NeilF
kdf;235881 Wrote: > Shouting isn't really going to get you much further help, I was simply > offering some steps to help me understand what might be going wrong on > your setup. I have it here, working, but I have not been running 6.5.x > for a very long time. I'm sorry that you are having troub

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-17 Thread kdf
NeilF;235831 Wrote: > GROAN!! Shouting isn't really going to get you much further help, I was simply offering some steps to help me understand what might be going wrong on your setup. I have it here, working, but I have not been running 6.5.x for a very long time. I'm sorry that you are having

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-17 Thread NeilF
kdf;235817 Wrote: > On 17-Oct-07, at 1:51 AM, NeilF wrote: > > > > > Phil Meyer;235644 Wrote: > >>> Anyone? I've added it to default.map but it doesn't seem to > work... > >>> What am I missing? > >> Are you using SC7.0? I haven't tried the plugin with SC7 yet, so > >> can't > >> confirm if i

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-17 Thread kdf
On 17-Oct-07, at 1:51 AM, NeilF wrote: > > Phil Meyer;235644 Wrote: >>> Anyone? I've added it to default.map but it doesn't seem to work... >>> What am I missing? >> Are you using SC7.0? I haven't tried the plugin with SC7 yet, so >> can't >> confirm if it works. >> >> You need to ask Kdf - he

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-17 Thread NeilF
Phil Meyer;235644 Wrote: > >Anyone? I've added it to default.map but it doesn't seem to work... > >What am I missing? > Are you using SC7.0? I haven't tried the plugin with SC7 yet, so can't > confirm if it works. > > You need to ask Kdf - he wrote the plugin and is using SC7.0. > > Phil Chec

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-16 Thread muski
Thanks! I'll give it a try right now... muski -- muski muski's Profile: http://forums.slimdevices.com/member.php?userid=3670 View this thread: http://forums.slimdevices.com/showthread.php?t=39114 ___

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-16 Thread kdf
On 16-Oct-07, at 10:24 PM, muski wrote: > > Do any of these plugins use the Transporter's knob as a way to move > the > play 'pointer' forwards & back (not unlike the way the click-wheel > does > on the iPod). The scanner uses the INPUT.Bar UI mode, which is knob-aware :) You'd still be in

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-16 Thread muski
Do any of these plugins use the Transporter's knob as a way to move the play 'pointer' forwards & back (not unlike the way the click-wheel does on the iPod). -- muski SB3->Bryston BP25DA->Bryston 4B SST->Wilson Watt Puppy 7 Transporter via XLR->Headroom Max Balanced Headphone Amp->Balanced AKG

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-16 Thread Phil Meyer
>I'll post a 7.0 version of the plugin later tonight. > Great! Another missing plugin to cross off my list. I'll try it out tomorrow. Phil ___ plugins mailing list plugins@lists.slimdevices.com http://lists.slimdevices.com/lists/listinfo/plugins

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-16 Thread kdf
For 7.0, you would need to use use: play.hold = menu_Plugins::Scanner::Plugin However, there is no version of the plugin for SC7 yet. If you are using 6.5 then the mapping you have should work, I'm not seeing anything that suggests you have the plugin working correctly by navigating directly t

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-16 Thread Phil Meyer
>Anyone? I've added it to default.map but it doesn't seem to work... >What am I missing? Are you using SC7.0? I haven't tried the plugin with SC7 yet, so can't confirm if it works. You need to ask Kdf - he wrote the plugin and is using SC7.0. Phil ___

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-16 Thread NeilF
NeilF;235485 Wrote: > Finally got around to looking at this... But where do I make that change > to the config (ie: play.hold)? Anyone? I've added it to default.map but it doesn't seem to work... What am I missing? -- NeilF shuttle sn45g, athlon 3200+, 512mb, xp pro (sp2), netgear dg834gt, s

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-16 Thread NeilF
Phil Meyer;233649 Wrote: > >If you're looking at the SongScanner screen, yes. But normally it's > Now > >Playing -> Up to Plugins -> Up/Down to SongScanner -> Right and > *then* > >Up/Down to select the timeline point and Play (or Left? I've always > >used Play) to jump to that point. > > > It is

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-08 Thread NeilF
Phil Meyer;233649 Wrote: > >If you're looking at the SongScanner screen, yes. But normally it's > Now > >Playing -> Up to Plugins -> Up/Down to SongScanner -> Right and > *then* > >Up/Down to select the timeline point and Play (or Left? I've always > >used Play) to jump to that point. > > > It is

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-08 Thread flipflip
Maybe this helps: http://oinkzwurgl.org/skipper It's not perfect, but it suits my needs (to skip backwards in podcasts a couple of seconds). Maybe some plugins wizard could make it work smoother. E.g. I actually only want the key bindings active while on the "Now Playing" screen. But I don't hav

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-08 Thread Phil Meyer
>If you're looking at the SongScanner screen, yes. But normally it's Now >Playing -> Up to Plugins -> Up/Down to SongScanner -> Right and *then* >Up/Down to select the timeline point and Play (or Left? I've always >used Play) to jump to that point. > It is possible to change the keymap binding, so

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-08 Thread danco
peterw;233528 Wrote: > > > SongScanner's value depends somewhat on the length of the recording. > I've recorded some 3-4 hour radio shows where the SongScanner > increments are larger than I'd like (but SongScanner can't really help > that if it's going to have increments that represent at leas

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-08 Thread NeilF
peterw;233528 Wrote: > If you're looking at the SongScanner screen, yes. But normally it's Now > Playing -> Up to Plugins -> Up/Down to SongScanner -> Right and *then* > Up/Down to select the timeline point and Play (or Left? I've always > used Play) to jump to that point. > > SongScanner's valu

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-08 Thread peterw
NeilF;233471 Wrote: > Interesting... The text reads:- > > -Press UP/DOWN to set the position through the song, press LEFT to exit > the plugin and jump to that point. Only works for native formats.- > > So while playing a track, you just use UP and DOWN (no other keys > required), and then LEFT

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-08 Thread NeilF
Phil Meyer;233470 Wrote: > >I find the standard holding the button down for a couple of seconds a > >bit clumsy!? > > There are plenty of bugs/enhancement requests that have been made in > the past for FF/REW. I actually like the behaviour, but other > suggestions have been made. > > Have you

Re: [SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-08 Thread Phil Meyer
>I find the standard holding the button down for a couple of seconds a >bit clumsy!? There are plenty of bugs/enhancement requests that have been made in the past for FF/REW. I actually like the behaviour, but other suggestions have been made. Have you tried KDF's song scanner plugin (can be f

[SlimDevices: Plugins] Is there a plugin to improve fast forward & rewind?

2007-10-08 Thread NeilF
I find the standard holding the button down for a couple of seconds a bit clumsy!? -- NeilF shuttle sn45g, athlon 3200+, 512mb, xp pro (sp2), squeeze box 3 slimserver version: 6.5.4 - 12568 - windows xp - en - cp1252, perl version: 5.8.8 mswin32-x86-multi-thread, mysql version: 5.0.22-communit