package cmd
// RunMetadata handles the "metadata" subcommand
//
// JSON output schema:
//
// {
// "file": string, // Path to the WAV file
// "duration_seconds": float, // Duration in seconds
// "sample_rate": int, // Sample rate in Hz
// "channels": int, // Number of audio channels
// "bits_per_sample": int, // Bits per sample
// "comment": string, // WAV comment (omitted if empty)
// "artist": string, // WAV artist (omitted if empty)
// "file_mod_time": string // File modification time RFC3339 (omitted if zero)
// }