Search found 59476 matches
- Sun Aug 20, 2017 12:41 am
- Forum: GNU/Linux
- Topic: Audacity 2.1.2-1 launch - core dump - support
- Replies: 5
- Views: 1064
Re: Audacity 2.1.2-1 launch - core dump - support
Are you running as root?
- Sat Aug 19, 2017 11:56 pm
- Forum: Windows
- Topic: Audacity crashes 3-5 seconds after opening
- Replies: 9
- Views: 405
Re: Audacity crashes 3-5 seconds after opening
I have already given my advice. You are of course free to ignore it.FL2070 wrote:As for resetting settings, will deleting the audacity folder in Appdata/roaming do?
- Sat Aug 19, 2017 11:51 pm
- Forum: Windows
- Topic: Problems with sample data import/export
- Replies: 6
- Views: 829
Re: Problems with sample data import/export
I have used stereo track with example of Sample data mentioned in Manual, but It doesn't work. Please, could You explain me, why It doesn't working properly? Please post the text file that you are trying to import. (details for how to attach a file to a forum post: https://forum.audacityteam.org/vi...
- Sat Aug 19, 2017 7:56 pm
- Forum: Windows
- Topic: Opening MPEG-TS files - audio is offset in timeline
- Replies: 4
- Views: 1102
Re: Opening MPEG-TS files - audio is offset in timeline
What is the command that you are using?m1maj wrote: I have switched to using the raw command line version of ffmpeg to transcode my MPEG-TS files.
Do you have an example file that we could try so that we can take a look at what may be going wrong?
- Sat Aug 19, 2017 6:49 pm
- Forum: Windows
- Topic: Adding randomized silence (Windows 10, Audacity 2.1.3)
- Replies: 86
- Views: 7072
Re: Adding randomized silence (Windows 10, Audacity 2.1.3)
Create a list of gain values. Shuffle that list of gain values So let's try that bit first: (defun gainlist (&aux glist) (do ((gain 0 (- gain 5))) ((= gain -50) glist) (dotimes (i 10) (push gain glist)))) (defun shuffle (gains) (let ((n (length gains))) (do* ((i (1- n) (1- i)) (j (random (1+ i)...
- Sat Aug 19, 2017 6:34 pm
- Forum: Windows
- Topic: Adding randomized silence (Windows 10, Audacity 2.1.3)
- Replies: 86
- Views: 7072
Re: Adding randomized silence (Windows 10, Audacity 2.1.3)
Generally I like to define all of my functions before I write the main script, so my plug-ins usually have a structure in the form of: set global variables (if any) define functions run the code We are not currently using any global variables, but we are defining a lot of functions (and one macro), ...
- Sat Aug 19, 2017 6:13 pm
- Forum: Windows
- Topic: Adding randomized silence (Windows 10, Audacity 2.1.3)
- Replies: 86
- Views: 7072
Re: Adding randomized silence (Windows 10, Audacity 2.1.3)
error: unbound variable - GAINLIST You have used "GAINLIST" as both a variable and a function name (which is perfectly valid, though can be a bit confusing). In the statement: (print (gainlist)) you are referring to the function. You can see that it is a reference to a function because th...
- Sat Aug 19, 2017 2:47 pm
- Forum: Maintaining / Improving this Forum
- Topic: Forum way too complicated
- Replies: 14
- Views: 8317
Re: Forum way too complicated [CLOSED]
All points raised in this topic appear to have been addressed, so I'll close this topic now.
- Sat Aug 19, 2017 2:42 pm
- Forum: Windows
- Topic: Still Will not import a file
- Replies: 5
- Views: 471
Re: Still Will not import a file
If Audacity 2.1.3 is installed, and FFmpeg is installed in accordance with the instructions in the manual (http://manual.audacityteam.org/man/faq_installation_and_plug_ins.html#ffdown), then Audacity should find FFmpeg automatically. Manually locating FFmpeg is only required if you have a custom (no...
- Sat Aug 19, 2017 2:38 pm
- Forum: Windows
- Topic: Only seeing 25 minutes out of a 7 hour .WAV [SOLVED]
- Replies: 4
- Views: 432
Re: Only seeing 25 minutes out of a 7 hour .WAV
it might be worth adding a note in the Audacity wiki about that I think there is a note somewhere, perhaps even in the manual, but the problem is that we can't make every potential pitfall prominent. Similarly we can only list a few "frequently asked questions" before the FAQ becomes too ...