Ogg Opus tags editor
Go to file
2018-12-01 11:51:00 -05:00
src process_options: don't deduce path_out from inplace 2018-12-01 11:51:00 -05:00
t calling opustags without arguments is now an error 2018-12-01 11:36:03 -05:00
.gitignore build the project with cmake 2018-10-30 19:14:34 -04:00
CHANGELOG.md finalize 1.2.0 2018-11-25 12:13:30 -05:00
CMakeLists.txt substitute the @-markers in the man page 2018-11-21 21:41:55 -05:00
CONTRIBUTING.md review the user doc 2018-11-21 21:40:08 -05:00
LICENSE update the copyright notice 2018-10-27 20:36:18 -04:00
opustags.1 finalize 1.2.0 2018-11-25 12:13:30 -05:00
README.md finalize 1.2.0 2018-11-25 12:13:30 -05:00

opustags

View and edit Opus comments.

The current code quality of this project is getting better, and is suitable for reliably editing any Opus file provided it does not contain other multiplexed streams. Only UTF-8 is currently supported.

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 FILE       set the output file
  -i, --in-place          overwrite the input file instead of writing a different output file
  -y, --overwrite         overwrite the output file if it already exists
  -a, --add FIELD=VALUE   add a comment
  -d, --delete FIELD      delete all previously existing comments of a specific type
  -D, --delete-all        delete all the previously existing comments
  -s, --set FIELD=VALUE   replace a comment (shorthand for --delete FIELD --add FIELD=VALUE)
  -S, --set-all           replace all the comments with the ones read from standard input

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