Skip to content

Instantly share code, notes, and snippets.

View DBRussell123456's full-sized avatar

DBRussell123456

View GitHub Profile
  1. Find the id, name and day of the show for the artist you want to load, replace whitespace or other symbols with underscores. You can find all the information here: https://appletv.itunesfestival.com/1b/en-GB/gb.json looking in the source code or by searching the artist on iTunes through Google and taking the ID from the url (p.e. Tony Bennet: https://itunes.apple.com/us/artist/tony-bennett/id484980)

  2. Launch the script: ./itunes-festival.sh day id_artist

    Example: ./itunes-festival.sh 06 484980_tonybennett

  3. Have fun.

Working for iTunes Festival September 2014. Also on OS X. Tnx to the original creator!

@DBRussell123456
DBRussell123456 / itf.py
Last active August 29, 2015 14:06 — forked from banteg/readme.md
import requests
import sys
import re
print('iTunes Festival London 2014 Downloader\n')
QUALITY = {
'1080p': ('8500_256', '.ts'),
'720p': ('3500_256', '.ts'),
'ac3': ('448', '.ac3')