-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
35 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,34 @@ | ||
AuO | ||
AuO version 0.1 (beta) | ||
=== | ||
AuO, a browser-based audio recording and editing application. Uses browser-native technologies to avoid third-party dependencies. | ||
AuO, a browser-based audio recording and editing application. Uses browser-native technologies to | ||
avoid third-party dependencies. | ||
|
||
Include AuO in any application by including AuO.js. Then, create an instance with | ||
|
||
```javascript | ||
const auo = new AuO(link_to_server_url); | ||
``` | ||
|
||
where link_to_server is the URL to upload audio clips. Ignore this parameter to disable online | ||
saving. | ||
|
||
To launch AuO, simply call | ||
|
||
```javascript | ||
auo.launch(); | ||
``` | ||
|
||
and the interface should appear. To suspend AuO, click Close or call | ||
|
||
```javascript | ||
auo.suspend(); | ||
``` | ||
|
||
to make the interface disappear and prevent resource use. When you are ready to use AuO once more, | ||
call | ||
|
||
```javascript | ||
auo.launch(); | ||
``` | ||
|
||
again to relaunch the interface using the same instance. |
This file contains 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