Search found 59476 matches
- Mon Sep 19, 2016 6:35 pm
- Forum: Nyquist
- Topic: AFSK generator?
- Replies: 62
- Views: 14993
Re: AFSK generator?
I want to have somebody else in this forum explain what I'm talking about to you because obviously, the code I posted in previous posts, (maybe pg 2 or 3 of this topic)were edited for making more sense OK, I'll leave this for someone else to reply to, though you may be waiting a while as there are ...
- Mon Sep 19, 2016 12:02 pm
- Forum: Nyquist
- Topic: AFSK generator?
- Replies: 62
- Views: 14993
Re: AFSK generator?
What do you mean? What are "Nils" ?weldo5 wrote:the programming for Nils is unreadable (in the binary programming)
What "binary programming"?
- Mon Sep 19, 2016 11:58 am
- Forum: Audacity 2.x Feedback and Reviews
- Topic: Project window in program vs. in manual
- Replies: 4
- Views: 1027
Re: Project window in program vs. in manual
Looks the same to me. Check your Audacity version in "Help > About Audacity". Which manual are you looking at? This is the on-line version: http://manual.audacityteam.org/ Which operating system are you using? If you have customised the layout at any time, you can reset the toolbars: "...
- Mon Sep 19, 2016 11:54 am
- Forum: Windows
- Topic: coding entire tracks
- Replies: 9
- Views: 458
Re: coding entire tracks
If I've interpreted your equations correctly, this gives the music for one Earth year, compressed into 36.5 seconds. "basehz" is an arbitrary frequency offset. ;type generate (setf r1 149.0) (setf r2 108.0) (setf t1 365.0) (setf t2 (/ (* 8 365.0) 13.0)) (setf dur 36.5) (setf basehz1 440) (...
- Mon Sep 19, 2016 10:05 am
- Forum: Windows
- Topic: coding entire tracks
- Replies: 9
- Views: 458
Re: coding entire tracks
I want to make an audiofile in which the frequencies at specific moments come from a (stochastic) formula (made in excel at the moment) with a chirp in between these points. I tried it manually, very labour intensive, and practically impossible to change as points are very much related. And trying ...
- Mon Sep 19, 2016 10:03 am
- Forum: Windows
- Topic: coding entire tracks
- Replies: 9
- Views: 458
Re: coding entire tracks
You can do it using the built-in "Nyquist" scripting language (see: http://wiki.audacityteam.org/wiki/Nyquist_Plug-ins_Reference) For example, this code may be run in the Nyquist Prompt effect (see: http://manual.audacityteam.org/man/nyquist_prompt.html) The "data" list contains ...
- Mon Sep 19, 2016 7:12 am
- Forum: Nyquist
- Topic: AFSK generator?
- Replies: 62
- Views: 14993
Re: AFSK generator?
Thus only leaving minimum maximum for the two inputs. That's where it goes wrong. A "string input" widget does not use minimum / maximum vales. A "string input" widget is for inputting text - the variable is set to the value of the entered text. It does not make sense to have ma...
- Mon Sep 19, 2016 12:14 am
- Forum: Windows
- Topic: SETTINGS FOR AUDIO CASSETTE RECORDING
- Replies: 9
- Views: 1078
Re: SETTINGS FOR AUDIO CASSETTE RECORDING
It may be possible to make it less noticeable.
- Mon Sep 19, 2016 12:04 am
- Forum: Windows
- Topic: SETTINGS FOR AUDIO CASSETTE RECORDING
- Replies: 9
- Views: 1078
Re: SETTINGS FOR AUDIO CASSETTE RECORDING
Yes that does happen. It's called "print-through".wings1080 wrote:it's weird, but maybe after years of sitting in the box the tape being wrapped in a circle like it is, the magnetic imprints on the piece of tape next to it or something,
- Sun Sep 18, 2016 11:49 pm
- Forum: Nyquist
- Topic: AFSK generator?
- Replies: 62
- Views: 14993
Re: AFSK generator?
For the mark/space frequency ranges: Code: Select all ;control variablename "mark" string "frequency" 60, 6000 ;control variablename "space" string "frequency" 60, 6000 Firstly that code is wrong. The correct syntax for a string input widget is given in the d...