Search found 59476 matches

by steve
Sun Mar 01, 2020 8:53 pm
Forum: Windows
Topic: Raw data import - wav file > 4 Go
Replies: 6
Views: 1036

Re: Raw data import - wav file > 4 Go

Please post the full information - just copy and pasted from the web page. For example: General Complete name : myfiles.wav Format : Wave File size : 53.0 MiB Duration : 5 min 15 s Overall bit rate mode : Constant Overall bit rate : 1 411 kb/s Audio Format : PCM Format settings : Little / Signed Cod...
by steve
Sun Mar 01, 2020 8:49 pm
Forum: GNU/Linux
Topic: Can't get 2.3.3 installed with snap to find help files
Replies: 1
Views: 401

Re: Can't get 2.3.3 installed with snap to find help files

Snap packages are sandboxed (isolated from the outside world), so it's probably not possible to access the manual unless the manual has been built into the snap package.
by steve
Sun Mar 01, 2020 8:46 pm
Forum: New Plug-Ins
Topic: Repeat every X Seconds Y Times?
Replies: 2
Views: 859

Re: Repeat every X Seconds Y Times?

Try running this code in the Nyquist Prompt effect (https://manual.audacityteam.org/man/nyquist_prompt.html). The effect will be quite slow, and probably use a lot of RAM, so avoid running it on long selections. ;type process ;control dur "Interval duration" float "seconds" 0.2 0...
by steve
Sun Mar 01, 2020 8:05 pm
Forum: Windows
Topic: Time delay when recording.
Replies: 5
Views: 522

Re: Time delay when recording.

i can hear my voice with the headphones plugged into the audio interface but i cant hear the backing track in audacity. You need to set the "Recording device" in Audacity's "Device Toolbar" to the audio interface. https://manual.audacityteam.org/man/device_toolbar.html Also, ens...
by steve
Sun Mar 01, 2020 4:45 pm
Forum: Audacity Artwork and Graphics
Topic: Audacity Clean Dark Theme
Replies: 20
Views: 19704

Re: Audacity Clean Dark Theme

So that people that don't have an account at Deviantart can try out your theme, you can upload the "ImageCache.png" as an attachment to your post. (See: https://forum.audacityteam.org/viewtopic.php?f=49&t=64936) As this forum provides permanent storage, it also avoids annoyance when th...
by steve
Sun Mar 01, 2020 4:39 pm
Forum: Windows
Topic: Time delay when recording.
Replies: 5
Views: 522

Re: Time delay when recording.

Ensure that your headphones are plugged into the audio interface.
Then set up "latency correction". See: https://manual.audacityteam.org/man/latency_test.html
by steve
Sun Mar 01, 2020 2:20 pm
Forum: Русский
Topic: Russian manual
Replies: 56
Views: 385284

Re: Russian manual

I don't know much about gettext, but I think the po files have to be present at compile time for the translations to work.
by steve
Sun Mar 01, 2020 2:15 pm
Forum: Windows
Topic: RECORDING USING 2.3.3 AND WINDOWS 10
Replies: 8
Views: 1117

Re: RECORDING USING 2.3.3 AND WINDOWS 10

It appears to record for a few seconds and then stops and I get a straight line again. I see that it hasn't gone totally silent, just a lot quieter. Perhaps the Windows sound "enhancements" are kicking in. Ensure that all "enhancements" are disabled (see: https://manual.audacity...
by steve
Sun Mar 01, 2020 2:10 pm
Forum: macOS
Topic: Equalization not an option on my Audacity, why?
Replies: 1
Views: 544

Re: Equalization not an option on my Audacity, why?

Perhaps the "Filter Curve" effect: https://manual.audacityteam.org/man/filter_curve.html Only Graphic EQ but that doesn't give me any Hz values to reference, The sliders show their frequency and gain when you hover the mouse pointer over a slider. In the next Audacity release, the sliders ...
by steve
Sun Mar 01, 2020 2:00 pm
Forum: Windows
Topic: Convert Label text to LRC file
Replies: 81
Views: 7904

Re: Convert Label text to LRC file

This will return the byte values (This version is for Linux and will need adapting for Windows) import os import sys PIPE_BASE = '/tmp/audacity_script_pipe.' WRITE_NAME = PIPE_BASE + 'to.' + str(os.getuid()) READ_NAME = PIPE_BASE + 'from.' + str(os.getuid()) EOL = '\n' write_pipe = open(WRITE_NAME, ...