Bugs item #1577673, was opened at 2006-10-15 08:38
Message generated for change (Comment added) made by sf-robot
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=446895&aid=1577673&group_id=46652

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: plugins
Group: 1.6.0
>Status: Closed
Resolution: None
Priority: 5
Private: No
Submitted By: Olivier (oroulet)
Assigned to: Nobody/Anonymous (nobody)
Summary: detach too much

Initial Comment:
in 1.5 The music did not always detach. I had to click
on "d" (If I remember well). in 1.6svn the music always
detach !! The only way to avoid it is to disable the
plugin.
btw when the music detaches how can I stop it in the
current state. ?
I use xine as audio player.
 

----------------------------------------------------------------------

>Comment By: SourceForge Robot (sf-robot)
Date: 2006-10-29 19:20

Message:
Logged In: YES 
user_id=1312539

This Tracker item was closed automatically by the system. It was
previously set to a Pending status, and the original submitter
did not respond within 14 days (the time period specified by
the administrator of this Tracker).

----------------------------------------------------------------------

Comment By: Duncan Webb (duncanwebb)
Date: 2006-10-15 14:57

Message:
Logged In: YES 
user_id=104395

May well crash on slide-shows, I put in a fix for this but
IIRC it still crashed when the music ended before the slide
show.

Never tried the detach player with a slide show.

BTW, the changes should be in the ChangeLog.

----------------------------------------------------------------------

Comment By: Olivier (oroulet)
Date: 2006-10-15 14:42

Message:
Logged In: YES 
user_id=1621125

true pressing stop stops it.
The behaviour is not bad it is just that it is different
from  1.5 on my machine
But I have nothing against the new behaviour. it is even
better I think (as long as freevo does not crash with
slideshow as it did in 1.5 :-)  )

----------------------------------------------------------------------

Comment By: Duncan Webb (duncanwebb)
Date: 2006-10-15 14:31

Message:
Logged In: YES 
user_id=104395

AFAIK it detaches when you press EXIT, pressing STOP stops
the music both in detached mode and non-detached mode. I
guess that xine player also respects the stop.

IMHO this is reasonable behaviour and so unless I've
misunderstood the problem it's not really a bug. Please
correct me if this is not correct.

Here's the player control logic.

if event == BUTTON:
 gui = audio.player.get()
  if gui:
   p = gui.player
   if event.arg=='FFWD':
    p.eventhandler(Event('SEEK',arg='10',context='audio'))
   elif event.arg=='REW':
    p.eventhandler(Event('SEEK',arg='-10', context='audio'))
   elif event.arg=='PAUSE':
    p.eventhandler(Event('PLAY',context='audio'))
   elif event.arg=='STOP':
    p.eventhandler(Event('STOP'))
   elif event.arg=='NEXT':
    p.eventhandler(Event('PLAYLIST_NEXT',context='audio'))
   elif event.arg=='PREV':
    p.eventhandler(Event('PLAYLIST_PREV',context='audio'))
elif event == VIDEO_START:
 gui = audio.player.get()
 if gui:
  gui.player.eventhandler(Event('STOP'))


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=446895&aid=1577673&group_id=46652

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Freevo-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel

Reply via email to