
Originally Posted by
fishman
Yesterday while watching F1 qualifying, I pressed record on the Tivo remote, the in progress banner that came up asked if i wanted to record the Disney channel.
One way this could happen is if the channel number for Disney was similar to that for the channel that was showing F1 qualifying. For example, if Disney is channel 51 and F1 was on channel 5 then it is likely that the TiVo had previously changed channel to the Disney channel, but that the STB did not get all the digits (eg the TiVo sent 051, and the STB received 05).
The following script will dump the automated channel changes from tivoLog.prv (with timestamps) which may help track down the cause:
Code:
#!/bin/sh
grep '|ST|' /var/log/tivoLog.prv |\
tail -40 |\
tr '|' ' ' |\
while read time entry; do
echo `date -d "1/1/1970 + $time seconds"` - $entry
done
Bookmarks