GitXplorerGitXplorer
S

podcast-playlist

public
1 stars
0 forks
9 issues

Commits

List of commits on branch main.
Verified
07334c1bc4add2e3e0d11a588b092c08aea56c41

Merge pull request #27 from Slord6/23-playlist-create-default-to-local

SSlord6 committed 14 days ago
Unverified
087803d0ffea08f4678f027ce27f63a0f558cc05

Switch to local-by-default playlists

SSlord6 committed 14 days ago
Verified
f1c67c35d6281c3351872de355bcf3254bdc2298

Merge pull request #26 from Slord6/bug/add-ts-dep

SSlord6 committed 14 days ago
Unverified
61c4e0a288e4ff05693280576fac42ca1e132d05

Add missing TS dependency

SSlord6 committed 14 days ago
Verified
69a10b7d7518d14f580a44d661014dc8db7eea13

Merge pull request #25 from Slord6/22-verbosity-setting

SSlord6 committed 14 days ago
Unverified
385a36a784378b7bdd0ca649c6763293937c4724

Add verbosity logging

SSlord6 committed 14 days ago

README

The README file for this repository.

podcast-playlist

This project exists to help me transition podcast listening from PodcastAddict to a Tangara. Ultimately it will tie into whatever process the companion app uses to transfer media and playlists to the device and scrobbling back off.

podcast-playlist currently supports fetching feeds, downloading episodes, building playlists and tracking listen history. It's probably 'good enough' to use, but I've not fully used it in anger yet, so there's likely quirks and bugs yet to be discovered!

Install

This assumes you have node/npm installed.

  1. Clone the repo
  2. npm i
  3. npm run build
  4. node .\dist\index.js

Usage

Invoke podcast-playlist with node .\dist\index.js. The documentation below just shows the subsequent commands (i.e. feed list means node .\dist\index.js feed list).

To get stuck in you can use --help for any (sub)command to get help.

Data

Data is by default stored in ./data. To change this set the environment variable PODCASTPLAYLISTDIR.

All the data is plain JSON files in a (hopefully!) sensible folder structure, with audio files in cache/podcastname directories.

Ingestion

Subscriptions

Unless you're starting completely from scratch, you probably have some existing subscriptions to import. OPML files are supported for this, or you can just use RSS fees URLs:

For ingestion, create a configuration file listing any OPML files or RSS feeds you want to add:

Configuration file:

{
    "opml": [
        "A:/Path/To/File.opml"
    ],
    "rss": [
        "https://example.com/rss"
    ]
}

Then

feed ingest --path "./config.json"

History

Items in the history are skipped when creating playlists.

If you have a previous listen history from Podcast Addict, you can import the sqlite database (App settings > Backup / Restore) to add your listen history:

history import --podcastAddict "<path/to/export.db>"

Otherwise, you can add entire feeds to the history with history feed --name "feedname" or mark all episodes in a playlist as played - history import --playlist "path/to/playlist.m3u"

Feed updates and the cache

You can refresh feeds using cache refresh. This will re-download all the RSS feeds.

To have episodes added to the cache, run cache update. Note that this will download all uncached episodes. To avoid this you can run update cache skip to mark episodes you don't want downloaded:

# Don't cache any episodes that are in the history
node .\dist\index.js cache skip --history
# Don't cache any episodes in the feed "EXAMPLE"
node .\dist\index.js cache skip --feed "EXAMPLE"
# Don't cache any episodes present in the feeds currently
node .\dist\index.js cache skip --all

You can also manually curate a history JSON and replace the one in the root data directory if you need more control:

{
    "_items": [
        {
            "_episodeName": "Episode title as it appears in the feed",
            "_episodeURL": "https://example.com/this/can/also/be/null.rss",
            "_listenDate": "2016-03-22T08:51:47.453Z",
            "_podcastName": "Name of the podcast as it appears in the feed",
            "_podcastId": null
        }
    ],
    ...
}

Audio

Importing existing audio files is being tracked in issue #15.

Playlist creation

To create a playlist, create a configuration file like below:

Configuration file:

{
    "playlist": {
        "include": [
            {
                "name": "Hello From The Magic Tavern",
                "exclude": [
                    "^Introducing"
                ],
                "ordered": true
            },
            {
                "name": "Pitch, Please",
                "ordered": false
            }
        ],
        "episodeTitleFilters": [
            "^BONUS.*"
        ],
        "count": 4
    }
}

Then invoke the creation:

playlist create --title playlist_name --configPath .\playlist_config.json --local

If you don't want the files downloaded, and just want the playlist to point to the URL of the episodes, drop the --local.