vgmstream/README.md

88 lines
4.1 KiB
Markdown
Raw Normal View History

# vgmstream
2021-10-04 11:56:10 +02:00
This is vgmstream, a library for playing streamed (prerecorded) video game audio.
2021-02-16 23:20:00 +01:00
Some of vgmstream's features:
2021-10-04 11:56:10 +02:00
- [Hundreds of video game music formats and codecs](doc/FORMATS.md), from typical game engine files
to obscure single-game codecs, aiming for high accuracy and compatibility.
- Support for looped BGM, using file's internal metadata for smooth transitions, with accurate
sample counts.
2021-10-04 12:28:49 +02:00
- [Subsongs](doc/USAGE.md#subsongs), playing a format's multiple internal songs separately.
2021-10-04 11:56:10 +02:00
- Many types of companion files (data split into multiple files) and custom containers.
- Encryption keys, internal stream names, and many other unusual cases found in game audio.
- [TXTH](doc/TXTH.md) function, to add external support for extra formats, including raw audio in
many forms.
- [TXTP](doc/TXTP.md) function, for real-time and per-file config, like forced looping, removing
channels, playing certain subsong, or fusing multiple files into a single one.
2021-10-04 12:28:49 +02:00
- Simple [external tagging](doc/USAGE.md#tagging) via .m3u files.
2021-10-04 11:56:10 +02:00
- [Plugins](#getting-vgmstream) are available for various media player software and operating systems.
The main development repository: https://github.com/vgmstream/vgmstream/
2021-06-20 13:21:45 +02:00
Automated builds with the latest changes: https://vgmstream.org/downloads
2021-09-05 00:44:18 +02:00
Common releases: https://github.com/vgmstream/vgmstream/releases
2021-06-20 13:21:45 +02:00
Help can be found here: https://www.hcs64.com/
2021-10-04 11:56:10 +02:00
More documentation: https://github.com/vgmstream/vgmstream/tree/master/doc
2021-06-20 13:21:45 +02:00
2021-09-11 16:54:57 +02:00
## Getting vgmstream
2021-10-04 11:56:10 +02:00
There are multiple end-user components:
2021-10-04 12:28:49 +02:00
- [test.exe/vgmstream-cli](doc/USAGE.md#testexevgmstream-cli-command-line-decoder): A command-line decoder.
- [in_vgmstream](doc/USAGE.md#in_vgmstream-winamp-plugin): A Winamp plugin.
- [foo_input_vgmstream](doc/USAGE.md#foo_input_vgmstream-foobar2000-plugin): A foobar2000 component.
- [xmp-vgmstream](doc/USAGE.md#xmp-vgmstream-xmplay-plugin): An XMPlay plugin.
- [vgmstream.so](doc/USAGE.md#audacious-plugin): An Audacious plugin.
- [vgmstream123](doc/USAGE.md#vgmstream123-command-line-player): A command-line player.
2021-10-04 11:56:10 +02:00
The main library (plain *vgmstream*) is the code that handles the internal conversion, while the
above components are what you use to get sound.
2021-09-11 16:54:57 +02:00
2021-10-04 11:56:10 +02:00
See [components](doc/USAGE.md#components) in the *usage guide* for install instructions and
explanations. The aim is feature parity, but there are a few differences between them due to
missing implementation on vgmstream's side or lack of support in target player or API.
2021-09-11 16:54:57 +02:00
2021-09-11 17:19:10 +02:00
### Windows
2021-10-04 11:56:10 +02:00
You should get `vgmstream-win.zip`, which also bundles various components, or
`foo_input_vgmstream.fb2k-component` for the installable foobar2000 plugin from the
latest prebuilt binaries on our website:
- https://vgmstream.org/downloads
2021-02-16 23:20:00 +01:00
2021-10-04 11:56:10 +02:00
You can also get them from the less frequently updated releases on GitHub:
- https://github.com/vgmstream/vgmstream/releases
2021-09-11 16:54:57 +02:00
2021-10-04 11:56:10 +02:00
If the above links fail, you may also try the alternative, somewhat recent versions built by
[bnnm](https://github.com/bnnm):
- https://github.com/bnnm/vgmstream-builds/raw/master/bin/vgmstream-latest-test-u.zip
2020-11-21 15:59:58 +01:00
2021-10-04 11:56:10 +02:00
If you prefer, you may compile the components from source as well, see the
[build guide](doc/BUILD.md) for more information.
2018-01-07 20:13:42 +01:00
2021-09-11 17:19:10 +02:00
### Linux
2021-10-04 11:56:10 +02:00
For convenience, releases distribute a command-line decoder in `vgmstream-cli.zip`. It is
statically linked and should work on all systems running Linux kernel v3.2 and above.
- https://vgmstream.org/downloads
- https://github.com/vgmstream/vgmstream/releases
2018-01-07 20:13:42 +01:00
2021-10-04 11:56:10 +02:00
Building from source will also give you *vgmstream.so*, an Audacious plugin, and *vgmstream123*,
a command-line player.
When building from source code, many components have to be installed or compiled separately. The
[build guide](doc/BUILD.md) describes this process in more detail. For a quick build on Debian and
Ubuntu-style distributions, run `./make-build-cmake.sh`. The script will be installing various
dependencies, so you may prefer to copy the commands from the file and run them one by one.
### macOS
2021-10-04 20:49:19 +02:00
Please follow the [build guide](doc/BUILD.md).
2021-09-11 17:19:10 +02:00
## More info
- [Usage guide](doc/USAGE.md)
2021-10-04 11:56:10 +02:00
- [List of supported audio formats](doc/FORMATS.md)
2021-09-11 17:19:10 +02:00
- [Build guide](doc/BUILD.md)
2021-10-04 11:56:10 +02:00
- [TXTH file format](doc/TXTH.md)
- [TXTP file format](doc/TXTP.md)
Enjoy! *hcs*