Get-iPlayer - TV Index Cache: Difference between revisions

From PiRho Knowledgebase
Jump to navigationJump to search
Dex (talk | contribs)
No edit summary
Dex (talk | contribs)
mNo edit summary
Line 27: Line 27:
get_iplayer --verbose eastenders
get_iplayer --verbose eastenders
</pre>
</pre>
There is a bug in one of the Perl modules on Mac OS X 10.9. It's possible to make get_iplayer work on 10.9 by upgrading that module (see [[https://github.com/get-iplayer/get_iplayer/wiki/osx manual installation info in macOS install doc in wiki]])<br/>
Note: There is a bug in one of the Perl modules on Mac OS X 10.9. It's possible to make get_iplayer work on 10.9 by upgrading that module (see [[https://github.com/get-iplayer/get_iplayer/wiki/osx manual installation info in macOS install doc in wiki]])<br/>
Reference: [[https://forums.squarepenguin.co.uk/thread-1465 Square Penguin: No matching programmes listed after cache refresh]]
Reference: [[https://forums.squarepenguin.co.uk/thread-1465 Square Penguin: No matching programmes listed after cache refresh]]

Revision as of 08:07, 23 April 2025

For Debian, the TV Index Cache file is $HOME/.get_iplayer/tv.cache
And Windows it is %USERPROFILE%\.get_iplayer\tv.cache
To check that the cache is being updated, you can count the lines in the file.
In Linux:

wc -l $HOME/.get_iplayer/tv.cache

In Windows:

type %USERPROFILE%\.get_iplayer\tv.cache | find /c /v ""

To refresh the cache:

get_iplayer --refresh

To refresh the cache of a specific channel:

get_iplayer --refresh --refresh-include="BBC Four"

To produce verbose output while refreshing TV index cache:

get_iplayer --verbose --refresh --refresh-include="BBC Four"

To produce verbose output while searching for a TV show:

get_iplayer --verbose eastenders

Note: There is a bug in one of the Perl modules on Mac OS X 10.9. It's possible to make get_iplayer work on 10.9 by upgrading that module (see [manual installation info in macOS install doc in wiki])
Reference: [Square Penguin: No matching programmes listed after cache refresh]