-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevelopers.html
129 lines (96 loc) · 5.27 KB
/
developers.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Developer Resources</title>
<link rel="stylesheet" href="/css/reset.css" type="text/css" />
<link rel="stylesheet" href="/css/default.css" type="text/css" />
<link rel="stylesheet" href="/css/pygments.css" type="text/css" />
<script language="javascript" src="/js/email.js"></script>
<!-- google analytics -->
<script type='text/javascript'>
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type='text/javascript'>
var pageTracker = _gat._getTracker("UA-4400684-1");
pageTracker._initData();
pageTracker._trackPageview();
</script>
</head>
<body>
<div id="smallheader">
<div class="wrapper">
<div id="logo">
<a href="/"><img src="/images/ta_logo_inverted.png" alt="Teragon Audio"/></a>
</div>
<!--
<div id="right">
<form method="get" id="searchform" action="#">
<fieldset class="search">
<input type="text" class="box" />
<button class="btn" title="Search">Search</button>
</fieldset>
</form>
</div>
-->
</div>
</div>
<div id="contentpart">
<div class="wrapper">
<ul class="menu">
<li class="menuitem"><a href="index.html">Home</a></li>
<li class="menuitem"><a href="/software.html">Software</a></li>
<li class="menuitem"><a href="/developers.html">Developer Portal</a></li>
<li class="menuitem"><a href="/performers.html">Performer Portal</a></li>
<li class="menuitem"><a href="/contact.html">Contact</a></li>
</ul>
<div id="content">
<div class="title">
<h1>
Developer Resources
</h1>
</div>
<!-- Start content -->
<h2 id="getting-started-with-audio-development">Getting started with audio development</h2>
<p>So you’ve got a great idea for a piece of audio software and don’t know where
to start? Check out these guides:</p>
<ul class="posts">
<li><a href="/article/What-language-should-I-learn-to-write-audio-plugins.html">What language should I learn to write audio plugins</a></li>
<li><a href="/article/Making-a-VST-plugin-from-scratch-with-Xcode.html">Making a VST plugin from scratch with Xcode</a></li>
<li><a href="/article/How-to-make-your-own-VST-host.html">How to make your own VST host</a></li>
<li><a href="/article/How-to-make-VST-plugins-in-Visual-Studio.html">How to make VST plugins in Visual Studio</a></li>
</ul>
<h2 id="all-development-related-articles">All development-related articles</h2>
<ul class="posts">
<li><a href="/article/Building-VST-plugins-on-Linux.html">Building VST plugins on Linux</a></li>
<li><a href="/article/Building-AudioUnits-with-modern-Mac-OSX.html">Building AudioUnits with modern Mac OSX</a></li>
<li><a href="/article/What-language-should-I-learn-to-write-audio-plugins.html">What language should I learn to write audio plugins</a></li>
<li><a href="/article/Android-audio-framework-comparison.html">A brief comparison of Android audio frameworks</a></li>
<li><a href="/article/How-to-do-realtime-recording-with-effect-processing-on-iOS.html">How to do realtime recording with effect processing on iOS</a></li>
<li><a href="/article/Making-a-VST-plugin-from-scratch-with-Xcode.html">Making a VST plugin from scratch with Xcode</a></li>
<li><a href="/article/Why-you-cant-remove-vocals-from-an-audio-file.html">Why you can't just remove vocals or make an A Capella of an audio file</a></li>
<li><a href="/article/You-cant-convert-between-MIDI-and-audio-files.html">Why you can't convert between MIDI and audio files</a></li>
<li><a href="/article/How-to-properly-write-raw-PCM-data-asynchronously-on-iOS.html">How to properly write raw PCM data asynchronously on iOS</a></li>
<li><a href="/article/How-to-make-your-own-VST-host.html">How to make your own VST host</a></li>
<li><a href="/article/How-to-make-VST-plugins-in-Visual-Studio.html">How to make VST plugins in Visual Studio</a></li>
</ul>
<h2 id="getting-help">Getting help</h2>
<p>Sometimes getting help for audio related stuff can be hard, as there are not
so many developers doing it. However, the best places to ask your questions
are generally <a href="http://stackoverflow.com">StackOverflow</a> and the <a href="http://www.kvraudio.com/forum/viewforum.php?f=33">KVR DSP &
Plug-In Development Forum</a>.</p>
<!-- End content -->
</div>
<div style="clear:both;"></div>
<div id="bottom">
<p class="footer">
<b>Questions or comments?</b> Send an email to
<script>mail2("info", "teragonaudio", 0, "subject=Developer Resources", "info at teragonaudio dot com")</script>.
Copyright (c) 2012 Teragon Audio. All Rights Reserved.
</p>
</div>
</div>
</div>
</body>
</html>