From 07b8eed3002d2d5df5305f0bcfb05594445cdde5 Mon Sep 17 00:00:00 2001 From: Adrian Siekierka Date: Mon, 15 May 2023 16:26:00 +0200 Subject: [PATCH] add initial README --- README.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..3bece70 --- /dev/null +++ b/README.md @@ -0,0 +1,28 @@ +# psxavenc + +psxavenc is an open-source command-line tool allowing for the encoding of PS1-format audio and video data. + +## Usage + +Run `psxavenc`. + +### Examples + +Converting a sound file to a 22050Hz SPU sample: + +```shell +$ psxavenc -f 22050 -t spu -c 1 -b 4 sound_file.ogg sound_file.snd +``` + +## Installation + +Requirements: + +* a recent version of FFmpeg, +* a recent version of Meson. + +```shell +$ meson setup build +$ cd build +$ ninja install +```