Provided by: podget_0.8.10-1_all bug

NAME

       Podget - Simple tool to automate downloading of podcasts.

SYNOPSIS

       podget <options>

DESCRIPTION

       Podget  is  a simple podcast aggregator/downloader optimized for scheduled background jobs
       (i.e. cron).

       It features support for:
       - Downloading podcasts from RSS and ATOM XML feeds.
       - For sorting the files into folders and categories.
       - For importing URLs from iTunes PCAST files and OPML lists.
       - Automatic M3U & ASX playlist creation.
       - Cleanup of old files.
       - Automatic UTF-16 conversion for feeds hosted on MS Windows Servers.

OPTIONS

       -c <FILE> | --config <FILE>
              Name of configuration file.

       --create-config <FILE>
              Create configuration file and exit.

       -C | --cleanup
              Skip downloading and only run cleanup loop.

       --cleanup_days <NUMBER>
              Cleanup files older than <NUMBER> days.

       --cleanup_simulate
              Simulate cleanup loop to see what files would be deleted.

       -d <DIRECTORY> | --dir_config <DIRECTORY>
              Directory that configuration files are stored in.

       --dir_session <DIRECTORY>
              Directory that session files are stored in.

       -f | --force
              Force download of items from each feed even if they've already been downloaded.

       -h | --help
              Display condensed help dialog.

       -l <DIRECTORY> | --library <DIRECTORY>
              Directory to store downloaded files in.

       -n | --no-playlist
              Do not create M3U playlist of new items.

       -p | --playlist-asx
              In addition to M3U playlists, create ASX playlists.

       --playlist-per-podcast
              Create a playlist of new items for each podcast feed.

       -r <COUNT> | --recent <COUNT>
              Download only the <COUNT> newest items from each feed.

       --serverlist <FILE>
              Use <FILE> as serverlist instead of default.

       -s | --silent
              Run silently (for cron jobs).

       -v     Set verbosity to level 1.

       -vv    Set verbosity to level 2.

       -vvv   Set verbosity to level 3.

       -vvvv  Set verbosity to level 4.

       --verbosity <LEVEL>
              Set verbosity level (0-4).

       -V | --version
              Display version.

       OPML List Options:

              --import_opml <FILE or URL>
                     Import servers from OPML file or HTTP/FTP URL.

              --export_opml <FILE>
                     Export serverlist to OPML file.

       PCAST List Options:

              --import_pcast <FILE or URL>
                     Import server from iTunes PCAST file or HTTP/FTP URL.

INITIAL CONFIGURATION

       The  first  time  a  user  runs  podget,  it  will  create   a   configuration   directory
       ($HOME/.podget).   In  this  directory,  it  will install a default configuration file and
       serverlist.  It will attempt to download a single file from the single  server  configured
       on the list to verify that everything is working.  After this initial run, it is ready for
       the user to customize for their use.

EXAMPLE CRON JOB

       Once podget is running correctly, it's most useful if you run it from a cron job  so  that
       the  new  episodes are available to play or load onto a portable player and you don't have
       to wait for them to download.

       To edit your crontab, do:

         $ crontab -e

       Then add one line similar to this example:

         15 04 * * * /usr/bin/podget -s

       This will run podget at 4:15 AM every day.

       In some cases, you might need to add a few directories  to  your  PATH  variable  so  that
       Podget can find everything it needs.

       Then the job might look like:

         15 04 * * * PATH=/opt/local/bin:/usr/local/bin:$PATH /usr/bin/podget -s

AUTOMATIC CLEANUP

       You   can   enable   automatic   cleanup   with  every  run  by  configuring  it  in  your
       $HOME/.podget/podgetrc file. Simply set the following options:

         # Autocleanup.
         # 0 == disabled
         # 1 == delete any old content
         cleanup=1

         # Number of days to keep files.   Cleanup will remove anything
         # older than this.
         cleanup_days=7

       However, some people prefer to run cleanup as a separate cron session. To do that, set the
       options in podgetrc to:

         # Autocleanup.
         # 0 == disabled
         # 1 == delete any old content
         cleanup=0

         # Number of days to keep files.   Cleanup will remove anything
         # older than this.
         cleanup_days=7

       Then add something similar to this example to your crontab:

         # Once a week on Sunday at 04:07AM
         07 04 * * Sun /usr/bin/podget -C

MULTIPLE CONCURRENT SESSIONS

       Podget  checks  for  sessions  using  the same core configuration file that may already be
       running when it starts and exits if any are found.  This insures  that  any  long  running
       sessions are not interrupted by new ones.

       If  you  have  feeds that require distinct configurations, then you can enable them to run
       simultaneously by  using  separate  configuration  files  for  each.   Then  if  you  have
       sufficient bandwidth, you can call them all at the same time.

       Example Crontab configuration:

         00 02 * * * /usr/bin/podget -c podgetrc-group1
         00 02 * * * /usr/bin/podget -c podgetrc-group2

SEQUENTIAL SESSIONS

       Sometimes,  you  have  feed  lists  that  use  the same configuration but you wish to keep
       separate.  There are two ways to handle this.

       First, run then separately from crontab with sufficient time  in  between  so  they  don't
       interfere with each other.

         00 02 * * * /usr/bin/podget --serverlist RSS-Feeds
         00 03 * * * /usr/bin/podget --serverlist ATOM-Feeds

       The second option is to place them into a shell script so they are called sequentially and
       do not interfere with each other and then add it to your crontab.

         #!/usr/bin/env bash
         /usr/bin/podget --serverlist RSS-Feeds
         /usr/bin/podget --serverlist ATOM-Feeds

ENABLING DEBUG OUTPUT

       Debug output can be enabled in two ways.

       The first way is by uncommenting the DEBUG option in your podgetrc and setting it to  '1'.
       However  this  way will not enable DEBUG until just over 1400 lines of script have run and
       when  podgetrc finally is read.  This is sufficient for most issues.

       The second way is from the command-line and enables debug as early as possible.

       Simply execute podget like so:

         $ DEBUG=1 podget -vvvv

       You can enable other options as well if you need to but  for  debugging  purposes,  it  is
       highly recommended that you enabled as much verbosity as possible.

SERVER LIST CONFIGURATION

       By  default,  Podget  uses  $HOME/.podget/serverlist  for  the  default list of servers to
       contact. However you can configure the name with the config_serverlist  variable  in  your
       $HOME/.podget/podgetrc file.

       Feeds are listed one per line in the serverlist file.

       Default format with category and name:
              <url> <category> <name>

       Alternate Formats:
       1. With a category but no name.
              <url> <category>
       2. With a name but no category (2 ways).
              <url> No_Category <name>
              <url> . <name>
       3. With neither a category or name.
              <url>

       1. URL Rules:
              A. Any spaces in the URL need to be converted to %20
       2. Category Rules:
              A. Must be one word without spaces.
              B. You may use underscores and dashes.
              C. You can insert date substitutions.
                     %YY%  ==  Year
                     %MM%  ==  Month
                     %DD%  ==  Day
              D. Category disabling:
                     -  With  a  name,  the  category  must  either  be  a  single  period (.) or
                     'No_Category'.
                     - If the name is blank, the category can also be blank.
       3. Name Rules:
              A. If you are creating ASX playlists, make sure the feed name  does  not  have  any
              spaces in it and the filename cannot be blank.
              B.  You  can  leave  the  feed  name blank, and files will be saved in the category
              directory.
              C. Names with spaces are only compatible with filesystems that allow for spaces  in
              filenames.   For  example, spaces in feed names are OK for feeds saved to Linux ext
              partitions but are not OK for those saved to Microsoft FAT partitions.
              D. Feed names can be disabled by leaving them blank.
       4. Disable the downloading of any feed by commenting it out with a leading #.

       Example:
        http://www.lugradio.org/episodes.rss Linux LUG Radio

       Example with date substitution in the category and a blank feed name:
        http://downloads.bbc.co.uk/rmhttp/downloadtrial/worldservice/summary/rss.xml
       News-%YY%-%MM%-%DD%

       Example of two ways to do a feed with authentication:
        http://somesite.com/feed.rss CATEGORY Feed Name USER:username PASS:password
        http://username:password@somesite.com/feed.rss CATEGORY Feed Name

              NOTE:  The  second  method  will  fail  if  a  colon (:) is part of the username or
              password.  Both methods will fail if a space is part of the username or password.

       Common Options:

       OPT_CONTENT_DISPOSITION
              Attempt to get filename from the Content-Disposition  tag  that  is  part  of  wget
              --server-response.

       OPT_DISPOSITION_FAIL
              This  option works in conjunction with OPT_CONTENT_DISPOSITION by removing any URLs
              that fail to receive a filename from the COMPLETED log.  This  allows  them  to  be
              automatically  retried  the next time a session runs.  If this option is added to a
              feed that has already been downloaded then the user will need to  remove  the  URLs
              for the problematic files from the COMPLETED log manually. On one feed this allowed
              for the improvement of the number of filename problems from  approximately  15%  to
              under  2%  over the course of 6 sessions.  Those sessions can occur sequentially on
              one day or as part of your established cron rotation.

       OPT_FEED_ORDER_ASCENDING
              By default, Podget assumes that items in a feed  will  be  listed  from  newest  to
              oldest  (descending  order).  This option will modify Podget's handling of the feed
              for those that are listed from oldest to newest.  This option  will  not  have  any
              noticeable effect for feeds where you want to download every item.  It will have an
              effect for new feeds when combined with the --recent [COUNT] option.

       OPT_FEED_PLAYLIST_NEWFIRST
              Most playlist options create lists of just the new items that are downloaded in the
              current  session.   This  option  creates  or updates a full playlist for all items
              available for a feed sorted  from  newest  to  oldest  based  on  the  modification
              date/time of the file.

       OPT_FEED_PLAYLIST_OLDFIRST
              Same  as  OPT_FEED_PLAYLIST_NEWFIRST  except  playlist  is  ordered  from oldest to
              newest.

       OPT_FILENAME_LOCATION
              Some feeds do not have the detailed filename listed in the FEED but  rather  rename
              the  file on redirection.  This option address that issue by attempting to grab the
              filename from the last 'Location:' tag in the output of 'wget --server-response'.

       OPT_FILENAME_RENAME_MDATE
              For feeds that use a singular filename for each item that is identified by  a  long
              somewhat  incomprehensible  string  in  the URL.  These feeds were previously fixed
              with FILENAME_FORMATFIX4 which would append the string to the  common  filename  to
              produce  unique filenames for each item.  However this produced filenames that were
              not very easy to understand.  This option gives us another method for dealing  with
              these   common  filenames.   This  appends  the  date  of  the  files  last  change
              (modification  date)  as  a   prefix   to   the   filename   in   the   format   of
              YYYYMMDD_HHhMMm_<common-part>.   This  makes  the  filenames sortable and gives the
              user something that makes a moderate amount of sense.  Does not work for all feeds,
              for  some  feeds  the last modification time for each file is the time of download.
              Which may be acceptable in some situations but can cause confusion when downloading
              more than one item at a time from a feed.

       OPT_NO_CERT_CHECK
              Disable  wget SSL certificate verification.  This is common used for feeds that are
              using self-signed certificates.

       OPT_PREFER_IPv4 or OPT_PREFER_IPv6
              Configure wget so that when a DNS lookup gives a choice of several  addresses  that
              it should connect to the specified family first.

       Examples:
        http://somesite.com/feed.rss CATEGORY Feed Name OPT_PREFER_IPv4
        http://somesite.com/feed.rss CATEGORY Feed Name OPT_PREFER_IPv6
        http://somesite.com/feed.rss CATEGORY Feed Name OPT_NO_CERT_CHECK
        http://somesite.com/feed.rss CATEGORY Feed Name OPT_CONTENT_DISPOSITION
        http://somesite.com/feed.rss      CATEGORY      Feed     Name     OPT_CONTENT_DISPOSITION
       OPT_DISPOSITION_FAIL
        http://somesite.com/feed.rss CATEGORY Feed Name OPT_FILENAME_LOCATION
        http://somesite.com/feed.rss CATEGORY Feed Name OPT_FILENAME_RENAME_MDATE
        http://somesite.com/feed.rss      CATEGORY      Feed      Name      OPT_FILENAME_LOCATION
       OPT_FILENAME_RENAME_MDATE
        http://somesite.com/feed.rss CATEGORY Feed Name OPT_FEED_ORDER_ASCENDING
        http://somesite.com/feed.rss CATEGORY Feed Name OPT_FEED_PLAYLIST_NEWFIRST
        http://somesite.com/feed.rss CATEGORY Feed Name OPT_FEED_PLAYLIST_OLDFIRST

       Atom Feed Options:
              The following options are available for advanced handling of Atom feeds.

       ATOM_FILTER_SIMPLE
              This option will enable filtering for just audio or video files from a feed.

       ATOM_FILTER_TYPE="type"
              This option allows more detailed filtering of the variety of types available.  This
              can limit the files downloaded to one type (example:  "audio/mpeg")  or  to  a  few
              types (example: "(audio|video)/.*" for all audio and video types, OR "audio/.*" for
              all audio types).

       ATOM_FILTER_LANG="language"
              If an Atom feed supports multiple languages for enclosures, then you can  use  this
              option to filter to only those you desire.  You can limit to one language (example:
              "en" for just English) or combine several  supported  languages  to  get  them  all
              (example:  "(en|es|fr)"  to download files in English, Spanish and French.  How the
              languages are defined may vary from feed to feed.

       Note:  If you do not enable any of  the  ATOM_FILTER  options  on  a  feed  with  multiple
       enclosures  per  item, when you run podget it will tell you the count per type or language
       to help you decide if you should enable the filters to reduce the number of  files  to  be
       downloaded.

       Examples:
        http://somesite.com/feed CATEGORY Feed Name ATOM_FILTER_SIMPLE
        http://somesite.com/feed CATEGORY Feed Name ATOM_FILTER_TYPE="audio/mpeg"
        http://somesite.com/feed CATEGORY Feed Name ATOM_FILTER_TYPE="(audio|video)/.*"
        http://somesite.com/feed CATEGORY Feed Name ATOM_FILTER_LANG="en"
        http://somesite.com/feed CATEGORY Feed Name ATOM_FILTER_LANG="(en|es|fr)"
        http://somesite.com/feed     CATEGORY     Feed     Name     ATOM_FILTER_TYPE="audio/mpeg"
       ATOM_FILTER_LANG="en"

HANDLING UTF-16 FEEDS

       Some servers provide their feeds in UTF-16 format rather than the more common UTF-8.

       To automatically convert these files, create a secondary serverlist at:

               $HOME/.podget/serverlist.utf16

       Remember to change the  name  of  the  serverlist  to  match  what  you  set  it  to  with
       config_serverlist if you changed it.

AUTHORS

       Dave Vehrs

                                        24 September 2020                               podget(7)