I just downloaded and installed iTunes 8 from apple website, turning on Genius. we will see what kind of recommendations does it give me.
via iTunes 8: Ready for download - The Unofficial Apple Weblog (TUAW).
I just downloaded and installed iTunes 8 from apple website, turning on Genius. we will see what kind of recommendations does it give me.
via iTunes 8: Ready for download - The Unofficial Apple Weblog (TUAW).
Continuing with my previous post 1 , 2 …. I wrote a little script that I run every day via Windows Scheduled tasks. The script adjust the volume and EQ setting of all the podcasts and audiobooks everyday to update the just downloaded podcast. I find hard to listen to podcast and audiobook at the gym (that’s were I hear the podcast/audiobok) at the standard volume so I like to adjust the volume +100% and change the EQ setting to “Spoken word”.
Save the file adjustvolume.js and make sure that file extension is handled by wscript.exe. The file association windows should look like this

Now in Control Panel -> Scheduled Tasks you can set that script to execute every day to maintain your podcasts and audiobook with the correct settings
The other day I found out this post. Thanks to the examples javascript (or more accurately jscript) provided in the post I learned to write my own javascripts to manage muy iTunes library. Here’s the result a script to find out files under the “iTunes Music” folder that are not present in the iTunes library. It helpful we you mess up the library (I used the “Consolidate library” feauture and ended up with tons of duplicated files in the hard drive that didn’t show up the iTunes interface).
Here’s the script
It output it’s results to a “filesnotlinked.txt”. You can either delete those files if they are duplicates or add them to the library.
Tags: itunes javascript applescript
It seems that the company I’m working on has blocked http://media.libsyn.com. They have categorized it as entertaiment/radio so I cannot access the podcasts from Java Posse at work. I’m sync my iPod with the ITunes at work so I cannot hear them anymore. Because I’m not happy with the situation I tried to overcome the blocking using my connection at home, so after googling a little bit I found PHP Proxy that allows to access other sites throught it. So I installed at home and now I point my iTunes to retrieve the javaposse feed through it.
But I didn’t work off the shelf. It’s designed to work with web pages only so I had to tweak it a little bit:
The weird thing is that iTunes wouldn’t recognize a link like this one
http://mydomain/unrestricted/phpproxy/index.php?q=aHR0cDovL3Z ...
as a playable episode even when the content-type of the link is “video/x-m4v” and the type attribute of the enclosure tag is also “video/x-m4v”. The actual error says “there are no playable episodes ” .iTunes needs that the file extension in the url to be one of .mp3, .m4v, .mov or similar so I had to add code to add the right file extension next to the .php in the links and instruct the Apache web server to map al queries to index.php.xxx back to index.php. So the link in the enclosure tag look like
http://mydomain/unrestricted/phpproxy/index.php.m4v?q=aHR0cDovL3Z ...
I tested it with the following podcast and it works like a charm
The actual mod_rewrite commands that you need to add to httpd.conf are RewriteEngine on RewriteRule ^/unrestricted/phpproxy/index.php.(.*) /unrestricted/phpproxy/index.php [PT]
and the patch to PHPProxy.class.php
I hope this mod will help if someone has the same problems with phpproxy and itunes.