From 3c101badacc5033ad6a56c79b186bb7baafe80a0 Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Wed, 2 Jan 2019 11:38:15 -0800 Subject: [PATCH] Update README.md --- README.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fa09267..20a453e 100644 --- a/README.md +++ b/README.md @@ -138,8 +138,17 @@ print("iXML File Family UID:", info.ixml.family_uid) ### INFO Metadata INFO Metadata is a standard method for saving tagged text data in a WAV or AVI -file. - - +file. INFO fields are often read by the file explorer and host OS, and used in +music library software. + +```python +bullet_path = '../tests/test_files/BULLET Impact Plastic LCD TV Screen Shatter Debris 2x.wav' + +bullet = WavInfoReader(bullet_path) +``` + + print("INFO Artist:", bullet.info.artist) + print("INFO Copyright:", bullet.info.copyright) + print("INFO Comment:", bullet.info.comment)