#Filesystem Media Type Podcasts Never Import

1 messages · Page 1 of 1 (latest)

edgy quail
#

Music Assistant Version: 2.8.0
Running via Docker.

I have created a music source with the following settings:
Source: Filesystem
Content Type: Podcasts
Path: /data/podcasts
Import Podcasts(files) into library ✅

Per the logs music assistant does see/process the files, but they never show up within music assistant.

INFO (MainThread) [music_assistant.Filesystem (local disk) [podcasts]] Found 417 changed/new items to process for Filesystem (local disk) [podcasts]
VERBOSE (MainThread) [music_assistant.Filesystem (local disk) [podcasts]] Processing: distractible/This Is Our Roman Empire [tOufNRBkkAo].opus

When restarting music assistant it "Finds" 417 changed/new items every time, there are no errors reported when processing.

When trying to browse the folder within the webUI (Browse -> Filesystem (local disk) [podcasts]) it is completely empty.

Not sure whats going on and I would appreciate some help 🙂

tribal onyx
edgy quail
#

I tried that but it did not resolve my issue. However it inspired me to dig around in the code a bit.
My specific problem is that all of my episodes are .opus files

I resolved the problem by adding opus to music_assistant/providers/filesystem_local/constants.py

PODCAST_EPISODE_EXTENSIONS = {"aa", "aax", "m4b", "m4a", "mp3", "mp4", "flac", "ogg"}
to
PODCAST_EPISODE_EXTENSIONS = {"aa", "aax", "m4b", "m4a", "mp3", "mp4", "flac", "ogg", "opus"}
tribal onyx
#

Great catch, I'll update the PR.

tribal onyx
#

And merged! If you're running the dev server, fetching the latest should hopefully fix you. 🤞