1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:57:44 +00:00

file: Read more metadata from audio files

We can always read the basic format information (sample rate, bit depth,
etc.), but we will also print artist, album, and title if available in
the metadata.
This commit is contained in:
kleines Filmröllchen 2023-03-07 16:59:02 +01:00 committed by Tim Flynn
parent a8963a270f
commit 0563048949
4 changed files with 51 additions and 8 deletions

View file

@ -492,7 +492,7 @@ if (BUILD_LAGOM)
if (NOT EMSCRIPTEN)
# LibELF is part of LibC in SerenityOS builds, but not in Lagom.
add_executable(file ../../Userland/Utilities/file.cpp)
target_link_libraries(file LibCompress LibCore LibELF LibGfx LibIPC LibMain)
target_link_libraries(file LibAudio LibCompress LibCore LibELF LibGfx LibIPC LibMain)
endif()
add_executable(gml-format ../../Userland/Utilities/gml-format.cpp)