Update docs
Some checks failed
deploy_gh_pages_mkdocs / deploy (push) Has been cancelled

Add info on converting music to .ogg Vorbis.
This commit is contained in:
Stephen Seo 2024-10-29 19:39:50 +09:00
parent 35e24f08be
commit 8f4c645b92

View file

@ -43,3 +43,7 @@ depending on if the battle is with `silly` mobs or not.
It is recommended to use .ogg Vorbis files for music. There is support for It is recommended to use .ogg Vorbis files for music. There is support for
.mp3 files, but currently .ogg Vorbis files are more stable in this mod. .mp3 files, but currently .ogg Vorbis files are more stable in this mod.
Note that .ogg Opus files are NOT supported, but .ogg Vorbis files are. Note that .ogg Opus files are NOT supported, but .ogg Vorbis files are.
!!! note
The following command can convert to .ogg Vorbis using ffmpeg:
`ffmpeg -i <music_file> -map a:0 -c:a libvorbis output.ogg`