Subsonic Android App Podcast Access

Need help? Post your questions here.

Moderator: moderators

Subsonic Android App Podcast Access

Postby Sampsonight » Fri Nov 20, 2015 1:05 am

I've been using the Subsonic Android and its great! Steams my music great!

One issue that I have is access to my podcast collection. I can't seem to find it in the app. If anyone knows of a way to access podcasts from the app please let me know! I believe I can create a podcast playlist and access that, but I don't think it will stay up to date automatically when new episodes are downloaded.

Any help is greatly appreciated.
Sampsonight
 
Posts: 5
Joined: Fri Mar 06, 2015 2:53 pm

Re: Subsonic Android App Podcast Access

Postby Sampsonight » Sun Feb 14, 2016 3:16 am

So I ended up creating a script that adds every podcast to a .m3u file and puts it in the folder I have subsonic looking for playlists.

Incase this helps anyone, the code is below.

Code: Select all

  #!/bin/bash
  #
  # bash script to create playlist files from mp3's in subdirectories
  #
  #allow for cron by cd into dir
   cd /mnt/nfs/Media/Podcast
  #the above directory is where the individial podcast folders are
 
  #get full path of working dir
  DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
 
  #remove exiting playlist file
  rm -fr podcasts.m3u
 
  #loop through mp3 files and add to playlist file
  find $DIR  -name '*.mp3' | while read line; do
      echo $line >>  "../Playlists/podcasts.m3u"
  done
 
Sampsonight
 
Posts: 5
Joined: Fri Mar 06, 2015 2:53 pm


Return to Help

Who is online

Users browsing this forum: No registered users and 27 guests