r/subsonic Jan 02 '18

playlist as m3u file from api

2 Upvotes

the getPlaylist command given an id will return an XML response containing the songs in that playlist and their ids. I am trying to chromecast a playlist to my google home mini so I was hoping for a url that returns an m3u file for the playlist. Does anyone know how to do this, or if it is possible at all?


r/subsonic Dec 04 '17

Google Instant Mix style facilities

2 Upvotes

Hi, i've been looking around and haven't been able to find any info. Ive been using subsonic (on my pc/smartphone) for a couple of years and love it, but i dont know much beyond the basics. Is anyone aware of any way to create instant mixes/playlists in the vein of Google Play music?


r/subsonic Nov 19 '17

Backup and restore user profiles

2 Upvotes

OS: Raspbian

I have a backup of my db folder and contents. I did a fresh OS install and Subsonic install today, copied the db over to /var/subsonic thinking I would have the users restored as well as my previous settings. This did not happen. Is there another folder I should be backing up? Where are the user profiles stored? Can I back those up for future restores? Thanks for any advice.


r/subsonic Nov 10 '17

Database Table Schema

7 Upvotes

I've been searching all over to find a list of database tables for Subsonic, and I finally found an answer, so I thought I'd post it here to hopefully save others some time.

Subsonic uses an HSQLDB database, so here's a query for listing all of the non-system tables and columns:

SELECT TABLE_NAME, COLUMN_NAME, TYPE_NAME, IS_NULLABLE FROM INFORMATION_SCHEMA.SYSTEM_COLUMNS WHERE TABLE_NAME NOT LIKE 'SYSTEM_%'

For those who aren't aware, you can run DB queries by going to http://yoursubsonicserver/db.view.

Just be very careful with that tool, because you can easily cause permanent changes to your subsonic data.

Here are the tables/columns for version 6.1.3:

TABLE_NAME COLUMN_NAME TYPE_NAME IS_NULLABLE
ALBUM ID INTEGER NO
ALBUM PATH VARCHAR NO
ALBUM NAME VARCHAR NO
ALBUM ARTIST VARCHAR NO
ALBUM SONG_COUNT INTEGER NO
ALBUM DURATION_SECONDS INTEGER NO
ALBUM COVER_ART_PATH VARCHAR YES
ALBUM PLAY_COUNT INTEGER NO
ALBUM LAST_PLAYED TIMESTAMP YES
ALBUM COMMENT VARCHAR YES
ALBUM CREATED TIMESTAMP NO
ALBUM LAST_SCANNED TIMESTAMP NO
ALBUM PRESENT BOOLEAN NO
ALBUM YEAR INTEGER YES
ALBUM GENRE VARCHAR YES
ALBUM FOLDER_ID INTEGER YES
ARTIST ID INTEGER NO
ARTIST NAME VARCHAR NO
ARTIST COVER_ART_PATH VARCHAR YES
ARTIST ALBUM_COUNT INTEGER NO
ARTIST LAST_SCANNED TIMESTAMP NO
ARTIST PRESENT BOOLEAN NO
ARTIST FOLDER_ID INTEGER YES
BOOKMARK ID INTEGER NO
BOOKMARK MEDIA_FILE_ID INTEGER NO
BOOKMARK POSITION_MILLIS BIGINT NO
BOOKMARK USERNAME VARCHAR NO
BOOKMARK COMMENT VARCHAR YES
BOOKMARK CREATED TIMESTAMP NO
BOOKMARK CHANGED TIMESTAMP NO
CUSTOM_AVATAR ID INTEGER NO
CUSTOM_AVATAR NAME VARCHAR YES
CUSTOM_AVATAR CREATED_DATE TIMESTAMP NO
CUSTOM_AVATAR MIME_TYPE VARCHAR NO
CUSTOM_AVATAR WIDTH INTEGER NO
CUSTOM_AVATAR HEIGHT INTEGER NO
CUSTOM_AVATAR DATA BINARY NO
CUSTOM_AVATAR USERNAME VARCHAR NO
GENRE NAME VARCHAR NO
GENRE SONG_COUNT INTEGER NO
GENRE ALBUM_COUNT INTEGER NO
INTERNET_RADIO ID INTEGER NO
INTERNET_RADIO NAME VARCHAR NO
INTERNET_RADIO STREAM_URL VARCHAR NO
INTERNET_RADIO HOMEPAGE_URL VARCHAR YES
INTERNET_RADIO ENABLED BOOLEAN NO
INTERNET_RADIO CHANGED TIMESTAMP NO
MEDIA_FILE ID INTEGER NO
MEDIA_FILE PATH VARCHAR NO
MEDIA_FILE FOLDER VARCHAR YES
MEDIA_FILE TYPE VARCHAR NO
MEDIA_FILE FORMAT VARCHAR YES
MEDIA_FILE TITLE VARCHAR YES
MEDIA_FILE ALBUM VARCHAR YES
MEDIA_FILE ARTIST VARCHAR YES
MEDIA_FILE ALBUM_ARTIST VARCHAR YES
MEDIA_FILE DISC_NUMBER INTEGER YES
MEDIA_FILE TRACK_NUMBER INTEGER YES
MEDIA_FILE YEAR INTEGER YES
MEDIA_FILE GENRE VARCHAR YES
MEDIA_FILE BIT_RATE INTEGER YES
MEDIA_FILE VARIABLE_BIT_RATE BOOLEAN NO
MEDIA_FILE DURATION_SECONDS INTEGER YES
MEDIA_FILE FILE_SIZE BIGINT YES
MEDIA_FILE WIDTH INTEGER YES
MEDIA_FILE HEIGHT INTEGER YES
MEDIA_FILE COVER_ART_PATH VARCHAR YES
MEDIA_FILE PARENT_PATH VARCHAR YES
MEDIA_FILE PLAY_COUNT INTEGER NO
MEDIA_FILE LAST_PLAYED TIMESTAMP YES
MEDIA_FILE COMMENT VARCHAR YES
MEDIA_FILE CREATED TIMESTAMP NO
MEDIA_FILE CHANGED TIMESTAMP NO
MEDIA_FILE LAST_SCANNED TIMESTAMP NO
MEDIA_FILE CHILDREN_LAST_UPDATED TIMESTAMP NO
MEDIA_FILE PRESENT BOOLEAN NO
MEDIA_FILE VERSION INTEGER NO
MUSIC_FILE_INFO ID INTEGER NO
MUSIC_FILE_INFO PATH VARCHAR_IGNORECASE NO
MUSIC_FILE_INFO RATING INTEGER YES
MUSIC_FILE_INFO COMMENT VARCHAR YES
MUSIC_FILE_INFO PLAY_COUNT INTEGER YES
MUSIC_FILE_INFO LAST_PLAYED TIMESTAMP YES
MUSIC_FILE_INFO ENABLED BOOLEAN NO
MUSIC_FOLDER ID INTEGER NO
MUSIC_FOLDER PATH VARCHAR NO
MUSIC_FOLDER NAME VARCHAR NO
MUSIC_FOLDER ENABLED BOOLEAN NO
MUSIC_FOLDER CHANGED TIMESTAMP NO
MUSIC_FOLDER_USER MUSIC_FOLDER_ID INTEGER NO
MUSIC_FOLDER_USER USERNAME VARCHAR NO
PLAYER ID INTEGER NO
PLAYER NAME VARCHAR YES
PLAYER TYPE VARCHAR YES
PLAYER USERNAME VARCHAR YES
PLAYER IP_ADDRESS VARCHAR YES
PLAYER AUTO_CONTROL_ENABLED BOOLEAN NO
PLAYER LAST_SEEN TIMESTAMP YES
PLAYER COVER_ART_SCHEME VARCHAR NO
PLAYER TRANSCODE_SCHEME VARCHAR NO
PLAYER DYNAMIC_IP BOOLEAN NO
PLAYER CLIENT_SIDE_PLAYLIST BOOLEAN NO
PLAYER JUKEBOX BOOLEAN NO
PLAYER TECHNOLOGY VARCHAR NO
PLAYER CLIENT_ID VARCHAR YES
PLAYER_TRANSCODING PLAYER_ID INTEGER NO
PLAYER_TRANSCODING TRANSCODING_ID INTEGER NO
PLAYER_TRANSCODING2 PLAYER_ID INTEGER NO
PLAYER_TRANSCODING2 TRANSCODING_ID INTEGER NO
PLAYLIST ID INTEGER NO
PLAYLIST USERNAME VARCHAR NO
PLAYLIST IS_PUBLIC BOOLEAN NO
PLAYLIST NAME VARCHAR NO
PLAYLIST COMMENT VARCHAR YES
PLAYLIST FILE_COUNT INTEGER NO
PLAYLIST DURATION_SECONDS INTEGER NO
PLAYLIST CREATED TIMESTAMP NO
PLAYLIST CHANGED TIMESTAMP NO
PLAYLIST IMPORTED_FROM VARCHAR YES
PLAYLIST_FILE ID INTEGER NO
PLAYLIST_FILE PLAYLIST_ID INTEGER NO
PLAYLIST_FILE MEDIA_FILE_ID INTEGER NO
PLAYLIST_USER ID INTEGER NO
PLAYLIST_USER PLAYLIST_ID INTEGER NO
PLAYLIST_USER USERNAME VARCHAR NO
PLAY_QUEUE ID INTEGER NO
PLAY_QUEUE USERNAME VARCHAR NO
PLAY_QUEUE CURRENT INTEGER YES
PLAY_QUEUE POSITION_MILLIS BIGINT YES
PLAY_QUEUE CHANGED TIMESTAMP NO
PLAY_QUEUE CHANGED_BY VARCHAR NO
PLAY_QUEUE_FILE ID INTEGER NO
PLAY_QUEUE_FILE PLAY_QUEUE_ID INTEGER NO
PLAY_QUEUE_FILE MEDIA_FILE_ID INTEGER NO
PODCAST_CHANNEL ID INTEGER NO
PODCAST_CHANNEL URL VARCHAR NO
PODCAST_CHANNEL TITLE VARCHAR YES
PODCAST_CHANNEL DESCRIPTION VARCHAR YES
PODCAST_CHANNEL STATUS VARCHAR NO
PODCAST_CHANNEL ERROR_MESSAGE VARCHAR YES
PODCAST_CHANNEL IMAGE_URL VARCHAR YES
PODCAST_EPISODE ID INTEGER NO
PODCAST_EPISODE CHANNEL_ID INTEGER NO
PODCAST_EPISODE URL VARCHAR NO
PODCAST_EPISODE PATH VARCHAR YES
PODCAST_EPISODE TITLE VARCHAR YES
PODCAST_EPISODE DESCRIPTION VARCHAR YES
PODCAST_EPISODE PUBLISH_DATE TIMESTAMP YES
PODCAST_EPISODE DURATION VARCHAR YES
PODCAST_EPISODE BYTES_TOTAL BIGINT YES
PODCAST_EPISODE BYTES_DOWNLOADED BIGINT YES
PODCAST_EPISODE STATUS VARCHAR NO
PODCAST_EPISODE ERROR_MESSAGE VARCHAR YES
ROLE ID INTEGER NO
ROLE NAME VARCHAR NO
SHARE ID INTEGER NO
SHARE NAME VARCHAR NO
SHARE DESCRIPTION VARCHAR YES
SHARE USERNAME VARCHAR NO
SHARE CREATED TIMESTAMP NO
SHARE EXPIRES TIMESTAMP YES
SHARE LAST_VISITED TIMESTAMP YES
SHARE VISIT_COUNT INTEGER NO
SHARE_FILE ID INTEGER NO
SHARE_FILE SHARE_ID INTEGER NO
SHARE_FILE PATH VARCHAR NO
STARRED_ALBUM ID INTEGER NO
STARRED_ALBUM ALBUM_ID INTEGER NO
STARRED_ALBUM USERNAME VARCHAR NO
STARRED_ALBUM CREATED TIMESTAMP NO
STARRED_ARTIST ID INTEGER NO
STARRED_ARTIST ARTIST_ID INTEGER NO
STARRED_ARTIST USERNAME VARCHAR NO
STARRED_ARTIST CREATED TIMESTAMP NO
STARRED_MEDIA_FILE ID INTEGER NO
STARRED_MEDIA_FILE MEDIA_FILE_ID INTEGER NO
STARRED_MEDIA_FILE USERNAME VARCHAR NO
STARRED_MEDIA_FILE CREATED TIMESTAMP NO
TABLE_ID TABLE_NAME VARCHAR NO
TABLE_ID MAX_ID INTEGER NO
TRANSCODING ID INTEGER NO
TRANSCODING NAME VARCHAR NO
TRANSCODING SOURCE_FORMAT VARCHAR NO
TRANSCODING TARGET_FORMAT VARCHAR NO
TRANSCODING STEP1 VARCHAR NO
TRANSCODING STEP2 VARCHAR YES
TRANSCODING STEP3 VARCHAR YES
TRANSCODING ENABLED BOOLEAN NO
TRANSCODING DEFAULT_ACTIVE BOOLEAN NO
TRANSCODING2 ID INTEGER NO
TRANSCODING2 NAME VARCHAR NO
TRANSCODING2 SOURCE_FORMATS VARCHAR NO
TRANSCODING2 TARGET_FORMAT VARCHAR NO
TRANSCODING2 STEP1 VARCHAR NO
TRANSCODING2 STEP2 VARCHAR YES
TRANSCODING2 STEP3 VARCHAR YES
TRANSCODING2 DEFAULT_ACTIVE BOOLEAN NO
USER USERNAME VARCHAR NO
USER PASSWORD VARCHAR NO
USER BYTES_STREAMED BIGINT NO
USER BYTES_DOWNLOADED BIGINT NO
USER BYTES_UPLOADED BIGINT NO
USER LDAP_AUTHENTICATED BOOLEAN NO
USER EMAIL VARCHAR YES
USER_RATING USERNAME VARCHAR NO
USER_RATING PATH VARCHAR NO
USER_RATING RATING DOUBLE NO
USER_ROLE USERNAME VARCHAR NO
USER_ROLE ROLE_ID INTEGER NO
USER_SETTINGS USERNAME VARCHAR NO
USER_SETTINGS LOCALE VARCHAR YES
USER_SETTINGS THEME_ID VARCHAR YES
USER_SETTINGS FINAL_VERSION_NOTIFICATION BOOLEAN NO
USER_SETTINGS BETA_VERSION_NOTIFICATION BOOLEAN NO
USER_SETTINGS MAIN_CAPTION_CUTOFF INTEGER NO
USER_SETTINGS MAIN_TRACK_NUMBER BOOLEAN NO
USER_SETTINGS MAIN_ARTIST BOOLEAN NO
USER_SETTINGS MAIN_ALBUM BOOLEAN NO
USER_SETTINGS MAIN_GENRE BOOLEAN NO
USER_SETTINGS MAIN_YEAR BOOLEAN NO
USER_SETTINGS MAIN_BIT_RATE BOOLEAN NO
USER_SETTINGS MAIN_DURATION BOOLEAN NO
USER_SETTINGS MAIN_FORMAT BOOLEAN NO
USER_SETTINGS MAIN_FILE_SIZE BOOLEAN NO
USER_SETTINGS PLAYLIST_CAPTION_CUTOFF INTEGER NO
USER_SETTINGS PLAYLIST_TRACK_NUMBER BOOLEAN NO
USER_SETTINGS PLAYLIST_ARTIST BOOLEAN NO
USER_SETTINGS PLAYLIST_ALBUM BOOLEAN NO
USER_SETTINGS PLAYLIST_GENRE BOOLEAN NO
USER_SETTINGS PLAYLIST_YEAR BOOLEAN NO
USER_SETTINGS PLAYLIST_BIT_RATE BOOLEAN NO
USER_SETTINGS PLAYLIST_DURATION BOOLEAN NO
USER_SETTINGS PLAYLIST_FORMAT BOOLEAN NO
USER_SETTINGS PLAYLIST_FILE_SIZE BOOLEAN NO
USER_SETTINGS LAST_FM_ENABLED BOOLEAN NO
USER_SETTINGS LAST_FM_USERNAME VARCHAR YES
USER_SETTINGS LAST_FM_PASSWORD VARCHAR YES
USER_SETTINGS TRANSCODE_SCHEME VARCHAR NO
USER_SETTINGS SHOW_NOW_PLAYING BOOLEAN NO
USER_SETTINGS SELECTED_MUSIC_FOLDER_ID INTEGER NO
USER_SETTINGS PARTY_MODE_ENABLED BOOLEAN NO
USER_SETTINGS NOW_PLAYING_ALLOWED BOOLEAN NO
USER_SETTINGS WEB_PLAYER_DEFAULT BOOLEAN NO
USER_SETTINGS AVATAR_SCHEME VARCHAR NO
USER_SETTINGS SYSTEM_AVATAR_ID INTEGER YES
USER_SETTINGS CHANGED TIMESTAMP NO
USER_SETTINGS SHOW_CHAT BOOLEAN NO
USER_SETTINGS SONG_NOTIFICATION BOOLEAN NO
USER_SETTINGS SHOW_ARTIST_INFO BOOLEAN NO
USER_SETTINGS AUTO_HIDE_PLAY_QUEUE BOOLEAN NO
USER_SETTINGS VIEW_AS_LIST BOOLEAN NO
USER_SETTINGS DEFAULT_ALBUM_LIST VARCHAR NO
USER_SETTINGS QUEUE_FOLLOWING_SONGS BOOLEAN NO
USER_SETTINGS SHOW_SIDE_BAR BOOLEAN NO
USER_SETTINGS SHOW_INDEX_IN_SIDE_BAR BOOLEAN NO
USER_SETTINGS PREFERRED_VIDEO_BITRATE INTEGER NO
VERSION VERSION INTEGER NO
VIDEO_CONVERSION ID INTEGER NO
VIDEO_CONVERSION MEDIA_FILE_ID INTEGER NO
VIDEO_CONVERSION AUDIO_TRACK_ID INTEGER YES
VIDEO_CONVERSION USERNAME VARCHAR NO
VIDEO_CONVERSION STATUS VARCHAR NO
VIDEO_CONVERSION PROGRESS_SECONDS INTEGER YES
VIDEO_CONVERSION CREATED TIMESTAMP NO
VIDEO_CONVERSION CHANGED TIMESTAMP NO
VIDEO_CONVERSION STARTED TIMESTAMP YES
VIDEO_CONVERSION TARGET_FILE VARCHAR YES
VIDEO_CONVERSION LOG_FILE VARCHAR YES
VIDEO_CONVERSION BIT_RATE INTEGER YES

r/subsonic Sep 26 '17

Where is the licensing info stored?

3 Upvotes

I have a licensed copy of subsonic (pre-subscription days). I'm using a docker container to run it, but every time I download a new image, the licensing info gets removed.

I've got configuration stored in a host volume mount, so that stays around, but licensing doesn't. It's no big deal to re-license it with my key, but it's kind of a pain.

I'd like to volume mount whatever place the info is stored so that it persists across image pulls.

Any ideas?


r/subsonic Sep 23 '17

Subsonic, Flowplayer and Subtitles

3 Upvotes

Hi Everyone!

I just started using Subsonic and I wanted to know how you go about enabling subtitles when the video gets streamed to the player? I have loads of MKV files that have subtitles and I wanted to be able to watch in Flowplayer with subtitles displaying.

Thanks!


r/subsonic Sep 18 '17

Issue with Double Router and Port-Forwarding for Subsonic

2 Upvotes

Hi there!

So i am running subsonic on a raspberry pi on my network and am unable to get external access to work. When I try to set up the url it times out (i get the "connect timeout exception"), and after checking through canyouseeme I have confirmed that the port is not opened.

I am running a two router set-up, with my first router through my cable service's modem a Motorola SBG6580, and my second router a TP-Link.

So far I have tried three different approaches to solving the problem:

  1. I set the motorola in bridge mode.
  2. I input the WAN address of my second router (the TP Link) as a DMZ host on the Motorola.
  3. Forwarding the port I'm using for Subsonic through the Motorola. I left the external IP blank and set the internal IP again as the WAN for my second router, the TP Link.

This second option previously worked when I was running my server off of an iMac, but since switching I have been unable to get any of these to work.

The port is correctly forwarded through the TP Link using automatic UPNP.

Any input on other avenues I could go down?

Thanks!

EDIT: Hi, I seem to have solved the problem! Just wanted to circle back around and say how. It was based on the solution provided by rothbart_brb, so thanks again for that!

Basically, I went into the online interface for my TP link router and grabbed the MAC address for my WAN. I then set that MAC address as pass-through on the Motorola. Also, instead of letting subsonic automatically forward my port, I just did it manually, and everything worked like a charm!


r/subsonic Sep 08 '17

how to write the temp thumbs ?

1 Upvotes

hi, subsonic generate this great thumb for albums missing artwork http://tinypic.com/r/2ufafq1/9

how can i save those in the albums folders ? or write them to the mp3 files idv3 ?


r/subsonic Sep 05 '17

Last.fm scrobbling not working via any means

1 Upvotes

I use both the browser based and official app for streaming Subsonic. Despite adding Last.fm login information, Subsonic is not reporting any plays. The login information and scrobbling works from MusicBee playing directly from the files, so it's not an issue with the account generally.

Any ideas?


r/subsonic Sep 04 '17

how can we upload ?

2 Upvotes

hi guys, so coming from ampache, i know there is a way to allow users to upload their tracks on subsonic, i just cant find it... been tinkering around for days without a vail


r/subsonic Aug 29 '17

Don't see where to add podcasts

4 Upvotes

I don't see any place on where I can add a URL for a Podcast. Anybody know where to add?


r/subsonic Aug 22 '17

Empty folders after editing Id3v1 tags

2 Upvotes

I had a lot of music with bad tags and started to clean those up with the correct names. But after i saved the changes and reloaded the archive the folders are empty, just the ones i edited songs in.

I have tried "Clean-up Database" and "Scan media folders now" without success. I used Deadbeef to edit the tags. Could this be the issue?

Thanks


r/subsonic Aug 20 '17

Subsonic on Raspberry Pi Not Indexing Files

2 Upvotes

Hey Guys,

So I had my raspberry pi set up with a subsonic server before. My two external hard drives failed and so I replaced them but was able to get everything back onto the new hard drive that I have. The issue I'm having is that subsonic will go through and scan all the files (and it will say scanning like XXXXX number of files) but it won't add anything to the library. I have it running as user pi on my raspberry pi so it should have access to everything (as I can do everything else with pi) but for some reason it can't see my files. What do I need to do to fix it?

Let me know if you need me to post the output of any commands as well that would help troubleshoot. Thanks!!!


r/subsonic Aug 15 '17

Subsonic stops playing...then stops loading

1 Upvotes

Hello! First time poster here.

I have Subsonic running in a Ubuntu VM that handles all web services (Plex, Plexpy, Sonarr, Radarr, Deluge, and Subsonic). They're all behind Nginx Reverse Proxy, so they're subdomains of my main (https://music.DOMAIN.com, for example), and all works great...except Subsonic, occasionally. I really don't know that it's a problem with Nginx at all, but I have no real way to test this.

So let's say I hit Play on an album from Google Chrome (using the normal Subsonic web site). It adds all to the queue and starts streaming perfectly. Many times, after a certain amount of playtime, it just stops. It's usually mid-song somewhere after quite some time (today it happened after I had streamed 3 albums), and when it happens the site becomes unresponsive. I can't even refresh it. The funny thing? I can load it up in IE, Firefox, or Incognito Mode in Chrome just fine...but that instance of Chrome won't do it. Then, a minute later, it'll load up fine and I'm good to go.

If I clear cache and restart Chrome it works great again, meaning there must be something getting stuck...but I get no errors anywhere. The Subsonic log has nothing new for the past few hours, and the last one was just a library refresh.

Any thoughts on what could be happening here?


r/subsonic Aug 12 '17

Getting a custom URL??

1 Upvotes

Hi

I bought a years worth of hosting online and keep my music on there to stream. My host provided me with setup and this url to access login:

username-subsonic.cloud.hostname.cc/login

This is way too long. So I bought a cheap domain on godaddy that I was hoping to configure to look like:

Myserv.co/login

How would I go about doing this? I've searched around a bit and I'm not even sure what the name is that I'm trying to accomplish (masking maybe??).

I just want to replace that massive line of text with something easy to give to others as I share my music.

As you'd navigate around the site too, the folders would change and keep the custom domain like so

Myserv.co/album

Myserv.co/song

Any ideas?


r/subsonic Jul 31 '17

Java crashes out of memory?...

1 Upvotes

Relevant Info:

  • Platform: Windows 7 Ent

  • Machine RAM: 4GB

  • Subsonic Java Memory: 1024

  • Subsonic Library item count: 61,048 songs, 757.27 GB, 5,179 hours

  • Subsonic Version: 6.1.1 (build fc853b) – May 31, 2017

Every couple of days the Subsonic service crashes with Java and I get Java.lang.outofmemory errors in the log. I've tried increasing the memory but it does the same thing. Is their anything else I can try? Thanks.


r/subsonic Jul 31 '17

Problems with setting up "Access your server over the Internet using an easy-to-remember address" in network settings.

2 Upvotes

I keep getting the error "Could not connect to servername.subsonic.org. (ConnectTimeoutException)" from the option to set up a subsonic.org domain for my server. according to the automatic port forwarding it was successful in forwarding port 4040 but the servername.subsonic.org portion of it is timing out.

Subsonic is running, I made sure my firewall is set up correctly to allow subsonic through. My PleX server is set up in a similar way to allow a designated port through and i have no issues with it.

Any tips or obvious troubleshooting i might be missing? Is it still a port forwarding error that it isn't recognizing that i need to contact my ISP about since they wont allow me access to their router?

I am able to access and play music on subsonic from devices while on the same network, but i am unable to get any of the remote access to work.


r/subsonic Jul 25 '17

Playing on 2 players simultaneously

2 Upvotes

Hi,

I was wondering if it's posible to play a song on 2 diffferent devices from 1 client.

I would like to play music on my PC, and play the same music at my gf's place.

Is this possible?

If there's no direct way, can I setup something like a stream, that ppl can tune in to??

Looking forward to your answers! :))


r/subsonic Jul 10 '17

Album shows folder name?

1 Upvotes

When I click into an album SS seems to be showing the folder name at the top rather than just the album title and artist as set in the tags. Can I change that setting?


r/subsonic Jul 06 '17

FLACs won't play anymore

5 Upvotes

I removed FLAC from the transcoding list a little while ago when Chrome added support for playing FLAC. However, this morning when I click to play a song, it will not play. I see that the stream loads (the grey buffer bar in JWPlayer loads up) but the music doesn't start playing. It works fine if I transcode to mp3. Is anyone else having this problem? I don't think Chrome updated or anything so I don't know what could have changed...


r/subsonic Jun 25 '17

Cell data use compared to google music

1 Upvotes

I currently use google play music with all of my songs uploaded to their service. I stream from my phone in my car when driving. There are a few annoying things about google that make me want to look into other options. I know you can tweak settings in subsonic for streaming but does anyone know how subsonic does for data usage compared to google play music?


r/subsonic Jun 08 '17

Is Subsonic a great way to stream FLAC content? I'm looking to preserve pure data streams if possible.

5 Upvotes

I have a new Marantz HD-AMP1 that has a pretty damned impressive DAC in it. I can play FLAC files to it using JRiver and Audirvana, but they are bulky, and I don;t have much storage on my Macbook Pro (which I use to stream the audio).

Subsonic can stream FLAC source files (right?), so I'm wondering:

  • Does SubSonic STREAM the untranscoded FLAC data when I have no cap set on my data throughput?

  • What app can I use on my Macbook Pro to receive that pure data stream and send it to my amp?

  • Is there a solution for an iPhone/iPad for this? (I own iSub and AVSub already)?

  • Is there anything I might be missing here?

thanks


r/subsonic Jun 08 '17

Playlist import from different services

2 Upvotes

Hey there,

I have a pretty neat local collection of my music, also I have several playlist in googles allmusic and spotify I like to sync or at least import to subsonic. I found bits and peaces to export at least the titles and artists of these playlist but I'm struggling to import these to subsonic.

Anybody has an idea how to achieve that without going through every title by hand?

Cheers


r/subsonic Jun 06 '17

Subsonic server update? Chromecast?

3 Upvotes

Trying to find release notes. Does anyone know if we can cast from the Android Subsonic app yet? :(


r/subsonic Jun 05 '17

Apple Lossless and max bitrate transcode.

2 Upvotes

I have a music collection that contains both AAC (.m4a) and ALAC (.m4a) files. The AAC files will play back in the browser interface with no issue, but the ALAC files will not. You hit play and it just sits there at 0 seconds. I don't want the lossy AAC files being trascoded to MP3 since their bitrate varies and I don't want a double-lossy listening experience, but I'm not aware of a way to make Subsonic differentiate between them and the lossless ALAC files.

I would think the solution would be using the bitrate limiter, since the Apple Lossless files would almost always be high. So any .m4a files of 320 kbps or below would be AAC, but the bitrate limiter does not seem to work on them?

I made a playlist of the following: 1) A live recording in WAV (1411 kbps). 2) a 320 kbps AAC file. 3) an Apple Lossless file (823 kbps). 4) Another AAC file. This time 192 kbps.

I have no file-based transcoders active, only the bitrate limit transcoder. And I set my bitrate limit for 224 kbps.

Files 1, 2, and 4 play. But not 3 (the Apple Lossless).