Skip to content

Commit 6181aae

Browse files
committed
Release 3.21
1 parent 656edbc commit 6181aae

File tree

3 files changed

+26
-14
lines changed

3 files changed

+26
-14
lines changed

get_iplayer

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
#
2525
#
2626
package main;
27-
my $version = 3.20;
28-
my $version_text = "3.21-dev";
27+
my $version = 3.21;
28+
my $version_text;
2929
$version_text = sprintf("v%.2f", $version) unless $version_text;
3030
#
3131
# Help:
@@ -2482,7 +2482,7 @@ sub usage {
24822482
'This applies even if the base option name already begins with "no-", e.g., --no-no-tag or --no-no-artwork',
24832483
);
24842484
push @man,
2485-
'.TH GET_IPLAYER "1" "February 2019" "Phil Lewis" "get_iplayer Manual"',
2485+
'.TH GET_IPLAYER "1" "July 2019" "Phil Lewis" "get_iplayer Manual"',
24862486
'.SH NAME', 'get_iplayer - Stream Recording tool and PVR for BBC iPlayer',
24872487
'.SH SYNOPSIS',
24882488
'\fBget_iplayer\fR [<options>] [<regex|index> ...]',

get_iplayer.1

+21-9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH GET_IPLAYER "1" "February 2019" "Phil Lewis" "get_iplayer Manual"
1+
.TH GET_IPLAYER "1" "July 2019" "Phil Lewis" "get_iplayer Manual"
22
.SH NAME
33
get_iplayer \- Stream Recording tool and PVR for BBC iPlayer
44
.SH SYNOPSIS
@@ -233,6 +233,9 @@ Record all related episodes if value of \-\-pid is a series or brand PID. Requi
233233
\fB\-\-pid\-recursive\-list
234234
If value of \-\-pid is a series or brand PID, list available episodes but do not download. Implies \-\-pid\-recursive. Requires \-\-pid.
235235
.TP
236+
\fB\-\-pid\-recursive\-type <type>
237+
Download only programmes of <type> (radio or tv) with \-\-pid\-recursive. Requires \-\-pid\-recursive.
238+
.TP
236239
\fB\-\-proxy, \-p <url>
237240
Web proxy URL, e.g., http://username:password@server:port or http://server:port. Value of http_proxy environment variable (if present) will be used unless \-\-proxy is specified. Used for both HTTP and HTTPS. Overridden by \-\-no\-proxy.
238241
.TP
@@ -255,7 +258,7 @@ Test only \- no recording (only shows search results with \-\-pvr and \-\-pid\-r
255258
TV recording modes (overrides \-\-modes): dvfhd,dvfsd,dvfxsd,dvfhigh,dvfxhigh,dvflow,hlshd,hvfhd,hvfsd,hvfxsd,hvfhigh,hvfxhigh,hvflow. Shortcuts: best,better,good,worst,dvf,hvf,dash,hls,hd,sd,high,low. 50fps streams (if available) preferred unless \-\-fps25 specified (default=hvfhd,dvfhd,hvfsd,dvfsd,hvfxsd,dvfxsd,hvfhigh,dvfhigh,hvfxhigh,dvfxhigh,hvflow,dvflow).
256259
.TP
257260
\fB\-\-url <url>,<url>,...
258-
Record the PIDs contained in the specified iPlayer episode URLs.
261+
Record the PIDs contained in the specified iPlayer episode URLs. Alias for \-\-pid.
259262
.TP
260263
\fB\-\-versions <versions>
261264
Version of programme to record. List is processed from left to right and first version found is downloaded. Example: '\-\-versions=audiodescribed,default' will prefer audiodescribed programmes if available.
@@ -274,7 +277,13 @@ User command to run after successful recording of TV programme. Use substitution
274277
Download programme credits, if available.
275278
.TP
276279
\fB\-\-credits\-only
277-
Only download programme credits (if available), not programme.
280+
Only download programme credits, if available.
281+
.TP
282+
\fB\-\-cuesheet
283+
Create cue sheet (.cue file) for programme, if data available. Radio programmes only. Cue sheet will be very inaccurate and will required further editing. Cue sheet may require addition of UTF\-8 BOM (byte\-order mark) for some applications to identify encoding.
284+
.TP
285+
\fB\-\-cuesheet\-only
286+
Only create cue sheet (.cue file) for programme, if data available. Radio programmes only.
278287
.TP
279288
\fB\-\-file\-prefix <format>
280289
The filename prefix template (excluding dir and extension). Use substitution parameters in template (see docs for list). Default: <name> \- <episode> <pid> <version>
@@ -283,7 +292,7 @@ The filename prefix template (excluding dir and extension). Use substitution par
283292
The maximum length for a file prefix. Defaults to 240 to allow space within standard 256 limit.
284293
.TP
285294
\fB\-\-metadata
286-
Create metadata info file after recording.
295+
Create metadata info file after recording. Valid values: generic,json. XML generated for 'generic', JSON for 'json'. If no value specified, 'generic' is used.
287296
.TP
288297
\fB\-\-metadata\-only
289298
Create specified metadata info file without any recording or streaming.
@@ -316,10 +325,10 @@ The format to be used for subdirectory naming. Use substitution parameters in f
316325
Offset the subtitle timestamps by the specified number of milliseconds. Requires \-\-subtitles.
317326
.TP
318327
\fB\-\-subs\-embed
319-
Embed soft subtitles in MP4 output file. Ignored with \-\-audio\-only and \-\-ffmpeg\-obsolete. Requires \-\-subtitles.
328+
Embed soft subtitles in MP4 output file. Ignored with \-\-audio\-only and \-\-ffmpeg\-obsolete. Requires \-\-subtitles. Implies \-\-subs\-mono.
320329
.TP
321330
\fB\-\-subs\-mono
322-
Create monochrome titles, with leading hyphen used to denote change of speaker. Requires \-\-subtitles.
331+
Create monochrome titles, with leading hyphen used to denote change of speaker. Requires \-\-subtitles. Not required with \-\-subs\-embed.
323332
.TP
324333
\fB\-\-subs\-raw
325334
Additionally save the raw subtitles file. Requires \-\-subtitles.
@@ -355,10 +364,10 @@ Thumbnail size to use for the current recording and metadata. Specify width: 192
355364
Download square version of thumbnail image.
356365
.TP
357366
\fB\-\-tracklist
358-
Download track list of music played in programme, if available. Track times and durations may be missing or incorrect.
367+
Create track list of music played in programme, if data available. Track times and durations may be missing or incorrect.
359368
.TP
360369
\fB\-\-tracklist\-only
361-
Only download track list of music played in programme (if available), not programme.
370+
Only create track list of music played in programme, if data available.
362371
.TP
363372
\fB\-\-whitespace, \-w
364373
Keep whitespace in file and directory names. Default behaviour is to replace whitespace with underscores.
@@ -551,6 +560,9 @@ Maximum number of connections to use for concurrent programme indexing. Default
551560
\fB\-\-purge\-files
552561
Delete downloaded programmes more than 30 days old
553562
.TP
563+
\fB\-\-release\-check
564+
Forces check for new release if used on command line. Checks for new release weekly if saved in preferences.
565+
.TP
554566
\fB\-\-throttle <Mb/s>
555567
Bandwidth limit (in Mb/s) for media file download. Default: unlimited. Synonym: \-\-bw
556568
.TP
@@ -565,7 +577,7 @@ get_iplayer was written by Phil Lewis <iplayer2 (at sign) linuxcentre.net> and i
565577
.PP
566578
This manual page was originally written by Jonathan Wiltshire <[email protected]> for the Debian project (but may be used by others).
567579
.SH COPYRIGHT NOTICE
568-
get_iplayer v3.20, Copyright (C) 2008\-2010 Phil Lewis
580+
get_iplayer v3.21, Copyright (C) 2008\-2010 Phil Lewis
569581
This program comes with ABSOLUTELY NO WARRANTY; for details use \-\-warranty.
570582
This is free software, and you are welcome to redistribute it under certain
571583
conditions; use \-\-conditions for details.

get_iplayer.cgi

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
# License: GPLv3 (see LICENSE.txt)
2525
#
2626

27-
my $VERSION = 3.20;
28-
my $VERSION_TEXT = "3.21-dev";
27+
my $VERSION = 3.21;
28+
my $VERSION_TEXT;
2929
$VERSION_TEXT = sprintf("v%.2f", $VERSION) unless $VERSION_TEXT;
3030

3131
use CGI qw(-utf8 :all);

0 commit comments

Comments
 (0)