Adding custom Podcast Producer Feeds

Sometimes, it might make sense to create custom feeds in podcast producer.

The command to do so is

podcast -u [admin_user] --addfeed --feed_name "Custom Feed Name" \
  --query "LOWER(episode.title) LIKE '%producer%' or LOWER(episode.summary) LIKE '%engineering%'"

The above adds a feed using the admin user with a SQL query for works like producer from the episode title and the work engineering from the episode summary.

episode.description is also a valid description to use.

Another command that would be useful is

podcast -u [admin_user] --removefeed --feed_uuid  [feed_uuid_number]

or

podcast -u [admin_user] --enablefeed --feed_uuid  [feed_uuid_number]