Created
November 18, 2013 20:40
-
-
Save gitrc/7534933 to your computer and use it in GitHub Desktop.
Watch recorded programs from your TiVo using curl, tivodecode, and mplayer.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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