We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b20cb8f commit 01a32d6Copy full SHA for 01a32d6
README.md
@@ -35,6 +35,7 @@ from nbswave import *
35
render_audio("song.nbs", "output", format='wav')
36
```
37
38
+> [!NOTE]
39
> Compatibility with audio formats depends on your FFmpeg configuration.
40
41
### Custom instruments
@@ -72,9 +73,14 @@ renderer.load_instruments("some_more_instruments.zip")
72
73
74
renderer.missing_instruments()
75
-renderer.mix_song()
76
+track = renderer.mix_song()
77
+
78
+track.save("song.mp3")
79
80
81
+> [!TIP]
82
+> For additional parameters, check out the source code!
83
84
## Contributing
85
86
Contributions are welcome! Make sure to open an issue discussing the problem or feature suggestion before creating a pull request.
0 commit comments