[Hydrogen-devel] Hydrogen XML Schemas

2010-03-28 Thread Gabriel M. Beddingfield
Jeremy mentioned some time ago about documenting Hydrogen's XML schemas. With Rosegarden's recent issues and my desire to preserve compatability with Hydrogen, I thought it might be a good time to revisit this. Does anyone (*cough* Jeremy) want to work with me on this? Qt 4.6 inclues an XML

Re: [Hydrogen-devel] MIDI control messages (hihat switch?)

2010-03-13 Thread Gabriel M. Beddingfield
On Sat, 13 Mar 2010, Thomas Orgis wrote: Of course the proper way would be to have full 2D instruments, but as this obviously is quite some work to code and also complicates the processing hydrogen has to do for every note, I would like to go for special While I am not lobbying for 2D

Re: [Hydrogen-devel] MIDI control messages (hihat switch?)

2010-03-13 Thread Gabriel M. Beddingfield
Hi Thomas, On Sat, 13 Mar 2010, Thomas Orgis wrote: Well, if it's so... then let's go ahead and make hydrogen full 2D;-) [... plus lots of *REALLY* great data ...] OK, but somebody's got to implement it, and it's not going to be me. :-) sample_to_use = func(dimension_values); with

Re: [Hydrogen-devel] MIDI control messages (hihat switch?)

2010-03-13 Thread Gabriel M. Beddingfield
On Sat, 13 Mar 2010, Thomas Orgis wrote: shameless_self_promotion In addition, the Composite project[1] will release a Hydrogen-like sampler as an LV2 plug-in in a few days. Aha. So a fork of hydrogen to go more into the direction of linuxsampler, sort of? No, more like a Live Sequencer

Re: [Hydrogen-devel] Windows build issue

2010-03-08 Thread Gabriel M. Beddingfield
On Mon, 8 Mar 2010, Dave Stikkolorum wrote: Is there a reason to use qmake? Because using scons nobody could get everthing to link correctly... specifically to the Qt libs. (Search the archives for details.) I use scons with qt creator. It works perfect! If you make it work with Hydrogen,

Re: [Hydrogen-devel] reconnect to jack

2010-01-24 Thread Gabriel M. Beddingfield
On Sun, 24 Jan 2010, Patrick Shirkey wrote: I see one possible bug. After playing a pattern for about 5 hours straight it crashed on me. Didn't get a trace and have now upgraded to the latest svn. If I see it again I'll debug. I'll bet an integer is overflowing somewhere. What is your

Re: [Hydrogen-devel] reconnect to jack

2010-01-23 Thread Gabriel M. Beddingfield
On Sat, 23 Jan 2010, Patrick Shirkey wrote: I vaguely remember someone (Wolke?) doing some work on jack reconnection functionality. What's the status? Do you mean, like, after a JACK zombification? I think it works to go to Tools - Preferences - Audio System and then click the button

Re: [Hydrogen-devel] singleton pattern and Logger class

2010-01-05 Thread Gabriel M. Beddingfield
Hi Sebastian, On Tue, 5 Jan 2010, Sebastian Moors wrote: I've just read all the other mails concerning the logger class and a few questions popped out of mind.. If i understand it correct, the new proposal uses something like INFOLOG( const char* , .. ) instead of INFOLOG( const QString ).

Re: [Hydrogen-devel] singleton pattern and Logger class

2010-01-04 Thread Gabriel M. Beddingfield
On Wed, 30 Dec 2009, Jérémy Zurcher wrote: damn fast and seems to be reliable enough ... Sorry for the delay... Looks nice... though I have some doubts about the reliability of the way you're doing __read_from and __write_to manipulations... but that's just good old-fashioned FUD talk.

Re: [Hydrogen-devel] singleton pattern and Logger class

2009-12-30 Thread Gabriel M. Beddingfield
On Wed, 30 Dec 2009, Jérémy Zurcher wrote: do this - lock - moves indexes - unlock - memcpy IMHO it's good enough if the ring size is well ... sized. The would work... except that you have no indication of when the memcpy is complete. Once the indexes are moved... that signals to the

Re: [Hydrogen-devel] singleton pattern and Logger class

2009-12-29 Thread Gabriel M. Beddingfield
Hi Jérémy, On Mon, 28 Dec 2009, Jérémy Zurcher wrote: here are the latest results of my efforts to provide H2 with a faster logging system. any comments welcomed. I've looked this over a couple times. I wanted to play with it in more detail... but stomach bugs has hit our house! It

Re: [Hydrogen-devel] singleton pattern and Logger class

2009-12-21 Thread Gabriel M. Beddingfield
On Mon, 21 Dec 2009, Jérémy Zurcher wrote: Sound pretty good, I'll have a deeper look in a few days. I thought about that too, but went in a more pedantic C way, Last week I also benchmarked it against the pedantic C way... and it 25% slower than that (which is still pretty good, IMHO).

Re: [Hydrogen-devel] cmake

2009-12-15 Thread Gabriel M. Beddingfield
On Tue, 15 Dec 2009, Sebastian Moors wrote: 2) How can i see which arguments to cmake are available? ( like 'scons -h' ) Use ccmake (or cmake-gui) instead of cmake to get that functionality (including PREFIX and build type/Debug). -gabriel

Re: [Hydrogen-devel] singleton pattern and Logger class

2009-12-15 Thread Gabriel M. Beddingfield
On Tue, 15 Dec 2009, Jérémy Zurcher wrote: That said, if you have any ideas on how to get (or make) some RT-safe dynamic strings... please share. I'm interested in having that for Composite as well... so that even when there's an error we're RT-safe. quick and dirty thoughts : do something

Re: [Hydrogen-devel] FLAC File sample rate

2009-12-14 Thread Gabriel M. Beddingfield
On Mon, 14 Dec 2009, m.wolkst...@gmx.de wrote: thx. but imo we can remove the whole flac file switch. because flac is now supported by libsndfile. It's up to you guys. But you said you wanted a patch... so you got a patch. :-) Peace, Gabriel

Re: [Hydrogen-devel] FLAC File sample rate

2009-12-14 Thread Gabriel M. Beddingfield
On Mon, 14 Dec 2009, m.wolkst...@gmx.de wrote: It's up to you guys. But you said you wanted a patch... so you got a patch. :-) lol. Christmas time. my wish-list :) *** composite Ha ha! Maybe next year. BTW, EdC announced a new version of libsndfile today. So, I looked into your

Re: [Hydrogen-devel] singleton pattern and Logger class

2009-12-14 Thread Gabriel M. Beddingfield
Hi Jérémy, On Tue, 15 Dec 2009, Jérémy Zurcher wrote: - don't use all these static methods, or go all static I don't follow. What do you mean? - singleton pattern is used amongst other to not explicitly instanciate and destroy objects, so do so Some comments on this: + The

Re: [Hydrogen-devel] singleton pattern and Logger class

2009-12-14 Thread Gabriel M. Beddingfield
Oh yeah, and this one: http://cgit.asynk.ch/cgi-bin/cgit/hydrogen/commit/?h=jeremyzid=64ca3c1be299595071e1ad7cd0d6762c224a426d Has this snipped of code: templatetypename T T SingletonT::Instance() { if ( Singleton::_instance == 0 ) { Singleton::_instance = new T(); }

[Hydrogen-devel] FLAC File sample rate

2009-12-13 Thread Gabriel M. Beddingfield
I was writing tests for Composite and found that FLAC files load with an incorrect sample rate. Looks like this also affects Hydrogen. Do you guys want a patch? (I know you've been talking about removing libFLAC and using libsndfile...) Thanks, Gabriel

Re: [Hydrogen-devel] FLAC File sample rate

2009-12-13 Thread Gabriel M. Beddingfield
Hi guys, I was writing tests for Composite and found that FLAC files load with an incorrect sample rate. Looks like this also affects Hydrogen. yes yes, patches are good. Ok. SVN 1483. Thanks, Gabriel -- Return

Re: [Hydrogen-devel] cmake

2009-12-12 Thread Gabriel M. Beddingfield
On Sun, 13 Dec 2009, Jérémy Zurcher wrote: I time to time rebase my branch on git://gabe.is-a-geek.org/git/hydrogen 's master branch is it the good one to use? Yes. This repository is a mirror of the SVN repository and is updated once a day.

Re: [Hydrogen-devel] cmake build, C++ questions and source tree

2009-11-29 Thread Gabriel M. Beddingfield
Hi guys, On Sun, 29 Nov 2009, Jérémy Zurcher wrote: mkdir build cd build cmake -D WANT_JACK=1 .. make build everything out of the source tree. Small warning about out-of-tree builds and hydrogen: When you start H2, it won't find the 'global' data directory in the source tree (the one

[Hydrogen-devel] [LAU] midi drum pad project (fwd)

2009-11-22 Thread Gabriel M. Beddingfield
FYI. -- Forwarded message -- Date: Sun, 22 Nov 2009 11:47:46 + From: andy baxter a...@earthsong.free-online.co.uk To: linux-audio-u...@lists.linuxaudio.org Subject: [LAU] midi drum pad project hello, I am working on a project to build a position and velocity sensitive midi

Re: [Hydrogen-devel] Trouble Building with Qt-Creator

2009-11-13 Thread Gabriel M. Beddingfield
Hi Guys, can you checkin the qt-creactor project files beside the kdevelop files? [snip] But i can provide a step-by-step guide to get it running with scons. Or do you have problems with other parts of qt-creator as well? Just ask.. Btw. i've just updated the qmake file in our svn so

Re: [Hydrogen-devel] [ANN] New Project: Composite live performance sequencer

2009-11-10 Thread Gabriel M. Beddingfield
On Tue, 10 Nov 2009, Dave Allan wrote: I would think that Composite and Hydrogen will share a core of common code. Is there a benefit to pulling that common core out into a shared library that would benefit both projects? They may, and they may not. It remains to be seen. I'm open to

Re: [Hydrogen-devel] second video tutorial

2009-11-07 Thread Gabriel M. Beddingfield
On Sun, 8 Nov 2009, m.wolkst...@gmx.de wrote: second video tutorial. i try to explain mute groups :) http://www.youtube.com/watch?v=bdBg_-4wbxY Another great job. How did you do that tuplet thing? I couldn't quite see what you were up to. The big text block gets the point across, but has

Re: [Hydrogen-devel] Roadmap for 0.9.5

2009-11-03 Thread Gabriel M. Beddingfield
On Tue, 3 Nov 2009, Dave Allan wrote: really puzzle people. There could be a boolean property (which I think is what Gabriel was proposing) that enables the MIDI note property for the kit. That would make both cases work pretty easily--people who want No... the thought I had with the

Re: [Hydrogen-devel] [LAU] Hydrogen and compiling

2009-11-01 Thread Gabriel M. Beddingfield
Hi Julien, I'm cross-posting this to the hydrogen-dev list. In theory, there should be no problem getting a no-X-dependency of hydrogenPlayer working. I can't tackle this at the moment... but perhaps another dev could take a look at it. I think the problem is either with the build script,

Re: [Hydrogen-devel] [LAU] Hydrogen and compiling

2009-11-01 Thread Gabriel M. Beddingfield
Hi Michael, On Mon, 2 Nov 2009, m.wolkst...@gmx.de wrote: hi julien, i am wolke and i have create the branch some weeks ago. BTW, I don't think Julien is on this list. I directed him to your branch, yesterday. He said that he built it successfully, but it still requires an X server to be

Re: [Hydrogen-devel] [LAU] Hydrogen and compiling

2009-11-01 Thread Gabriel M. Beddingfield
On Mon, 2 Nov 2009, Patrick Shirkey wrote: I can spend a little time on this on Thusday. @Gabriel: Are those steps that you outlined previously all that should be needed to make it work for Julien? Probably. But you know how it goes. :-) When working on the transport_redesign_2 branch,

Re: [Hydrogen-devel] Two Visions?

2009-10-30 Thread Gabriel M. Beddingfield
On Thu, 29 Oct 2009, Sebastian Moors wrote: *sigh* Now what? To be honest: I don't know :) :-) Here's what I've been thinking the last few days: 1. Hydrogen stays put. Everyone wants it. Noboby wants to see any drastic changes. 2. Most folks want Hydrogen to stay mostly a drum

Re: [Hydrogen-devel] New to Hydrogen, Want to Contribute

2009-10-30 Thread Gabriel M. Beddingfield
Hi Glen! On Fri, 30 Oct 2009, Glen Mann wrote: I'm starting to use Hydrogen more and more, and have some ideas on changes that I'd like to see (firstly, mid-song tempo change). So I downloaded the source and got it to compile, and made some basic changes just to see how scons works, as I

Re: [Hydrogen-devel] Two Visions?

2009-10-30 Thread Gabriel M. Beddingfield
On Thu, 29 Oct 2009, Dave Allan wrote: http://www.joelonsoftware.com/articles/fog69.html Very good article! Thanks! I have a good friend who once said, the only good code is _old_ code. :-) -gabriel --

Re: [Hydrogen-devel] Two Visions?

2009-10-27 Thread Gabriel M. Beddingfield
Hi guys... here's my answer... :-) On Mon, 26 Oct 2009, Gabriel M. Beddingfield wrote: 1. Those that keep Hydrogen focused on drums. Creating, performing, and editing drum patterns. Some even use Hydrogen strictly as a drum sampler. Has some live features... but still

Re: [Hydrogen-devel] [Hydrogen-users] export individual tracks at unity gain

2009-10-27 Thread Gabriel M. Beddingfield
On Tue, 27 Oct 2009, francis keyes wrote: Thanks. That should work. Is there a way to set Hydrogen levels in the mixer to unity gain? I'll have to dig in the source... but I think all the way up is unity. -gabriel

Re: [Hydrogen-devel] [Hydrogen-users] export individual tracks at unity gain

2009-10-27 Thread Gabriel M. Beddingfield
On Tue, 27 Oct 2009, francis keyes wrote: I tried this setup. Connecting into Ardour is no problem but the levels are wrong. The tracks are not clipping in Ardour but the waveforms are squared off and clipping someplace else. I need to have the level in Ardour be exactly the level of the

[Hydrogen-devel] Two Visions?

2009-10-26 Thread Gabriel M. Beddingfield
Watching the conversations over the future of Hydrogen, there appears to be two distinct types of visions: 1. Those that keep Hydrogen focused on drums. Creating, performing, and editing drum patterns. Some even use Hydrogen strictly as a drum sampler. Has some live

Re: [Hydrogen-devel] Future UI concepts

2009-10-24 Thread Gabriel M. Beddingfield
On Sat, 24 Oct 2009, Sebastian Moors wrote: That would allow that someone who works on a Netbook could work just with one widget at the time, but people with a 24 tft can work with more widgets ( like sequencer + instrument rack) at the same time.. Maybe we can even extent the idea and

Re: [Hydrogen-devel] Status of POXML fixes

2009-10-22 Thread Gabriel M. Beddingfield
Hi Carles, On Tue, 20 Oct 2009, Carles Perarnau wrote: So far, I'm still not confident enough to make commits myself, so for now I That's totally OK. :-) Once again: thanks! I'm actually *very* glad to have a Catalonian translation. One of my good friends married a girl from Barcelona.

Re: [Hydrogen-devel] Current Doc: Vision and Features

2009-10-22 Thread Gabriel M. Beddingfield
On Thu, 22 Oct 2009, Jason Schaefer wrote: Gabriel - What about putting this on a wiki? I'm open to it, but I would rather not. A few reasons... * I think we're nearly done with this doc. Not many more voices are chiming in. It's about time to hammer out and finalize a vision

Re: [Hydrogen-devel] Current Doc: Vision and Features

2009-10-22 Thread Gabriel M. Beddingfield
Hi Michael, On Fri, 23 Oct 2009, m.wolkst...@gmx.de wrote: -freesound tab in audiofile-browser * Ha! Every time you make one of these lists there's something new. :-) I'll get this on the list... but first: -director * What _is_ this? some thinking

Re: [Hydrogen-devel] Vision and the Future Feature List

2009-10-21 Thread Gabriel M. Beddingfield
On Wed, 21 Oct 2009, Alexandre Prokoudine wrote: My view is to stick with the UNIX philosophy: a set of simple tools which do just what they're intended to, and then are put together with pipes (jack) when needed. UNIX philosophy barely works for GUI applications. Admit it :) This is

Re: [Hydrogen-devel] Vision and the Future Feature List

2009-10-21 Thread Gabriel M. Beddingfield
On Wed, 21 Oct 2009, Carles Perarnau wrote: Summarizing: I like it as it is (well, with a better gui), you prefer it different? perfect, it's your oppinion. By no means I'm going to try to impose my thoughts to anyone, just share them. Yes, let's try to keep this attitude. :-) Guys,

[Hydrogen-devel] Current Doc: Vision and Features

2009-10-21 Thread Gabriel M. Beddingfield
I've attached the current state of the Hydrogen vision and features document that I've been compiling. Most recently I've gone through the Hydrogen forum and the Assembla bug tracker. It also has links to some YouTube videos that I think are relevant. Please, keep getting people's input.

Re: [Hydrogen-devel] Vision and the Future Feature List

2009-10-20 Thread Gabriel M. Beddingfield
Hi Sebastian, On Tue, 20 Oct 2009, Sebastian Moors wrote: Hydrogen is a multi-platform music workbench. It's interface is streamlined and easy-to-use even for musicians which are not computer [snip] Thanks! I hope that as many people as possible share their vision with us. Maybe we

[Hydrogen-devel] Kinetic Scrolling

2009-10-20 Thread Gabriel M. Beddingfield
Hi guys, When I was trying to imagine a future Hydrogen... kinetic scrolling (like what that have on an iPhone) came to mind. Check this out: http://labs.trolltech.com/blogs/2008/11/15/flick-list-or-kinetic-scrolling/ It takes a little getting used to with a mouse... and could use some

Re: [Hydrogen-devel] Vision and the Future Feature List

2009-10-20 Thread Gabriel M. Beddingfield
Hi guys, On Tue, 20 Oct 2009, Carles Perarnau wrote: My view is to stick with the UNIX philosophy: a set of simple tools which do just what they're intended to, and then are put together with pipes (jack) when needed. I've actually been a little torn on this issue... whether to go in a

Re: [Hydrogen-devel] Vision and the Future Feature List

2009-10-19 Thread Gabriel M. Beddingfield
Hi Dave, On Mon, 19 Oct 2009, Dave Allan wrote: My vision for Hydrogen is very simple, and it does most of what I need right now: I want to be able to drive Hydrogen from a set of electronic triggers, and I want to model the sounds that come from an acoustic kit as accurately as possible.

Re: [Hydrogen-devel] Status of POXML fixes

2009-10-14 Thread Gabriel M. Beddingfield
On Wed, 14 Oct 2009, Carles Perarnau wrote: Hm... what about the actual translation of the program? as far as I've been informed the manual is quite out of date. Nope. Manual is pretty up-to-date. Thanks for the translation! Did you notice that I also fixed the titles where things like

Re: [Hydrogen-devel] Status of POXML fixes

2009-10-14 Thread Gabriel M. Beddingfield
On Wed, 14 Oct 2009, Gabriel M. Beddingfield wrote: As for translation of the program... it looks like data/i18n/hydrogen.ca.qm is missing... but present for all the other translations. Does this need to be generated? (I'm not very familiar with the Qt translation process.) OK, I think I

Re: [Hydrogen-devel] Some advice for scons needed

2009-10-05 Thread Gabriel M. Beddingfield
On Mon, 5 Oct 2009, Orcan Ogetbil wrote: Negative. F-11 and F-12 use scons-1.2.0 but double compiling still occurs. I may have asked this before... but does it happen when compiling by hand? Or only when packaging an RPM? (I've got the impression that it's only when packaging for an

Re: [Hydrogen-devel] Some advice for scons needed

2009-10-05 Thread Gabriel M. Beddingfield
On Mon, 5 Oct 2009, Orcan Ogetbil wrote: The double-build only happens during rpmbuild. compiling by hand doesn't cause the double-build, even with the exact same commands the SPEC file uses. Thanks! I remember that we talked about this months ago. But I don't remember what was the

Re: [Hydrogen-devel] Some advice for scons needed

2009-10-03 Thread Gabriel M. Beddingfield
On Sat, 3 Oct 2009, Sebastian Moors wrote: config.h version.cpp scache.conf thanks for making clear where your problem is. Normally scons should compute the md5 value of those files and compile it only if they differ. I'm going to look into this tonight after our band rehearsal..

Re: [Hydrogen-devel] Some advice for scons needed

2009-10-02 Thread Gabriel M. Beddingfield
On Fri, 2 Oct 2009, Guido Scholz wrote: It's been discussed. It's not trivial to do. = Yes sure, but looking at hydrogens Sconstruct and qt4.py I would not assess these as trivial. Together they occupy 545 + 517 = 1062 lines I said it's __NOT__

Re: [Hydrogen-devel] Some advice for scons needed

2009-10-01 Thread Gabriel M. Beddingfield
Hi Guido, On Thu, 1 Oct 2009, Guido Scholz wrote: meanwhile I picked out your debian compile and install commands but this also fails: I can't explain except to say, scons works in mysterious ways. So what about moving to a more serious build system like autoconf/automake ;-) It's been

Re: [Hydrogen-devel] import sounds

2009-10-01 Thread Gabriel M. Beddingfield
On Thu, 1 Oct 2009, Fred wrote: I met a lil' problem when want to explore the local installed banks : when import from internet, it says save in /home/.hydrogen... But when explore the local, can't see the DOT directories. Did I mi(e)ss something ? Off the top of my head: Isn't there a

Re: [Hydrogen-devel] Some advice for scons needed

2009-09-28 Thread Gabriel M. Beddingfield
Hi Guido, On Mon, 28 Sep 2009, Guido Scholz wrote: about how to improve. After the compile step the scons install call triggered a re-compile of the complete source code. Of course this Ah! The Joy of Scons. :-) should not be the case, especially as no single source file is changed

Re: [Hydrogen-devel] Drumkit ElectricEmpireKit quality issue

2009-09-27 Thread Gabriel M. Beddingfield
Hi Guido, On Sat, 26 Sep 2009, Guido Scholz wrote: playing around with the new hydrogen version my son found an annoying sound bug in the above mentioned DrumKit. The sample called Snare 2 is significantly contaminated with high frequency parts. BTW no other sample is affected in this set.

Re: [Hydrogen-devel] Creating a developer manual

2009-09-20 Thread Gabriel M. Beddingfield
Hi Paolo, On Sun, 20 Sep 2009, Paolo Parisen Toldin wrote: I decided to create a developer manual but i realize that it's not so easy. I cannot understand the structure of the project (i'm a newbie). Not to discourage this... but how will this manual keep up as Hydrogen evolves? Also, in

Re: [Hydrogen-devel] Small/serious bug in DownloadWidget

2009-09-18 Thread Gabriel M. Beddingfield
On Fri, 18 Sep 2009, Sebastian Moors wrote: Hi! It would be cool if you could include the link to the forum post with the ubuntu binaries: http://www.hydrogen-music.org/forum/?action=show_threadfid=9thread=1120page=1 Thanks! Will do. Expect it around 18:00 GMT... LAA, LAU, and any other

Re: [Hydrogen-devel] Catalan Hydrogen translation.

2009-09-14 Thread Gabriel M. Beddingfield
Hi Carles, On Mon, 14 Sep 2009, Carles Perarnau wrote: Hi there, Any news regarding this issue? If it's just avoiding the use of some characters I will. Any thing I can do to help? I'm actually a programmer and if properly orientated I guess I could do some damage. I have most of the

Re: [Hydrogen-devel] Release preperations

2009-09-08 Thread Gabriel M. Beddingfield
On Tue, 8 Sep 2009, Sebastian Moors wrote: i've prepared a tarball with the sourcecode for 0.9.4, it would be great if you could test it and check if all the version numbers are ok and such things.. And of course binaries are welcome, as always ;-) Will do. I'll also try to get the manual

Re: [Hydrogen-devel] Release preperations

2009-09-08 Thread Gabriel M. Beddingfield
Hi guys, On Tue, 8 Sep 2009, Gabriel M. Beddingfield wrote: I built a packge OK on Debian Lenny. On 64 Studio (with Qt 4.3.4) I get this: g++ -o gui/src/PlaylistEditor/PlaylistDialog.o -c -pthread -O3 -fomit-frame-pointer -funroll-loops -DOSS_SUPPORT -DALSA_SUPPORT -DJACK_SUPPORT

Re: [Hydrogen-devel] Release preperations

2009-09-08 Thread Gabriel M. Beddingfield
On Tue, 8 Sep 2009, Sebastian Moors wrote: I opened the UI file with the Qt 4.3 version of Designer, and then saved it. The difference is attached. It still didn't compile because the .cpp file references 'playerControl.' IIRC, this issue was also reported recently on either the LAU or

Re: [Hydrogen-devel] Release preperations

2009-09-08 Thread Gabriel M. Beddingfield
Hi Patrick, On Wed, 9 Sep 2009, Patrick Shirkey wrote: I'm running qt-4.5.2 and I get this build error which doesn't happen with the svn version [snip] /usr/lib64/qt-3.3/bin/uic -o gui/src/UI/ui_about_dialog.h It is using the Qt 3 version of uic. That's the problem. Thanks, Gabriel

Re: [Hydrogen-devel] Sampler interface

2009-09-06 Thread Gabriel M. Beddingfield
On Sun, 6 Sep 2009, Patrick Shirkey wrote: songEngine - The song management code like bpm, position, volume, etc... audioEngine - The code for audio/midi i/o like jack, alsaseq, etc... How is this different from what we are currently doing... or what is planned for transport_redesign_2?

Re: [Hydrogen-devel] The Future: Specification and Roadmap

2009-09-04 Thread Gabriel M. Beddingfield
On Fri, 4 Sep 2009, Patrick Shirkey wrote: If we spin off libhydrogen, we could: * Offer Hydrogen sampler as a plugin. Where's the interface? Do you mean GUI? It depends on the plugin system... but generally plugins don't come with GUI's. There have been several requests to have

Re: [Hydrogen-devel] The Future: Specification and Roadmap

2009-09-03 Thread Gabriel M. Beddingfield
On Mon, 31 Aug 2009, Gabriel M. Beddingfield wrote: FWIW, this sort of thing is why I want to spin off libhydrogen and also UN-singleton everything. By having H2Core::Hydrogen (and friends) be singleton classes means that you need separate processes in order to get this sort of behavior

Re: [Hydrogen-devel] The Future: Specification and Roadmap

2009-09-01 Thread Gabriel M. Beddingfield
On Mon, 31 Aug 2009, Gabriel M. Beddingfield wrote: I suggest that we collect all feature requests and future directions into one document. (Well, as many as we can) FWIW, I plan to build this document after fixing issues with the manual. I have all the e-mails and will use those

Re: [Hydrogen-devel] The Future: Specification and Roadmap

2009-09-01 Thread Gabriel M. Beddingfield
On Tue, 1 Sep 2009, Alexandre Prokoudine wrote:     * Real-time looping with overdub (even if we're just       being a front-end for sooperlooper). Like in Ableton? First, my full experience with Live is the 2 or 3 official videos from Ableton on YouTube. So all I can say is, Dunno.

Re: [Hydrogen-devel] The Future: Specification and Roadmap

2009-09-01 Thread Gabriel M. Beddingfield
Hi Sebastian, On Tue, 1 Sep 2009, Sebastian Moors wrote: One would create a group of patterns in the song editor ( via shortcut) and then select the group of patterns as a the object which gets triggered by your button.. I think what Patrick is getting at is triggering patterns or groups of

Re: [Hydrogen-devel] The Future: Specification and Roadmap

2009-09-01 Thread Gabriel M. Beddingfield
On Tue, 1 Sep 2009, Sebastian Moors wrote: * One screen, uncluttered interface.[1] Make sure it works with Netbooks (like the EEE PC). Does this refer to the whole application or just the sampler interface? I was thinking the whole app. * JACK only. Reduce the number

[Hydrogen-devel] Windows paths in Linux build

2009-08-31 Thread Gabriel M. Beddingfield
Hi guys, in the final link, I noticed this: -LC:\Program Files\GnuWin32\lib Any idea why my GNU/Linux build is looking for a Windows path? -gabriel -- Let Crystal Reports handle the reporting - Free Crystal

[Hydrogen-devel] The Future: Specification and Roadmap

2009-08-31 Thread Gabriel M. Beddingfield
Hi Guys, There has been a lot of talk about new features, new directions, etc., etc. In addition, Patrick is doing a good job of drumming up support for the Live direction -- so we may see more developers. I suggest that we collect all feature requests and future directions into one

Re: [Hydrogen-devel] The Future: Specification and Roadmap

2009-08-31 Thread Gabriel M. Beddingfield
On Mon, 31 Aug 2009, Alexandre Prokoudine wrote: Wouldn't it be better to start with definition of the vision of the project? Who's vision? -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008

Re: [Hydrogen-devel] Further plans for 0.9.4

2009-08-31 Thread Gabriel M. Beddingfield
On Mon, 31 Aug 2009, Sebastian Moors wrote: it would be cool if we could agree on a rough release date for 0.9.4 ( if no critial bugs appear). The rc2 release was something like 17 days ago, so i would like to propose the weekend around the 12th September or the week after that. That would

Re: [Hydrogen-devel] The Future: Specification and Roadmap

2009-08-31 Thread Gabriel M. Beddingfield
On Tue, 1 Sep 2009, Patrick Shirkey wrote: I don't understand this. Why would it be useful to have two different songs playing at the same time? This would provide ultimate flexibility and is in keeping with the work flow that AL users expect. And the work flow that AL users expect

Re: [Hydrogen-devel] The Future: Specification and Roadmap

2009-08-31 Thread Gabriel M. Beddingfield
On Tue, 1 Sep 2009, Patrick Shirkey wrote: Sorry for not being clear enough. It's hard to express these abstract thoughts sometimes. Thanks! I think I understand what you mean a lot better, now. Exactly. The sample button is the item in the grid on the sampler interface. ie the red

Re: [Hydrogen-devel] playlist enhancement

2009-08-30 Thread Gabriel M. Beddingfield
On Sat, 29 Aug 2009, m.wolkst...@gmx.de wrote: http://www.hydrogen-music.org/forum/?action=show_threadfid=2thread=1112page=1 imo, the redesign as a bugfix with a small enhancement in work-flow. the old design looks more like a beta version and miss two essential function. 1. save

Re: [Hydrogen-devel] multiple pattern stacks [was : Re: [LAU] ableton live in vmware]

2009-08-29 Thread Gabriel M. Beddingfield
On Sat, 29 Aug 2009, Patrick Shirkey wrote: I have uploaded a mock up of the pattern trigger ui to the ticket. Each button would be associated with a completely independent sequence or stack of patterns with independent bpm settings. Additionally there would be a bpm label on the button

Re: [Hydrogen-devel] multiple pattern stacks [was : Re: [LAU] ableton live in vmware]

2009-08-29 Thread Gabriel M. Beddingfield
On Sat, 29 Aug 2009, Patrick Shirkey wrote: I will test them out again but my previous tests with them didn't look anything like that mockup. I have heard good things about seq24 recently though and I need to revisit them all. ?? seq24 has always looked like that, hasn't it? The main

Re: [Hydrogen-devel] multiple pattern stacks [was : Re: [LAU] ableton live in vmware]

2009-08-29 Thread Gabriel M. Beddingfield
On Sun, 30 Aug 2009, Patrick Shirkey wrote: A combination of hydrogen, tX, xwax, ardour, superlooper and freewheeling so to speak... superlooper is client/server out of the box... so aggregating that is *very* possible. So, I guess the question is: What sucks about the AL workflow?

Re: [Hydrogen-devel] multiple pattern stacks [was : Re: [LAU] ableton live in vmware]

2009-08-29 Thread Gabriel M. Beddingfield
On Sun, 30 Aug 2009, Patrick Shirkey wrote: Actually tX already has this functionality. I will need to spend some quality time with superlooper to get an idea of where it's at. I can't Do you have a URL for tX? I can't seem to find it. Peace, Gabriel

Re: [Hydrogen-devel] playlist enhancement

2009-08-29 Thread Gabriel M. Beddingfield
On Sat, 29 Aug 2009, m.wolkst...@gmx.de wrote: i don't understand your position into his statement :-? Mauser suggested that you merge your code. I raised an objection because it looks and sounds to me like more than a bug fix. I'm probably wrong. I'll see tomorrow. In the mean-time, you

Re: [Hydrogen-devel] Catalan Hydrogen translation.

2009-08-27 Thread Gabriel M. Beddingfield
Hi guys, On Wed, 26 Aug 2009, Gabriel M. Beddingfield wrote: On Wed, 26 Aug 2009, Sebastian Moors wrote: So, after finally checking that to my vague knowledge of the qt/gcc enviroment everything looks fine to me, I decide to upload the two sources and hopefully someone more experienced may

Re: [Hydrogen-devel] Catalan Hydrogen translation.

2009-08-27 Thread Gabriel M. Beddingfield
On Thu, 27 Aug 2009, Gabriel M. Beddingfield wrote: maybe you can try it with the latest poxml? I'm also going to see if perhaps poxml is really expecting some different schema (like DocBook Lite). Yep. KDE has their own DocBook DTD... and our manual doesn't validate against it. What

Re: [Hydrogen-devel] playlist enhancement

2009-08-27 Thread Gabriel M. Beddingfield
Hi Michael, On Thu, 27 Aug 2009, m.wolkst...@gmx.de wrote: I've seen that you're using std::string's in some places instead of QString's. Maybe you could change that and merge it then? Please, no. :-) We're *almost* there. Almost about to make a stable release. :-) No new features,

[Hydrogen-devel] Gabriel Beddingfield committed [1322]: Add a 'DEVELOPERS' file, mostly with info on making releases. (fwd)

2009-08-26 Thread Gabriel M. Beddingfield
Hey guys! I just wanted to explain this commit a little bit I was trying to get my head around all the steps needed before a stable release. It occurred to me to go ahead and write the steps down so I did. I'm not at all trying to fix anything that Sebastian is doing when he makes

Re: [Hydrogen-devel] playlist enhancement

2009-08-26 Thread Gabriel M. Beddingfield
On Wed, 26 Aug 2009, Sebastian Moors wrote: all changes are made in the fx... branch. but i think we can apply the changes to trunk without trouble. I've seen that you're using std::string's in some places instead of QString's. Maybe you could change that and merge it then? Please, no.

Re: [Hydrogen-devel] Gabriel Beddingfield committed [1322]: Add a 'DEVELOPERS' file, mostly with info on making releases. (fwd)

2009-08-26 Thread Gabriel M. Beddingfield
On Wed, 26 Aug 2009, Sebastian Moors wrote: Just one comment: At the first look i'm not getting the idea of removing the development warning for non-stable releases. Was this intended? I'm not a great fan of this warning anyway, but what shouldn't this be included in (at least) alpha and

Re: [Hydrogen-devel] svn

2009-08-25 Thread Gabriel M. Beddingfield
Hi Alexandre, On Tue, 25 Aug 2009, Alexandre Prokoudine wrote: This is a really stupid question, but where is the new SVN repo? :) http://svn.assembla.com/svn/hydrogen Peace, Gabriel -- Let Crystal Reports handle

Re: [Hydrogen-devel] individual instrument gain knob not saved within library

2009-08-14 Thread Gabriel M. Beddingfield
Hi, On Thu, 13 Aug 2009, Sebastian Moors wrote: gusage . wrote: Hi, this e-mail is to report a minor issue I've found when saving libraries (drumkits). I use to have a higher gain for the hi-hat pedal since it often sounds too low compared with the other instruments. To that end

[Hydrogen-devel] OT/YouTube: Video Sampling

2009-08-07 Thread Gabriel M. Beddingfield
Hi guys, Since we do a lot of sampling and sequencing here, I thought you might be interested in this YouTube video. Instead of just audio samples, he sequenced a bunch of audio+video samples to make this composition. I thought it was fun to watch:

[Hydrogen-devel] Transport Redesign: lead/lag scheduling

2009-08-06 Thread Gabriel M. Beddingfield
Hi guys, Jakob and I were talking (in a different thread) about the transport. One of the issues that came up is lead/lag scheduling, and I would like to get some more opinions on it. IN THE DISTANT FUTURE[1], I would like to be able to precisely set lead/lag settings by: a) ticks (so

Re: [Hydrogen-devel] Transport Redesign: lead/lag scheduling

2009-08-06 Thread Gabriel M. Beddingfield
Hi Michael, On Fri, 7 Aug 2009, m.wolkst...@gmx.de wrote: IN THE DISTANT FUTURE[1], I would like to be able to precisely set lead/lag settings by: [snip] don't know how this will work. ticks have a really big resulution and in moment we use 192 ticks in 4/4 or 48 ticks for every 1/4 beat.

Re: [Hydrogen-devel] Building on non-linux systems

2009-08-05 Thread Gabriel M. Beddingfield
Gabriel M. Beddingfield wrote: Sounds good. I'm playing around with qmake for linux to see what it would look like. FYI... when I got done with the qmake setup... it was... h not as nice as I had hoped. I did a bash script for the configure part... trying to get it to put out

Re: [Hydrogen-devel] transport design discussion / questions

2009-08-05 Thread Gabriel M. Beddingfield
Hi Jakob, jlun...@imada.sdu.dk wrote: The debate goes on... :-) For now, we could allow both ticks and ms offsets, and then decide later what happens if they're both present. I wonder if maybe a union (frames OR ticks OR ms OR ticks+ms) might be more appropriate. Giving the inputs a

Re: [Hydrogen-devel] transport design discussion / questions

2009-08-05 Thread Gabriel M. Beddingfield
On Wed, 5 Aug 2009, Jakob Lund wrote: Well, when I look at the code (so far) there's not that much to it. 90% of the real heavy lifting is being done by TransportPosition and the functions in song_helpers.cpp. If things start to get too much more involved... I would rather share code

[Hydrogen-devel] hydrogen and linuxsampler (fwd)

2009-08-03 Thread Gabriel M. Beddingfield
Hi Guys, I'm forwarding an e-mail sent by David Konsumer. He's found a way to convert Hydrogen drumkits to SoundFonts (SF2, can be used with fluidsynth). He has also converted these to the Gig format (can be used by linuxsampler). The python script for converting H2 drumkits to SF2 are

[Hydrogen-devel] OSX linker flags

2009-07-31 Thread Gabriel M. Beddingfield
Hi Guys, In the Mac build, I see lines like this: macx { LIBS += /opt/local/lib/libarchive.dylib } However, will this work: macx { LIBS += -L/opt/local/lib -larchive } Reason for asking: The latter syntax is more portable... and would help me in my qmake

  1   2   3   4   >