Skip to content

Instantly share code, notes, and snippets.

@gitrc
Created November 18, 2013 20:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gitrc/7534933 to your computer and use it in GitHub Desktop.
Save gitrc/7534933 to your computer and use it in GitHub Desktop.
Watch recorded programs from your TiVo using curl, tivodecode, and mplayer.
#!/bin/bash
#
# tivo stream before tivostream was.
#
MAK=YOUR_MAK
/usr/bin/curl --cookie sid=abc -k --digest -u tivo:${MAK} -c /dev/null $1 | /usr/bin/tivodecode -m ${MAK} -- - | /usr/bin/mplayer -vf pp=lb -cache 64768 -
# end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment