Python Subtitle Class
  >>> from subtitles import Subtitle
  >>> s = Subtitle(path_to_srt)
  >>> s.shift(1000) # mseconds
  >>> srt = s.toSrt() #unicode string in srt format

  >>> s['3']
  {'in': '00:00:05,800', out: '00:00:10,120', 
  text: 'The last 100 years have been\na story of resistance on'}

  >>> text = unicode(s) # just the text without time and running number

Source:
  bzr branch http://oil21.org/~j/code/pysubtitles

Dependencies:
  python2.5
  python-chardet

Test:
 nosetests --with-doctest subtitles

License:
  GPL 3 or later

