Ogg Opus tags editor
Go to file
Frédéric Mangano-Tarumi c604fdb667 encapsulate ogg_writer
2018-11-17 17:07:14 -05:00
src encapsulate ogg_writer 2018-11-17 17:07:14 -05:00
t t: cli.t -> opustags.t 2018-11-14 19:56:51 -05:00
.gitignore build the project with cmake 2018-10-30 19:14:34 -04:00
CMakeLists.txt ot::error_message 2018-11-13 18:04:26 -05:00
CONTRIBUTING.md add make check 2018-10-27 20:33:43 -04:00
LICENSE update the copyright notice 2018-10-27 20:36:18 -04:00
opustags.1 in-place 2013-01-02 10:59:43 +01:00
README.md build the project with cmake 2018-10-30 19:14:34 -04:00

opustags

View and edit Opus comments.

The current code quality of this project is in a sorry state, but that might change in the near future. It is expected to work well though, so please do open an issue if something doesn't work. New contributions are welcome but make sure you read CONTRIBUTING.md first.

Until opustags becomes top-quality software, if it ever does, you might want to check out these more mature tag editors:

See also these libraries if you need a lower-level access:

Requirements

  • a C++14 compiler,
  • CMake,
  • a POSIX-compliant system,
  • libogg.

Installing

opustags is a commonplace CMake project.

Here's how to install it in your .local, under your home:

mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=~/.local ..
make
make install

Note that you don't need to install opustags in order to run it, as the executable is standalone.

Documentation

Usage: opustags --help
       opustags [OPTIONS] FILE
       opustags OPTIONS FILE -o FILE

Options:
  -h, --help              print this help
  -o, --output            write the modified tags to a file
  -y, --overwrite         overwrite the output file if it already exists
  -d, --delete FIELD      delete all the fields of a specified type
  -a, --add FIELD=VALUE   add a field
  -s, --set FIELD=VALUE   delete then add a field
  -D, --delete-all        delete all the fields!
  -S, --set-all           read the fields from stdin

See the man page, opustags.1, for extensive documentation.