Created
March 20, 2011 10:15
-
-
Save koyachi/878251 to your computer and use it in GitHub Desktop.
Screw Plugin for Audacity.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 使い方 | |
| ----- | |
| 1. Audacity/plug-ins以下にscrew.nyを保存 | |
| 2. Audacity起動 | |
| 3. 音声ファイル開く | |
| 4. メニュー > エフェクト > Screwを押すとダイアログが開く | |
| 5. ダイアログのpitchとtempoを適当にいじってOK押すとスクリューされた波形となる | |
| 作例 | |
| ---- | |
| http://soundcloud.com/koyachi のScrewedってついてるやつ | |
| 参考 | |
| ---- | |
| - How to make choped and screwed music | |
| http://www.youtube.com/watch?v=h_Fp9aDWnFE | |
| - ピッチシフト関数について | |
| http://forum.audacityteam.org/viewtopic.php?f=12&t=29870#p100691 | |
| - Tempo Changeプラグイン | |
| http://audacity.sourceforge.net/download/nyquistplugins | |
| - Nyquistによるプログラミング | |
| http://audacity.sourceforge.net/help/nyquist |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;nyquist plug-in | |
| ;version 1 | |
| ;type process | |
| ;name "Screw" | |
| ;action "Screw" | |
| ;info "Screw by koyachi" | |
| ;control pitch_var "Pitch change" real "factor(0.1~1.0)" 0.30 0.10 1.00 | |
| ;control tempo_var "Tempo change" real "factor(0.1~8.0)" 1.20 0.10 8.00 | |
| (pitshift s pitch_var 1.0) | |
| (force-srate 44100 (stretch-abs tempo_var (sound s))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment