Search found 1327 matches

by Edgar
Fri Oct 14, 2011 1:41 pm
Forum: Audio Processing
Topic: Expand Audacity
Replies: 25
Views: 4544

Re: Expand Audacity

klimmbimm wrote: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)
This is a dangerous solution as most of Audacity's code is NOT re-entrant--it is just not designed for multiple simultaneous instances.
by Edgar
Wed Oct 12, 2011 9:35 pm
Forum: General Audio Programming
Topic: turn Pan & Gain sliders off
Replies: 3
Views: 2027

turn Pan & Gain sliders off

In another thread we touched on disabling the Pan and Gain sliders in a Wavetrack: Oh, and while we're suggesting enhancements to the TCP I'd like to add the ability to turn the sliders "on" and "off"[...] - default setting to be "off". Peter 22Nov11: I tansfrerred the ...
by Edgar
Wed Oct 12, 2011 6:04 pm
Forum: Audio Processing
Topic: Expand Audacity
Replies: 25
Views: 4544

Re: Expand Audacity

It may be an OS or shell/CLI problem. I get something similar if I create something like this in a text file: audacity.exe -doSomething file1.wav audacity.exe -doSomething file2.wav audacity.exe -doSomething file3.wav then select all and copy then paste from the clipboard into a CLI (on Win7 using t...
by Edgar
Tue Oct 11, 2011 10:02 pm
Forum: Windows
Topic: Intermittent Recording Dropouts with Tascam US 122
Replies: 95
Views: 26621

Re: Intermittent Recording Dropouts with Tascam US 122

i.3.14 is the current code (1.3.13 was released in April '11) you may grab the nightly from here: http://wiki.audacityteam.org/index.php?title=Nightly_Builds There is very little change between 1.3.13 & 1.3.14 (as of 10/10/11)--a couple of obscure bugs quashed--probably nothing which would affec...
by Edgar
Tue Oct 11, 2011 8:47 pm
Forum: Windows
Topic: Intermittent Recording Dropouts with Tascam US 122
Replies: 95
Views: 26621

Re: Intermittent Recording Dropouts with Tascam US 122

For the time being 1.2 seems to be the answer for me despite it's shortcomings. If you run into any "show-stopper" problems with 1.2 I would be willing to do a "reasonable" amount of support in the way of "fixing" it on a custom basis. Be warned though, I am not famili...
by Edgar
Mon Oct 10, 2011 10:55 pm
Forum: General Feedback and Discussion
Topic: Fade-out shortcut
Replies: 2
Views: 3479

Re: Fade-out shortcut

Fade In (and Out) are effects and, at this time, Audacity has no way of assigning keyboard shortcuts to affects. If you look here: http://wiki.audacityteam.org/wiki/Feature_Requests#Keyboard_Shortcuts.2FModifiers you will see it is a highly requested feature: "Bind effects to buttons or keyboar...
by Edgar
Thu Oct 06, 2011 5:22 pm
Forum: Windows
Topic: Missing Audio Data Blockfile(s)
Replies: 5
Views: 1908

Re: Missing Audio Data Blockfile(s)

Occasionally, these "missing" AU files are still on your computer but in a different location/folder. Try searching your hard drives for one of the missing files using the Windows search function, make sure you search hidden and system folders, just in case.
by Edgar
Thu Oct 06, 2011 5:07 pm
Forum: Audio Processing
Topic: Expand Audacity
Replies: 25
Views: 4544

Re: Expand Audacity

Well done!
by Edgar
Tue Oct 04, 2011 5:05 pm
Forum: Audio Processing
Topic: Expand Audacity
Replies: 25
Views: 4544

Re: Expand Audacity

Having the whole function helps me a lot! I see a couple of problems. First, try moving the -input switch arg after the -output code (so that mSaveAsFileName is initialized before the project is opened); then : if (!handled && !wxString(wxT("-input")).CmpNoCase(argv[option])) { if ...
by Edgar
Fri Sep 30, 2011 4:51 pm
Forum: Audio Processing
Topic: Expand Audacity
Replies: 25
Views: 4544

Re: Expand Audacity

But I still have a problem: if called with -input and -output my Audacity tries to open the input and the output filename.The output filename doesn't exit yet, and and error appears. If the following is not enough to get you going, post the entire content of the OnInit function you are having troub...