Skip to content

uyjulian/psf2wav

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

psf2wav

psf2wav is a converter to make raw pcm data from PSF(PSf1) file on Linux.

Usage

psf2wav dumps 16bit stereo 44.1kHz pcm data to stdin, so you need to use it with other commands.

To Play now,

psf2wav xxx.psf | aplay -f cd

To convert to other format,

psf2wav xxx.psf | ffmpeg -f s16le -ar 44.1k -ac 2 -i - xxx.wav
psf2wav xxx.psf | ffmpeg -f s16le -ar 44.1k -ac 2 -i - -ab 192 -f ogg file.ogg

Options

  -e        : set decoder type, he or sexypsf (default:he).
  -t        : get song title (charset is SHIFT-JIS).
  -v        : print version.

Build

git clone https://github.com/mitsuman/psf2wav.git
cd psf2wav
mkdir Release
cd Release
cmake -DCMAKE_BUILD_TYPE=Release ..
make

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published

Languages

  • C 95.9%
  • C++ 4.1%