Re: [Lazarus] Update sound shop my next tutoring project

2019-05-15 Thread Anthony Walter via lazarus
Got it. Thanks. -- ___ lazarus mailing list lazarus@lists.lazarus-ide.org https://lists.lazarus-ide.org/listinfo/lazarus

Re: [Lazarus] Update sound shop my next tutoring project

2019-05-15 Thread José Mejuto via lazarus
El 15/05/2019 a las 20:35, Anthony Walter via lazarus escribió: I just looked at you MP3 decoder source. It looks like it mimics the mpg123 API which is perfect. The only question I have is what is the best way to seek to a time in an MP3 memory buffer for use with your pdmp3_feed and pdmp3_rea

Re: [Lazarus] Update sound shop my next tutoring project

2019-05-15 Thread Anthony Walter via lazarus
Silvio, Actually I am to add a node based system for mapping each key of the keyboard similar to this project . Instead of source images, like in the Image Shop program, there will be wave source nodes and file source nodes. The node

Re: [Lazarus] Update sound shop my next tutoring project

2019-05-15 Thread silvioprog via lazarus
On Wed, May 15, 2019 at 4:51 PM Anthony Walter via lazarus < lazarus@lists.lazarus-ide.org> wrote: > I usually add GPL licences to my repositories but I forgot this time. > Thanks for reminding me. It's now attached. > > Regarding the TPianoKeyboard class here is some helpful information. > > It's

Re: [Lazarus] Update sound shop my next tutoring project

2019-05-15 Thread Anthony Walter via lazarus
I usually add GPL licences to my repositories but I forgot this time. Thanks for reminding me. It's now attached. Regarding the TPianoKeyboard class here is some helpful information. It's a TGraphicControl. It relies on the Music unit, also in the same project, to convert keys to frequencies and

Re: [Lazarus] Update sound shop my next tutoring project

2019-05-15 Thread silvioprog via lazarus
On Wed, May 15, 2019 at 2:45 PM Anthony Walter via lazarus < lazarus@lists.lazarus-ide.org> wrote: > I have summer camp with several successive week long classes coming up and > am trying to put together some fun programming materials to engage the kids > and hopefully encourage them to explore mo

Re: [Lazarus] Update sound shop my next tutoring project

2019-05-15 Thread Anthony Walter via lazarus
I just looked at you MP3 decoder source. It looks like it mimics the mpg123 API which is perfect. The only question I have is what is the best way to seek to a time in an MP3 memory buffer for use with your pdmp3_feed and pdmp3_read functions? I don't want to decode whole MP3 streams into PCM wave

Re: [Lazarus] Update sound shop my next tutoring project

2019-05-15 Thread Anthony Walter via lazarus
Thank you so much for a link to your MP3 decoder! I will take a look at integrating it this coming weekend. -- ___ lazarus mailing list lazarus@lists.lazarus-ide.org https://lists.lazarus-ide.org/listinfo/lazarus

Re: [Lazarus] Update sound shop my next tutoring project

2019-05-15 Thread Sergey Bodrov via lazarus
Ported from PDMP3 Public domain MP3 decoder https://github.com/serbod/acs/blob/master/src/formats/general/mp3.pas but I don't tested it properly. Also, whole ACS components can be useful to build interactive pipeline for sound processing https://github.com/serbod/acs/ ср, 15 мая 2019 г. в 20:45

[Lazarus] Update sound shop my next tutoring project

2019-05-15 Thread Anthony Walter via lazarus
I have summer camp with several successive week long classes coming up and am trying to put together some fun programming materials to engage the kids and hopefully encourage them to explore more. Yesterday I created the start of my next project for teaching kids on the subject of computer program

Re: [Lazarus] TProgressbar moves slowly, is there a hidden setting for faster response?

2019-05-15 Thread Bo Berglund via lazarus
On Wed, 15 May 2019 17:13:48 +0200, Ondrej Pokorny via lazarus wrote: >> I really do not want to create a panel child to implement this >> behaviour unless I am really forced to > >That's what I would do. (But not a panel child but a TGraphicControl >descendant.) After thinking a bit on the

Re: [Lazarus] TProgressbar moves slowly, is there a hidden setting for faster response?

2019-05-15 Thread Sven Barth via lazarus
Bo Berglund via lazarus schrieb am Mi., 15. Mai 2019, 17:11: > On Wed, 15 May 2019 13:38:19 +0200, Ondrej Pokorny via lazarus > wrote: > > >Because WinAPI developers wanted it so - the drawing of TProgressBar is > >fully in charge of the OS. > > Strangely just discovered that the progressbar is

Re: [Lazarus] TProgressbar moves slowly, is there a hidden setting for faster response?

2019-05-15 Thread Alexey via lazarus
I suggest to use ATScrollbar from ATFlatControls, but it needs the option for fast move- I can easily add it soon. -- ___ lazarus mailing list lazarus@lists.lazarus-ide.org https://lists.lazarus-ide.org/listinfo/lazarus

Re: [Lazarus] TProgressbar moves slowly, is there a hidden setting for faster response?

2019-05-15 Thread Ondrej Pokorny via lazarus
On 15.05.2019 17:11, Bo Berglund via lazarus wrote: On Wed, 15 May 2019 13:38:19 +0200, Ondrej Pokorny via lazarus wrote: Because WinAPI developers wanted it so - the drawing of TProgressBar is fully in charge of the OS. Strangely just discovered that the progressbar is painted "fast enough"

Re: [Lazarus] TProgressbar moves slowly, is there a hidden setting for faster response?

2019-05-15 Thread Bo Berglund via lazarus
On Wed, 15 May 2019 13:38:19 +0200, Ondrej Pokorny via lazarus wrote: >Because WinAPI developers wanted it so - the drawing of TProgressBar is >fully in charge of the OS. Strangely just discovered that the progressbar is painted "fast enough" if I click a position towards the lower side of the

Re: [Lazarus] TProgressbar moves slowly, is there a hidden setting for faster response?

2019-05-15 Thread Bo Berglund via lazarus
On Wed, 15 May 2019 13:38:19 +0200, Ondrej Pokorny via lazarus wrote: >On 15.05.2019 13:34, Bo Berglund via lazarus wrote: >> Why is the TProgressBar doing this when the TTrackBar I used before displays >> an instant move? > >Because WinAPI developers wanted it so - the drawing of TProgressBar i

Re: [Lazarus] TProgressbar moves slowly, is there a hidden setting for faster response?

2019-05-15 Thread Ondrej Pokorny via lazarus
On 15.05.2019 13:34, Bo Berglund via lazarus wrote: Why is the TProgressBar doing this when the TTrackBar I used before displays an instant move? Because WinAPI developers wanted it so - the drawing of TProgressBar is fully in charge of the OS. Ondrej -- ___

[Lazarus] TProgressbar moves slowly, is there a hidden setting for faster response?

2019-05-15 Thread Bo Berglund via lazarus
I am trying to use a TProgressbar to display the position of a playing video. This works OK while playing. Now I want to reposition the video by clicking on the progress bar and it does work, but the bar progress to the new position when clicking is really slow When I click the bar the X posi

[Lazarus] IDE target names

2019-05-15 Thread AlexeyT via lazarus
In the IDE "Target" sheet page we have OS names 1- "Beos"- consider to change to better casing "BeOS" (Wikipedia) 2- "go32v2" - the same--> "Go32v2" 3- "iphonesim" - the same 4- "nds"- I dunno what it is, maybe fix too 5- "Netware"- the same--> "NetWare" (Wikipedia) 6- "qnx"- the same--> "QN

Re: [Lazarus] IDE target names

2019-05-15 Thread Marco van de Voort via lazarus
Op 2019-05-15 om 11:10 schreef AlexeyT via lazarus: 4- "nds"- I dunno what it is, maybe fix too Nintendo DS -- ___ lazarus mailing list lazarus@lists.lazarus-ide.org https://lists.lazarus-ide.org/listinfo/lazarus