Search found 14 matches
- Thu Nov 03, 2011 10:12 am
- Forum: Audio Processing
- Topic: Expand Audacity
- Replies: 25
- Views: 4532
Re: Expand Audacity
Do you have any clue if song length is critical? I don't think so. My wave-files are between about 1 and 60 seconds long. It is the same problem with the longer and the shorter ones. Are you working in stereo or mono? After importing your WAV, what is the Project Rate (left-most item on the Selecti...
- Wed Nov 02, 2011 2:33 pm
- Forum: Audio Processing
- Topic: Expand Audacity
- Replies: 25
- Views: 4532
Re: Expand Audacity
I checked out the latest Beta development source code from http://audacity.googlecode.com/svn/audacity-src/trunk/ (current HEAD revision: 11297) and ported my changes to the code. Regrettably this didn't solve my problem. I am still experiencing weird behavior if I save a (wave) file under its own f...
- Fri Oct 28, 2011 7:01 am
- Forum: Audio Processing
- Topic: Expand Audacity
- Replies: 25
- Views: 4532
Re: Expand Audacity
I thought that problem had been addressed/fixed a couple of months ago. Are you working with a recent SVN HEAD? No, I wasn't working with a recent SVN HEAD, but with the Audacity 1.3 release, I think. I'll try porting our changes next week and report my result. Thanks for pointing out GetEffectById...
- Wed Oct 26, 2011 11:22 am
- Forum: Audio Processing
- Topic: Expand Audacity
- Replies: 25
- Views: 4532
Re: Expand Audacity
Thank you, Edgar. I'll keep that in mind and perhaps I'll try to fix this later. Meanwhile I found another bug: If the -saveAs and -open parameters are the same (which means that the opened file is saved under its own name), the replaced file seems to be empty. Surprisingly I can avoid emptyness of ...
- Mon Oct 17, 2011 8:10 am
- Forum: Audio Processing
- Topic: Expand Audacity
- Replies: 25
- Views: 4532
Re: Expand Audacity
To avoid the bug I now just uncommented the "DDE connection to an already active Audacity" (ca. line 1683 to line 1700 in AudacityApp.cpp): ...it is just not designed for multiple simultaneous instances. Sorry, I chose the wrong english word: I meant " commented out the DDE connection" (it was "unc...
- Fri Oct 14, 2011 12:50 pm
- Forum: Audio Processing
- Topic: Expand Audacity
- Replies: 25
- Views: 4532
Re: Expand Audacity
To avoid the bug I now just commented out the "DDE connection to an already active Audacity" (ca. line 1683 to line 1700 in AudacityApp.cpp): /* //mytry start wxClient client; wxConnectionBase *conn; // We try up to 10 times since there's a small window // where the DDE server may not have been full...
- Wed Oct 12, 2011 10:13 am
- Forum: Audio Processing
- Topic: Expand Audacity
- Replies: 25
- Views: 4532
Re: Expand Audacity
There is one "bug" I see in my Audacity version: If I open Audacity twice and a second Audycity (and third and so on...) instance should open with parameters, it fails: http://www.abload.de/img/failedtoopenaudacityx3gm.png It seems as if Audacity tries to open the file "-saveAs", which is my renamed...
- Thu Oct 06, 2011 9:12 am
- Forum: Audio Processing
- Topic: Expand Audacity
- Replies: 25
- Views: 4532
Re: Expand Audacity
Thank you so much Edgar!! :D It really seems to work now as I wanted: C:>"C:UsersmeDesktopaudacity-src - unA2LinuxwinReleaseAudacity.exe" -output "C:UsersmeDesktopoutputedited_1.wav" -input "C:UsersmeDesktopintput with spaces1.wav" For the sake of completeness the code (based on Edgar's UnA2Linux-fi...
- Tue Oct 04, 2011 3:39 pm
- Forum: Audio Processing
- Topic: Expand Audacity
- Replies: 25
- Views: 4532
Re: Expand Audacity
Thank you, Edgar! Your help keeps me going! On more thing to clarify: my Audacity should get a full qualified path with the input and the output argument, e.g.: "C:UsersmeDesktopAudacity.exe" -input "C:UsersmeMusicinputsinput.wav" -output "C:UsersmeMusicoutputsoutput.wav". Do you think, that would b...
- Fri Sep 30, 2011 2:09 pm
- Forum: Audio Processing
- Topic: Expand Audacity
- Replies: 25
- Views: 4532
Re: Expand Audacity
Thank you very much for your help! I used your uploaded files as basic. For the "-input" switch (opening a given file) and the "-output" switch (saving project under a given filename) I am using this code: I inserted this code in Audacity.cpp: //mytry start if (!handled && !wxString(wxT("-input")).C...