Skip to content

Commit 01a32d6

Browse files
committed
chore: add missing export step to README
1 parent b20cb8f commit 01a32d6

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ from nbswave import *
3535
render_audio("song.nbs", "output", format='wav')
3636
```
3737

38+
> [!NOTE]
3839
> Compatibility with audio formats depends on your FFmpeg configuration.
3940
4041
### Custom instruments
@@ -72,9 +73,14 @@ renderer.load_instruments("some_more_instruments.zip")
7273

7374
renderer.missing_instruments()
7475

75-
renderer.mix_song()
76+
track = renderer.mix_song()
77+
78+
track.save("song.mp3")
7679
```
7780

81+
> [!TIP]
82+
> For additional parameters, check out the source code!
83+
7884
## Contributing
7985

8086
Contributions are welcome! Make sure to open an issue discussing the problem or feature suggestion before creating a pull request.

0 commit comments

Comments
 (0)