I find that in my project I should be able to "show" audio and be able to record fragments. I was looking to render it as one of those audio components you also find on websites, with a play, pause and stop button, and in some cases a record button.
Before I start coding one of those thingies, isn't there already a standard component I can (re)use for this?
Paul
···
--
Paul Sijben tel: +31334566488
Eemvalley Technology fax: +31334557523
the Netherlands http://eemvalley.com
....
Not sure if either of these support recording or not (don't see it
mentioned in the docs) though.
---Phil
Wednesday, May 23, 2007, 6:45:32 AM, you wrote:
···
I find that in my project I should be able to "show" audio and be able
to record fragments. I was looking to render it as one of those audio
components you also find on websites, with a play, pause and stop
button, and in some cases a record button.
Before I start coding one of those thingies, isn't there already a
standard component I can (re)use for this?
The GUI should be pretty easy to do given wxPython. A few buttons tied to Stop,
Play, Pause, etc. See the Sound example, under Miscellaneous, in the wxPython
Demo too. The most time consuming part would seem to be creating (or locating)
and adding the button graphics for Pause "||", Play ">", etc.
I'm guessing it would take maybe 30-40 mins to create a basic player App?
The GUI should be pretty easy to do given wxPython. A few buttons tied to Stop,
Play, Pause, etc. See the Sound example, under Miscellaneous, in the wxPython
Demo too. The most time consuming part would seem to be creating (or locating)
and adding the button graphics for Pause "||", Play ">", etc.
Luckily I bought an icon package some time ago so I can use the icons from that.
I'm guessing it would take maybe 30-40 mins to create a basic player App?
well, slightly longer as I need to do the UI by hand instead of having XRCed do it for me (see my other post today ;-))
···
---------------------------------------------------------------------
To unsubscribe, e-mail: wxPython-users-unsubscribe@lists.wxwidgets.org
For additional commands, e-mail: wxPython-users-help@lists.wxwidgets.org
--
Paul Sijben tel: +31334566488
Eemvalley Technology fax: +31334557523
the Netherlands http://eemvalley.com
I find that in my project I should be able to "show" audio and be able to record fragments. I was looking to render it as one of those audio components you also find on websites, with a play, pause and stop button, and in some cases a record button.
Before I start coding one of those thingies, isn't there already a standard component I can (re)use for this?
thanks for the pointer.
As Phillip Stevens rightly wrote, doing the UI should not be hard. I got most of it. Only need to bind it to an audio component that will allow me to do pause and recording.
Robin Dunn wrote:
···
Paul Sijben wrote:
I find that in my project I should be able to "show" audio and be able to record fragments. I was looking to render it as one of those audio components you also find on websites, with a play, pause and stop button, and in some cases a record button.
Before I start coding one of those thingies, isn't there already a standard component I can (re)use for this?