11-01-2022, 03:11 PM
(11-01-2022, 10:05 AM)5-pot-fan Wrote: Hi,
At present I can only view the tags using MP3Tag-Extended tags. This indicates that the type of tags is ID3v2.3 - RIFF ID3v2.3, and that I am using fields Album and Artist in most cases, plus also Title and Track in others.
Is there a more informative way I can provide this information if I cannot provide the tracks (on size grounds)?
WAV files are a kind of RIFF file (Google is your friend if you're interested in the nitty gritty details).
A free command line tool akin to mediainfo which is available for Linux, Mac, and Windows OSes is exiftool
Here's the output from this tool when I ran it in Win10 on a WAV file with metadata that I constructed for testing purposes (it's a synthesized C4 tone)
Code:
C:\Users\Kent\Downloads\exiftool-12.49>.\exiftool.exe S:\metatestC4.wav
ExifTool Version Number : 12.49
File Name : metatestC4.wav
Directory : S:/
File Size : 177 kB
File Modification Date/Time : 2022:11:01 07:26:30-07:00
File Access Date/Time : 2022:11:01 07:27:52-07:00
File Creation Date/Time : 2022:11:01 07:26:30-07:00
File Permissions : -rw-rw-rw-
File Type : WAV
File Type Extension : wav
MIME Type : audio/x-wav
Encoding : Microsoft PCM
Num Channels : 2
Sample Rate : 44100
Avg Bytes Per Sec : 176400
Bits Per Sample : 16
Product : Test Tracks
Track Number : 2
Date Created : 2022
Software : Lavf58.29.100
ID3 Size : 292
Album : Test Tracks
Artist : TheOldPresbyope
Band : TheOldPresbyope
Composer : TheOldPresbyope
Part Of Set : 1
Genre : Test
Title : MetaTest C4 WAV
Track : 2
Year : 2022
Date/Time Original : 2022
Duration : 1.00 s
This tool recognizes a phenomenal number of media types, far beyond the audio files we work with. There's enough material on the site to make my eyes glaze over.
Since ID3 is a scheme which uses specialized tag ids there's a section on the site which explains the exiftool mapping (https://exiftool.org/TagNames/ID3.html). Example: you won't find the string "Album" in the ID3 tag; instead you'll find a "TAL" id.
Regards,
Kent