<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div style="text-align: left;"><blockquote type="cite">Anyone know how to add artwork to a file??</blockquote></div><div><br class="webkit-block-placeholder"></div>I just did something like this myself a few days ago. :) A quick snippet from my script:<div><br class="webkit-block-placeholder"></div><div>iTunes = app('iTunes')</div><div>artworksForTrack = iTunes.current_track.artworks.get()</div><div>artwork = artworksForTrack[0].get()</div><div><div>dataString = artwork.data.get().data</div><div># Assume fname is your file name</div><div>f = open(fname, 'wb')</div><div># When we write, we chop off the first 221 bytes to get rid of the pict header</div><div>f.write(dataString[222:])</div><div>f.close()</div><div><br class="webkit-block-placeholder"></div><div>Hope it helps!</div></div><div><br><div><div> <div><div id="signature" style="background-color:#f6f6f6;padding:10px;border:1px solid #ddd;font-family:'Lucida Grande', Verdana, Arial, sans-serif;font-size:11px;color:#494949;">                  <img src="http://www.mattpat.net/mailsig.png" alt="Matt Patenaude" style="float:left;padding-right:15px;height:36px;width:24px;">                  <p style="margin:0;padding:0;">                 <strong>Matt Patenaude</strong>, Developer for OS X and the Web<br>                 Blog: <a href="http://www.mattpat.net">mattpat.net</a><br>                 Portfolio: <a href="http://mattpatenaude.com">mattpatenaude.com</a>         </p> </div></div> </div><br></div></div></body></html>