Re: Off-topic - Paddington

2022-06-06 Thread Paul Turvey

Various resolutions available on the Royal Family channel

https://www.youtube.com/watch?v=8H3WJ2qRwiQ&ab_channel=TheRoyalFamily

On 06/06/2022 11:21, David Taylor wrote:

Off-topic, but has any a full resolution link to the full Queen Meets
Paddington" video?  Can't find it on the iPlayer, and the only 
full-length one

I can find is the Daily Mail at just 640 x 360!

Thanks,
David
--
SatSignal Software - Quality software for you
Web: https://www.satsignal.eu
Email: david-tay...@blueyonder.co.uk
Twitter: @gm8arv

___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer


___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer


Re: Porridge

2019-07-07 Thread Paul Turvey
My guess is that it doesn't have a future or recent broadcast date so 
won't appear in the available search data.


Paul

On 07/07/2019 22:19, Dave Widgery wrote:

Hi Again,

i have just noticed that it is not recognising (by keyword) that there
are silent witness episodes available either, maybe there is something
different about boxed sets that is stopping the keyword working?
Dave

On Sun, 7 Jul 2019 at 15:44, Paul Turvey  wrote:

You can use the programme PID (b006m9kn) and download all of the
individual programmes (all 21) with one command:

get_iplayer --pid b006m9kn --pid-recursive

Paul

On 07/07/2019 14:32, Dave Widgery wrote:

Hi

I have noticed that the complete Porridge with Ronny Barker is
available on IPlayer but if I try and use the command.
get_iplayer Porridge

It comes back with 0 matching programs, if I do a search by pid works
fine, can anyone explain why porridge is not a valid keyword for
finding the programs.

Thanks in advance
Dave

___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer

___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer

___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer


___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer


Re: Porridge

2019-07-07 Thread Paul Turvey
You can use the programme PID (b006m9kn) and download all of the 
individual programmes (all 21) with one command:


get_iplayer --pid b006m9kn --pid-recursive

Paul

On 07/07/2019 14:32, Dave Widgery wrote:

Hi

I have noticed that the complete Porridge with Ronny Barker is
available on IPlayer but if I try and use the command.
get_iplayer Porridge

It comes back with 0 matching programs, if I do a search by pid works
fine, can anyone explain why porridge is not a valid keyword for
finding the programs.

Thanks in advance
Dave

___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer


___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer


Re: Web PVR Linux

2019-01-27 Thread Paul Turvey

Well ...

$ get_iplayer_web_pvr
bash: get_iplayer_web_pvr: command not found...

As I said, my system runs the PVR from login and stays there until 
shutdown (stays after logout). Instead of 127.0.0.1 I used a fixed 
network IP address for my home server and, from another system (inc my 
phone/tablet)  on the same subnet (192.168 etc) can run the PVR 
remotely. System is Fedora 28 (not a respin).


Paul

On 27/01/2019 13:06, ipla...@nutwood.net wrote:

For future reference, the command is:

get_iplayer_web_pvr

Browser:

127.0.0.1:1935

Obvious when you know how.

This came from looking at the get_iplayer installation, not from any 
support docs that I could find. All the instructions I saw involved 
the command 'get_iplayer --listen' which isn't recognised.


My Windows get_iplayer automatically opens a browser at the correct 
address when I run the web pvr, my Raspbian installation requires me 
to open and point the browser manually, I presume that this is a 
general difference with Linux?





___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer


Re: Web PVR Linux

2019-01-27 Thread Paul Turvey

Oops, a few typos appeared. Here we go again:

Okay. Firstly download the get_iplayer.cgi script 
https://raw.githubusercontent.com/get-iplayer/get_iplayer/master/get_iplayer.cgi 
and install it into usr/bin or usr/local/bin (my pref). Don't forget to 
make it executable - chmod 755 get_iplayer.cgi


Hopefully you already have get_iplayer itself installed, dnf install 
get_iplayer does the trick or download the script from 
https://raw.githubusercontent.com/get-iplayer/get_iplayer/master/get_iplayer 
and install it in /usr/bin or /usr/local/bin Don't forget to make it 
executable - chmod 755 get_iplayer


I had trouble starting the web service using init calls so added a few 
lines to .bashrc :


# User specific aliases and functions
export IPLAYER_OUTDIR="/data/tv/new" < change to suit
/usr/local/bin/get_iplayer.cgi.sh &

This calls /usr/local/bin/get_iplayer.cgi.sh:

#!/bin/sh
#
/usr/local/bin/get_iplayer.cgi --listen 127.0.0.1 --port 1935 &
#

Make it executable with chmod 755 get_iplayer.cgi.sh

So this script, when called from .bashrc, starts at boot time. You'll 
need to logout/login or run the following line manually to start it the 
first time:



/usr/local/bin/get_iplayer.cgi --listen 127.0.0.1 --port 1935 &


Then point your browser at http://127.0.0.1:1935/

This might look convaluted but I've found it to be very stable. No root 
permissions are needed except to install te scripts to /usr/local/bin or 
usr/bin


Paul


On 27/01/2019 12:58, Paul Turvey wrote:
Okay. Firstly download the get_iplayer.cgi script 
https://raw.githubusercontent.com/get-iplayer/get_iplayer/master/get_iplayer.cgi 
and install it into usr/bin or usr/local bin (my pref). Don't forget 
to make it executable - chmod 755 get_iplayer.cgi


Hopefully you already have get_iplayer itself installed, dnf install 
get_iplayer does the trick or download the script from 
https://raw.githubusercontent.com/get-iplayer/get_iplayer/master/get_iplayer 
and install it in /usr/bin or /usr/bin/local


I had trouble starting the web service using init calls so added a few 
lines to .bashrc :


# User specific aliases and functions
export IPLAYER_OUTDIR="/data/tv/new" < change to suit
/usr/local/bin/get_iplayer.cgi.sh &

This calls /usr/local/bin/get_iplayer.cgi.sh:

#!/bin/sh
#
/usr/local/bin/get_iplayer.cgi --listen 127.0.0.1 --port 1935 &
#

Make it executable with chmod 755 get_iplayer.cgi.sh

So this script, when called from .bashrc, starts at boot time. You'll 
need to logout/login or run the following line manually to start it 
the first time:



/usr/local/bin/get_iplayer.cgi --listen 127.0.0.1 --port 1935 &


Then point your browser at http://127.0.0.1:1935/

This might look convaluted but I've found it to be very stable. No 
root permissions are needed except to install te scripts to 
/usr/local/bin or usr/bin


Paul 


___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer


Re: Web PVR Linux

2019-01-27 Thread Paul Turvey
Okay. Firstly download the get_iplayer.cgi script 
https://raw.githubusercontent.com/get-iplayer/get_iplayer/master/get_iplayer.cgi 
and install it into usr/bin or usr/local bin (my pref). Don't forget to 
make it executable - chmod 755 get_iplayer.cgi


Hopefully you already have get_iplayer itself installed, dnf install 
get_iplayer does the trick or download the script from 
https://raw.githubusercontent.com/get-iplayer/get_iplayer/master/get_iplayer 
and install it in /usr/bin or /usr/bin/local


I had trouble starting the web service using init calls so added a few 
lines to .bashrc :


# User specific aliases and functions
export IPLAYER_OUTDIR="/data/tv/new" < change to suit
/usr/local/bin/get_iplayer.cgi.sh &

This calls /usr/local/bin/get_iplayer.cgi.sh:

#!/bin/sh
#
/usr/local/bin/get_iplayer.cgi --listen 127.0.0.1 --port 1935 &
#

Make it executable with chmod 755 get_iplayer.cgi.sh

So this script, when called from .bashrc, starts at boot time. You'll 
need to logout/login or run the following line manually to start it the 
first time:



/usr/local/bin/get_iplayer.cgi --listen 127.0.0.1 --port 1935 &


Then point your browser at http://127.0.0.1:1935/

This might look convaluted but I've found it to be very stable. No root 
permissions are needed except to install te scripts to /usr/local/bin or 
usr/bin


Paul

On 27/01/2019 12:37, Charles Johnson wrote:

On 27/01/2019 09:10, ipla...@nutwood.net wrote:
It certainly is supported. Running on 2 of my Fedora 28 desktop PC's 


That's good. The only documentation i could find seemed to be 
Windows-oriented




___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer


___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer


Re: Web PVR Linux

2019-01-26 Thread Paul Turvey

It certainly is supported. Running on 2 of my Fedora 28 desktop PC's

P.

On 26/01/2019 19:02, Charles Johnson wrote:

On 26/01/2019 09:30, ipla...@nutwood.net wrote:
how do I run the Web PVR? I have found multiple options on the web, 
none of which I can get to work. 


afaicr ( i could be wrong ) the Web PVR is not supported on Linux


___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer


___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer


Re: I can't reply. Why?

2017-02-08 Thread Paul Turvey
I just had to re-authenticate with the get_iplayer mail server, 
apparently I had 14 bounces? Only one I'm aware of missing was the 
latest ANN from Square Penguin.


Topsy


On 08/02/17 16:55, Charles Bradshaw wrote:

My replies to the list are bouncing. I didn't break the rules.

Why?


___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer



___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer


Re: Download your favourite BBC golden oldies for just £1.89

2015-11-05 Thread Paul Turvey

Oh well, not for me at the moment

BBC Store Downloader only works on Windows and Mac computers right 
now. Support for downloading on mobile and tablet devices is coming soon.
If you don't want to stream, downloading requires a Silverlight-based 
downloader. That excludes Linux (Novell Moonlight really doesn't work) 
and other devices.


Paul

On 05/11/15 10:39, CJB wrote:

Now if only they'd do Radio too ...

http://www.dailymail.co.uk/news/article-3304643/Download-favourite-BBC-shows-just-1-89-Corporation-putting-6-000-hours-content-sale-competes-Amazon-Apple.html

CJB

___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer



___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer


Re: BBC iPlayer cracks down and blocks VPN users

2015-10-12 Thread Paul Turvey
I have no need to worry about VPN as I can use another method if I am 
overseas.


I run a home server with a domain name and a DNS scheme that gets around 
a dynamic IP address. All I need to do therefore is SSH into the box 
using the FQDN and issue whatever GiP commands are necessary.. Fedora btw.


Paul

On 12/10/15 15:09, David Cantrell wrote:

On Fri, Oct 09, 2015 at 12:09:17PM +0100, CJB wrote:


Also I do know that many friends are ex-pats living overseas in warmer
climes over the British winter. They are all BBC licence fee payers.

There's nothing stopping them from running a private VPN end-point at
home, or running get_iplayer on a machine in the UK.


They have now been cut off from accessing what they have already paid
in advance for - use of iPlayer.

They're also cut off from accessing other things that they're paying for
too. How strange that they don't moan "I live on the Costa Del Fake Tan
for the winter but I still have to pay for my bins to be emptied at
home!"




___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer


Re: Still No TV Cache Refresh - day 2

2015-07-11 Thread Paul Turvey
Is Chrome the problem? I ran GiP in Chrome until about 2 months ago when 
I was getting the zero cache issue you describe. I also have Firefox and 
Seamonkey installed and it runs fine in those (haven't tried Opera as 
yet). I'm using Fedora but don't reckon that should make a difference in 
this case.


Paul

On 10/07/15 17:50, CJB wrote:

OK - thanks again. I guess I do have a work around - the command line
version. I'll see what day 3 brings. Chris B.

On 10/07/2015, Graham Temple (gmail)  wrote:

I know it is no comfort, but I use PVR all the time and I am not
experiencing any problems.  On 2.94

GT

-Original Message-
From: get_iplayer [mailto:get_iplayer-boun...@lists.infradead.org] On
Behalf
Of CJB
Sent: 10 July 2015 16:45
To: get_iplayer
Subject: Re: Still No TV Cache Refresh - day 2

Again thanks guys.

And thank you for the suggestions - whilst the Windows PVR doesn't seem to
refresh the TV cache - I've just tried the command line and got loads
(100s)
of new listings including about 50 for Wimbledon.

Seems like the PVR Refresh Cache is broken for tv - for me anyway.

Strange that Radio is fine for both PVR and command line!!

I don't think that output of TV lists was suppressed with 2.93/4.
Everything was working fine until a few days ago - I was getting listings
of
both TV and Radio.

Now in the last few days I'm getting listings for Radio but not TV.

It seems that the Windows PVR suddenly doesn't like listing TV but does
list
Radio.

In command line mode with

get_iplayer --refresh tv

this refreshes fine - with complete listings downloaded incl. I suspect
what
didn't get downloaded over the last two days or so.

As I said no issues with Radio.

Chris B.

On 10/07/2015, tellyaddict  wrote:

Sorry - yes I have GiP v2.94 I'm also using Chrome.

I don't have GiP open all the time. I start it up when I need to
download - about once every few days or for a special Quick URL.

I am using the Windows PVR - for both Radio and TV progs.

I always do a Cache Refresh for Radio and TV (both check marked). [No
Podcasts tho']

First I get the download dots for TV - but no listings at all.

Then I get the download dots for Radio with a full listing of progs.

Not sure if the TV cache is ever refreshed.

Chris B.

Do you get the same result if you refresh the TV cache from the
command line?

___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer


___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer



___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer



___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer


Re: Help with Linux installation please

2015-05-24 Thread Paul Turvey

Alan,

did you install GiP from one of the websites or did you use the Mint 
repositories to install? If you use the latter method it would also 
automatically install any dependencies. The Perl module you mention can 
be installed through apt-get, a google search gave me:


http://community.linuxmint.com/software/view/libxml-simple-perl

Topsy

On 24/05/15 15:47, Alan Milewczyk wrote:
I've been trying to download a large programme (around 6GB) and it 
barfs at the 4GB point using win7x64.


I remembered I had this problem last year with some large Wimbledon 
programmes and the only solution that worked then was using a Linux 
installation (at that time Linux Mint-16 32 bit. Only problem is that 
the PC I was using then is no longer alive, so it's been a case of 
installing Linux (Mint-17.1 64 bit) onto a different PC. Oh boy, I now 
remember why I loathe Linux so much, it's like pulling teeth without 
anaesthetic. :-(


I've tried to follow the installation instructions as closely as 
possible bearing in mind I might as well be reading Chinese but after 
umpteen iterations to download and install things that the system 
seemed to be telling me it needed, I'm still hitting a brick wall.


This is the output I'm getting on using the command line instruction
get_iplayer --tvmode=best --get 493


get_iplayer v2.92, Copyright (C) 2008-2010 Phil Lewis

This program comes with ABSOLUTELY NO WARRANTY; for details use 
--warranty.


This is free software, and you are welcome to redistribute it under 
certain


conditions; use --conditions for details.

Matches:

493:Eurovision Song Contest: 2015 - 4. Grand Final, BBC One, 
Entertainment,Music,Pop & Chart,Talent Shows,Variety Shows, default


INFO: 1 Matching Programmes

WARNING: Please download and run latest installer or install the 
XML::Simple Perl module for more accurate programme metadata.


INFO: Checking existence of default version

INFO: 
flashhd1,flashhd2,flashvhigh1,flashvhigh2,flashhigh1,flashhigh2,flashstd1,flashstd2,flashlow1,flashlow2 
modes will be tried for version default


INFO: Trying flashhd1 mode to record tv: Eurovision Song Contest: 2015 
- 4. Grand Final


WARNING: Required rtmpdump does not exist - cannot download Flash 
audio/video


INFO: skipping flashhd1 mode

INFO: Trying flashhd2 mode to record tv: Eurovision Song Contest: 2015 
- 4. Grand Final


WARNING: Required rtmpdump does not exist - cannot download Flash 
audio/video


INFO: skipping flashhd2 mode

INFO: Trying flashvhigh1 mode to record tv: Eurovision Song Contest: 
2015 - 4. Grand Final


WARNING: Required rtmpdump does not exist - cannot download Flash 
audio/video


INFO: skipping flashvhigh1 mode

INFO: Trying flashvhigh2 mode to record tv: Eurovision Song Contest: 
2015 - 4. Grand Final


WARNING: Required rtmpdump does not exist - cannot download Flash 
audio/video


INFO: skipping flashvhigh2 mode

INFO: Trying flashhigh1 mode to record tv: Eurovision Song Contest: 
2015 - 4. Grand Final


WARNING: Required rtmpdump does not exist - cannot download Flash 
audio/video


INFO: skipping flashhigh1 mode

INFO: Trying flashhigh2 mode to record tv: Eurovision Song Contest: 
2015 - 4. Grand Final


WARNING: Required rtmpdump does not exist - cannot download Flash 
audio/video


INFO: skipping flashhigh2 mode

INFO: Trying flashstd1 mode to record tv: Eurovision Song Contest: 
2015 - 4. Grand Final


WARNING: Required rtmpdump does not exist - cannot download Flash 
audio/video


INFO: skipping flashstd1 mode

INFO: Trying flashstd2 mode to record tv: Eurovision Song Contest: 
2015 - 4. Grand Final


WARNING: Required rtmpdump does not exist - cannot download Flash 
audio/video


INFO: skipping flashstd2 mode

INFO: Trying flashlow1 mode to record tv: Eurovision Song Contest: 
2015 - 4. Grand Final


WARNING: Required rtmpdump does not exist - cannot download Flash 
audio/video


INFO: skipping flashlow1 mode

INFO: Trying flashlow2 mode to record tv: Eurovision Song Contest: 
2015 - 4. Grand Final


WARNING: Required rtmpdump does not exist - cannot download Flash 
audio/video


INFO: skipping flashlow2 mode

ERROR: Failed to record 'Eurovision Song Contest: 2015 - 4. Grand 
Final (b05wplpd)'




I've run and rerun the latest installer and XML::Simple (I get 
XML::Simple is up to date. (2.20) but to no avail.


If I'd had a pointed head prior to all of this, it sure as heck would 
be well and truly blunted by now... Can anyone help please, in PLAIN 
ENGLISH?


Thx

Alan

___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer



___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer