Skip to content

Commit 0753567

Browse files
committed
Release 3.13
1 parent 63fe503 commit 0753567

File tree

3 files changed

+27
-9
lines changed

3 files changed

+27
-9
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.12;
28-
my $version_text = "3.13-dev";
27+
my $version = 3.13;
28+
my $version_text;
2929
$version_text = sprintf("v%.2f", $version) unless $version_text;
3030
#
3131
# Help:
@@ -2333,7 +2333,7 @@ sub usage {
23332333
my @man;
23342334
my @dump;
23352335
push @man,
2336-
'.TH GET_IPLAYER "1" "January 2018" "Phil Lewis" "get_iplayer Manual"',
2336+
'.TH GET_IPLAYER "1" "March 2018" "Phil Lewis" "get_iplayer Manual"',
23372337
'.SH NAME', 'get_iplayer - Stream Recording tool and PVR for BBC iPlayer',
23382338
'.SH SYNOPSIS',
23392339
'\fBget_iplayer\fR [<options>] [<regex|index> ...]',

get_iplayer.1

+22-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH GET_IPLAYER "1" "January 2018" "Phil Lewis" "get_iplayer Manual"
1+
.TH GET_IPLAYER "1" "March 2018" "Phil Lewis" "get_iplayer Manual"
22
.SH NAME
33
get_iplayer \- Stream Recording tool and PVR for BBC iPlayer
44
.SH SYNOPSIS
@@ -49,7 +49,7 @@ Narrow search to exclude matched channel(s) (comma\-separated regex list). Defa
4949
Limit search to programmes that will expire in the next <hours> hours
5050
.TP
5151
\fB\-\-fields <field1>,<field2>,...
52-
Searches only in the specified comma separated fields
52+
Searches only in the specified fields. The fields are concatenated with spaces in the order specified and the search term is applied to the resulting string.
5353
.TP
5454
\fB\-\-future
5555
Additionally search future programme schedule if it has been indexed (refresh cache with: \-\-refresh \-\-refresh\-future).
@@ -191,6 +191,9 @@ Comma\-separated list of media stream suppliers to use if not included by defaul
191191
\fB\-\-log\-progress
192192
Force HLS/DASH download progress display to be captured when screen output is redirected to file. Progress display is normally omitted unless writing to terminal.
193193
.TP
194+
\fB\-\-mark\-downloaded
195+
Mark programmes in search results or specified with \-\-pid/\-\-url as downloaded by inserting records in download history.
196+
.TP
194197
\fB\-\-modes <mode>,<mode>,...
195198
Recording modes. See \-\-tvmode and \-\-radiomode (with \-\-long\-help) for available modes and defaults. Shortcuts: tvworst,tvworse,tvgood,tvvgood,tvbetter,tvbest,radioworst,radioworse,radiogood,radiovgood,radiobetter,radiobest (default=default for programme type).
196199
.TP
@@ -291,10 +294,13 @@ The format to be used for subdirectory naming. Use substitution parameters, e.g
291294
\fB\-\-suboffset <offset>
292295
Offset the subtitle timestamps by the specified number of milliseconds
293296
.TP
297+
\fB\-\-subs\-embed
298+
Embed soft subtitles in MP4 output file. Ignored with \-\-audio\-only and \-\-ffmpeg\-obsolete.
299+
.TP
294300
\fB\-\-subs\-mono
295301
Create monochrome titles, with leading hyphen used to denote change of speaker.
296302
.TP
297-
\fB\-\-subsraw
303+
\fB\-\-subs\-raw
298304
Additionally save the raw subtitles file
299305
.TP
300306
\fB\-\-subtitles
@@ -324,6 +330,12 @@ Force use of series/brand thumbnail (series preferred) instead of episode thumbn
324330
\fB\-\-thumbsize <width>
325331
Thumbnail size to use for the current recording and metadata. Specify width: 192,256,384,448,512,640,704,832,960,1280,1920. Invalid values will be mapped to nearest available. Default: 192
326332
.TP
333+
\fB\-\-tracklist
334+
Download track list of music played in programme, if available. Track times and durations may be missing or incorrect.
335+
.TP
336+
\fB\-\-tracklist\-only
337+
Only download track list of music played in programme (if available), not programme.
338+
.TP
327339
\fB\-\-whitespace, \-w
328340
Keep whitespace in file and directory names. Default behaviour is to replace whitespace with underscores.
329341
.SS "PVR Options:"
@@ -358,6 +370,9 @@ Add currently matched programmes to queue for later one\-off recording using the
358370
\fB\-\-pvr\-scheduler <seconds>
359371
Runs the PVR using all saved PVR searches every <seconds>. Synonyms: \-\-pvrscheduler
360372
.TP
373+
\fB\-\-pvr\-series
374+
Create PVR search for each unique series name in search results. Search terms required. Synonyms: \-\-pvrseries
375+
.TP
361376
\fB\-\-pvr\-single <search name>
362377
Runs a named PVR search. Synonyms: \-\-pvrsingle
363378
.SS "Config Options:"
@@ -487,6 +502,9 @@ Tag only downloaded radio programmes as iTunes podcasts
487502
\fB\-\-tag\-podcast\-tv
488503
Tag only downloaded tv programmes as iTunes podcasts
489504
.TP
505+
\fB\-\-tag\-tracklist
506+
Add track list of music played in programme (if available) to long description (lyrics).
507+
.TP
490508
\fB\-\-tag\-utf8
491509
Use UTF\-8 encoding for non\-ASCII characters in AtomicParsley parameter values (Linux/Unix/macOS only). Use only if auto\-detect fails.
492510
.SS "Misc Options:"
@@ -523,7 +541,7 @@ get_iplayer was written by Phil Lewis <iplayer2 (at sign) linuxcentre.net> and i
523541
.PP
524542
This manual page was originally written by Jonathan Wiltshire <[email protected]> for the Debian project (but may be used by others).
525543
.SH COPYRIGHT NOTICE
526-
get_iplayer v3.12, Copyright (C) 2008\-2010 Phil Lewis
544+
get_iplayer v3.13, Copyright (C) 2008\-2010 Phil Lewis
527545
This program comes with ABSOLUTELY NO WARRANTY; for details use \-\-warranty.
528546
This is free software, and you are welcome to redistribute it under certain
529547
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.12;
28-
my $VERSION_TEXT = "3.13-dev";
27+
my $VERSION = 3.13;
28+
my $VERSION_TEXT;
2929
$VERSION_TEXT = sprintf("v%.2f", $VERSION) unless $VERSION_TEXT;
3030

3131
use strict;

0 commit comments

Comments
 (0)