taglib questions - 2.3.0
Urs Fleisch
urs.fleisch at gmail.com
Fri Jun 26 17:03:34 BST 2026
Hi Uwe,
You will have to build TagLib from the sources and run the tagreader
example.
```
mkdir t
cd t
sudo apt-get build-dep taglib
sudo apt-get install ninja-build wget gdb
wget https://taglib.org/releases/taglib-2.3.tar.gz
tar xf taglib-2.3.tar.gz
mkdir build
cd build/
cmake -GNinja -DCMAKE_BUILD_TYPE=Debug -DBUILD_EXAMPLES=ON ../taglib-2.3
ninja
examples/tagreader /path/to/your/problem_file.mkv
```
If it crashes, you could try to start it in gdb and print the stack trace.
```
gdb --args examples/tagreader /path/to/your/problem_file.mkv
```
Then `r` to run it and if it crashed `bt` to print the stack trace. `q` to
quit.
Best regards,
Urs
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.kde.org/pipermail/taglib-devel/attachments/20260626/85ae1a23/attachment.htm>
More information about the taglib-devel
mailing list