2017-10-09 04:08:04 +02:00
|
|
|
# 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
|
|
|
|
2022-08-31 21:09:08 +02:00
|
|
|
Some of vgmstream's features:
|
2024-06-07 13:24:57 +02:00
|
|
|
- Decodes [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.
|
2022-08-31 21:09:08 +02:00
|
|
|
- Support for looped BGM, using file's internal metadata for smooth transitions, with accurate
|
|
|
|
sample counts.
|
|
|
|
- [Subsongs](doc/USAGE.md#subsongs), playing a format's multiple internal songs separately.
|
|
|
|
- Many types of companion files (data split into multiple files) and custom containers.
|
2024-06-07 13:24:57 +02:00
|
|
|
- Encryption keys, internal stream names, and other unusual cases found in game audio.
|
2022-08-31 21:09:08 +02:00
|
|
|
- [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.
|
|
|
|
- Simple [external tagging](doc/USAGE.md#tagging) via .m3u files.
|
|
|
|
- [Plugins](#getting-vgmstream) are available for various media player software and operating systems.
|
|
|
|
|
|
|
|
The main development repository: https://github.com/vgmstream/vgmstream/
|
|
|
|
|
2023-02-05 22:22:41 +01:00
|
|
|
Automated builds with the latest changes: https://vgmstream.org
|
|
|
|
(https://github.com/vgmstream/vgmstream-releases/releases/tag/nightly)
|
2022-08-31 21:09:08 +02:00
|
|
|
|
2024-07-18 23:53:28 +02:00
|
|
|
Numbered releases: https://github.com/vgmstream/vgmstream/releases
|
2022-08-31 21:09:08 +02:00
|
|
|
|
|
|
|
Help can be found here: https://www.hcs64.com/
|
|
|
|
|
|
|
|
More documentation: https://github.com/vgmstream/vgmstream/tree/master/doc
|
|
|
|
|
|
|
|
## Getting vgmstream
|
|
|
|
There are multiple end-user components:
|
2023-01-15 18:24:41 +01:00
|
|
|
- [vgmstream-cli](doc/USAGE.md#testexevgmstream-cli-command-line-decoder): A command-line decoder.
|
2022-08-31 21:09:08 +02:00
|
|
|
- [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.
|
|
|
|
|
|
|
|
The main library (plain *vgmstream*) is the code that handles the internal conversion, while the
|
|
|
|
above components are what you use to get sound.
|
|
|
|
|
2024-07-18 23:53:28 +02:00
|
|
|
### Usage
|
|
|
|
If you want to convert game audio to `.wav`, get *vgmstream-cli* then drag-and-drop one
|
|
|
|
or more files to the executable (support may vary per O.S. or distro). This should create
|
|
|
|
`(file.extension).wav`, if the format is supported. You can also try the online web player
|
|
|
|
instead. See: https://vgmstream.org
|
|
|
|
|
|
|
|
More user-friendly would be installing a player like *foobar2000* (on Windows) or *Audacious*
|
|
|
|
(on Linux) and the vgmstream plugin. Then you can directly listen your files and set options like
|
|
|
|
infinite looping, or convert to `.wav` with the player's options (also easier to use if your file
|
|
|
|
has multiple "subsongs").
|
2022-08-31 21:09:08 +02:00
|
|
|
|
|
|
|
See [components](doc/USAGE.md#components) in the *usage guide* for full install instructions and
|
|
|
|
explanations. The aim is feature parity, but there are a few differences between them due to
|
2023-06-03 18:07:20 +02:00
|
|
|
missing parts on vgmstream's side or lack of support in the player.
|
2022-08-31 21:09:08 +02:00
|
|
|
|
2024-07-18 23:53:28 +02:00
|
|
|
Note that vgmstream cannot *encode* (convert from `.wav` to a game format), it only *decodes*
|
2022-08-31 21:09:08 +02:00
|
|
|
(plays game audio).
|
|
|
|
|
2024-07-18 23:53:28 +02:00
|
|
|
### Windows binaries
|
|
|
|
Prebuilt binaries:
|
|
|
|
- https://vgmstream.org (latest)
|
|
|
|
- https://github.com/vgmstream/vgmstream/releases (infrequent numbered releases)
|
2022-08-31 21:09:08 +02:00
|
|
|
|
2023-06-03 18:07:20 +02:00
|
|
|
The foobar2000 component is also available on https://www.foobar2000.org based on current
|
|
|
|
release.
|
|
|
|
|
2024-07-18 23:53:28 +02:00
|
|
|
You may also try the alternative versions (irregularly) built by [bnnm](https://github.com/bnnm):
|
2022-08-31 21:09:08 +02:00
|
|
|
- https://github.com/bnnm/vgmstream-builds/raw/master/bin/vgmstream-latest-test-u.zip
|
|
|
|
|
2024-07-18 23:53:28 +02:00
|
|
|
Or compile from source, see the [build guide](doc/BUILD.md).
|
2022-08-31 21:09:08 +02:00
|
|
|
|
2024-07-18 23:53:28 +02:00
|
|
|
### Linux binaries
|
2023-06-03 18:07:20 +02:00
|
|
|
A prebuilt CLI binary is available. It's statically linked and should work on systems running
|
|
|
|
Linux kernel v3.2 and above:
|
2024-07-18 23:53:28 +02:00
|
|
|
- https://vgmstream.org (latest)
|
|
|
|
- https://github.com/vgmstream/vgmstream/releases (infrequent numbered releases)
|
2022-08-31 21:09:08 +02:00
|
|
|
|
2023-06-03 18:07:20 +02:00
|
|
|
Building from source will also give you *vgmstream.so* (Audacious plugin), and *vgmstream123*
|
2024-07-18 23:53:28 +02:00
|
|
|
(command-line player), which can't be statically linked.
|
2022-08-31 21:09:08 +02:00
|
|
|
|
2024-07-18 23:53:28 +02:00
|
|
|
When building it needs several external libraries. For a quick script for Debian and Ubuntu-style
|
|
|
|
distros run `./make-build-cmake.sh`. The script will need to install dependencies first, so you
|
|
|
|
may prefer to run steps manually, which the [build guide](doc/BUILD.md) describes in detail.
|
2022-08-31 21:09:08 +02:00
|
|
|
|
2024-07-18 23:53:28 +02:00
|
|
|
### macOS binaries
|
|
|
|
A prebuilt CLI binary is available:
|
|
|
|
- https://vgmstream.org (latest)
|
|
|
|
- https://github.com/vgmstream/vgmstream/releases (infrequent numbered releases)
|
2023-06-03 18:07:20 +02:00
|
|
|
|
|
|
|
Otherwise follow the [build guide](doc/BUILD.md).
|
2022-08-31 21:09:08 +02:00
|
|
|
|
|
|
|
|
|
|
|
## More info
|
|
|
|
- [Usage guide](doc/USAGE.md)
|
|
|
|
- [List of supported audio formats](doc/FORMATS.md)
|
|
|
|
- [Build guide](doc/BUILD.md)
|
|
|
|
- [TXTH file format](doc/TXTH.md)
|
|
|
|
- [TXTP file format](doc/TXTP.md)
|
|
|
|
|
|
|
|
|
|
|
|
Enjoy! *hcs*
|