Results 1 to 2 of 2

Thread: In progess channel different to watched channel

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #2
    Join Date
    May 2004
    Location
    Wellington, NZ
    Posts
    477
    Quote 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
    Last edited by thomson; 02-04-2006 at 09:51 AM.

Similar Threads

  1. Rugby Channel has moved to Channel 37 on Sky
    By dread in forum New Zealand TV Guide Issues
    Replies: 0
    Last Post: 13-12-2009, 06:08 AM
  2. Which Channel 7?
    By Oberg1 in forum TV Guide Issues
    Replies: 1
    Last Post: 24-09-2008, 12:45 PM
  3. Channel 1 Ten HD
    By Raff in forum TV Guide Issues
    Replies: 1
    Last Post: 14-05-2008, 04:34 AM
  4. MTV channel 35
    By TerminalAddict in forum New Zealand TV Guide Issues
    Replies: 16
    Last Post: 21-08-2006, 07:30 AM
  5. No Nag Channel?
    By brucer in forum New Zealand TV Guide Issues
    Replies: 8
    Last Post: 27-07-2004, 11:19 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •