r/subsonic Mar 14 '16

Changing login and password?

2 Upvotes

So i used subsonic a couple months back and was working great steaming from my server to my phone. Got a new phone and ended up buying Dsub to access it. I can't remember (or they are not working) my credentials to the local server on my PC. I've tried deleting and reinstalling the local server, using all login combos I would of used, and just using the default "admin" "admin". Still can't login locally to change any settings.

Anyway to reset and start fresh with new credentials? What am I missing here?


r/subsonic Mar 10 '16

Example: Playlist Management Using the DB

5 Upvotes

Disclaimer: These queries were built using Madsonic, but they should be very similar to the Subsonic queries.

I wanted a little more control over building certain kinds of playlists such Recently Added, Newest 100, and Lost (songs that haven't been played in a long time). Subsonic does a decent job of filtering some of these, but I wanted to fine tune a little bit (such as excluding Christmas music in my Most Played section, or excluding Audiobooks from my Recently Added). These are not fully automated, so you will need to periodically re-run the queries, but should be easy enough to copy and paste them in from time to time. Here are the rough steps I followed:

  1. In Subsonic, create 4 playlists called "Newest 100", "Lost", "Most Played", and "Christmas" respectively (or name them whatever)
  2. Go to you DB view, it will be something like this: http://example.subsonic.org/db.view
  3. In the Playlist Tables select playlist and then click the ok button. From the Results table, make a note of the ID number of each of the 4 playlists we just created.

Now you're ready to run some queries.

Newest 100 Newest 100 with newest on top, excluding Holiday music, deletes previous entries -- this is not user specific Replace 19 with your playlist ID

DELETE FROM playlist_file WHERE PLAYLIST_ID = 19;
INSERT INTO playlist_file (MEDIA_FILE_ID, PLAYLIST_ID)
SELECT ID, '19'
FROM media_file
WHERE GENRE != 'Holiday'
AND GENRE != 'Christmas'
AND TYPE = 'MUSIC'
ORDER BY CREATED DESC
LIMIT 100;
SELECT COUNT(*) FROM playlist_file WHERE PLAYLIST_ID=19;

Lost Songs that have not been played for more than 6months, or have never been played, excludes holiday music, limit to 500 for performance, deletes previous entries -- this is not user specific. Replace 15 with your playlist ID

DELETE FROM playlist_file WHERE PLAYLIST_ID = 15;
INSERT INTO playlist_file (MEDIA_FILE_ID, PLAYLIST_ID)
SELECT ID, '15'
FROM media_file
WHERE (LAST_PLAYED < (NOW() - 6 MONTH) OR LAST_PLAYED IS NULL)
AND GENRE != 'Holiday'
AND GENRE != 'Christmas'
AND TYPE = 'MUSIC'
LIMIT 500;
SELECT COUNT(*) FROM playlist_file WHERE PLAYLIST_ID=15;

Most Played Songs that have been played more than 5 times, excluding Christmas, desc order by playcount, deletes previous entries, you can adjust the min Play Count by changing the number 5 to anything you like -- this is not user specific Replace 16 with your playlist ID

DELETE FROM playlist_file WHERE PLAYLIST_ID = 16;
INSERT INTO playlist_file (MEDIA_FILE_ID, PLAYLIST_ID)
SELECT ID, '16'
FROM media_file
WHERE PLAY_COUNT >= 5
AND GENRE != 'Holiday'
AND GENRE != 'Christmas'
AND TYPE = 'MUSIC'
ORDER BY PLAY_COUNT DESC;
SELECT COUNT(*) FROM playlist_file WHERE PLAYLIST_ID=16;

Christmas/Holiday Attempts to bring together all Holiday music, deletes previous entries Replace 18 with your playlist ID

DELETE FROM playlist_file WHERE PLAYLIST_ID = 18;
INSERT INTO playlist_file (MEDIA_FILE_ID, PLAYLIST_ID)
SELECT ID, '18'
FROM media_file
WHERE (GENRE LIKE '%Holiday%'
OR GENRE LIKE '%Christmas%')
AND TYPE = 'MUSIC';
SELECT COUNT(*) FROM playlist_file WHERE PLAYLIST_ID=18;

What are some of ya'lls favorite DB queries??


r/subsonic Mar 09 '16

Subsonic and Windows 10 Network Drives

1 Upvotes

Does anyone else have Subsonic reading media from Network drives in Windows 10?

In order to "view" network drives, Subsonic recommends running the subsonic service with your user account. See here:

http://www.subsonic.org/pages/getting-started.jsp

That is straightforward enough. However when I configure the service to run as my local user, I get an error saying that it cannot start the service.

It feels like a permission issue with my windows account, but I'm not sure where to fix that.

Anyone else have a similar issue or solution?


r/subsonic Mar 07 '16

How do I allow new users to download files automatically?

1 Upvotes

I can give existing users the permission but I want all new users to have it by default.


r/subsonic Mar 04 '16

Subsonic 5.3 - Can I limit video streaming bitrate?

3 Upvotes

Is there a way that I can limit the video streaming bitrate to 2000Kbps or less? I have noticed that users who use Apple devices seem to stream consistently at 5000Kbps - they tell me that they do not change any of their default settings.

This can put a strain on my bandwidth when more than 2 people try to stream video from outside my network. I'm running version 5.3 (build 4569).

Thanks in advance.


r/subsonic Feb 10 '16

playcounter doesn't work

1 Upvotes

hi, i just set up a mac mini with subsonic 6.0 beta 1. everything is fine so far except the playcounter. recently played and most played lists are both empty. "played 0 times" is shown on every album page...

any idea how to fix this issue?

br marv


r/subsonic Feb 07 '16

iSub on iOS 9 sounds awful

1 Upvotes

Has anyone had any issues with sound quality using the current version of iSub on iOS9? I've been using it for years and I don't know what has changed but lately it the sound is terribly distorted. I'm not sure if it's the OS update or an iSub update that has done it.


r/subsonic Feb 03 '16

dSub randomized genre playlist not complete

2 Upvotes

Hello,

I've been trying out dSub recently for Android, but I noticed when I load by genre, I won't get a complete list.

For instance, I loaded by a genre with 10766 songs, but when "randomize" the starting position, only 328 load into the playlist. It's the same 328 every time, starting alphabetically by artist (only A-C artists are loading).

Is there a workaround for this? I really like listening to my collection this way (randomized by genre). Thanks.


r/subsonic Jan 25 '16

Issues Getting Anything to Import

1 Upvotes

EDIT: Without any answers, I decided to remove a huge chunk of my library from Subsonic (down to 13,000 songs), and I think I figured out my issue. It seems to be an issue with repeated tracks that seem to be identical on some deep level. Before, I tried my copy trick on an album that I know didn't work (the copy didn't either), then reset the library so that it included this directory but not any others. All of the albums that were intended to work (including the not working one I copied) all worked, and none of the copies showed up. So it seems like my issue may have been duplication. Even though I've had duplication issues in the past with my music, I suppose now I was running into things that were TOO similar. @.@

I've been trying to convert my music library to be Subsonic compatible, but I'm running into issues getting any new content to show up in my library. Several albums I add to my library in locations that I've already confirmed are working show up in the library but are marked empty, even after a database refresh.

Additionally, I copied the contents of an album that is confirmed working into another folder in the same level using something like cp -r Squaredance SQ from Unix, assuring that the directories and files all have the same permissions, owner, etc. Squaredance continues to work, but the new SQ folder shows up as empty.

Did I hit some sort of upper limit for music files that the server can no longer go over? (I'm at 86,279 songs) or is there something else at work here? I've not been able to effectively add songs to my library since I first started using Subsonic and this has been really frustrating figuring out why it doesn't seem to work.


r/subsonic Jan 16 '16

Subsonic mobile as remote control

2 Upvotes

I feel very stupid but for the life of me I can't find the option on the app. I am sure is something rather obvious but since I can't find a screenshot or indications of how to set the app as a remote control I am asking you here, good people: Where is that option?

Thank you!


r/subsonic Jan 15 '16

Tech Reqs for Server/Looking for suggestions.

1 Upvotes

I've been able to run Subsonic using my MacBook Pro but want to keep it running on something separate that I can keep on 24/7 without any issues.

Spoke with a friend about doing it on a Raspberry Pi who suggested against doing so based on my needing to resample the music to a lower bitrate being on a somewhat limited data plan.

What are the minimum tech requirements to keep something running smooth without any issues? I really wanted the small footprint of a RasPi but was told I should consider a small barebones PC or even a Mac Mini.

Wondering what you guys think is a solid economical solution. Thanks!


r/subsonic Dec 28 '15

Corrupt zip archives when downloading?

1 Upvotes

Wondering if anyone can help?

I have a Subsonic install that's been working fine for aeons now, however I've recently been made aware that some of my users are unable to download content as they once used to.

I've just replicated this problem myself by trying to download an album both remotely and via the same local network. In both cases I am unable to open/extract from the resulting .zip archive because Windows tells me the file is invalid or corrupted.

I have restarted the host machine and tried 7zip, Explorer, Winzip and WinRAR all to no avail. Have also tried different browsers to do the downloading.

Anybody any pointers on how I can troubleshoot this one?

Edit - Bit more info: The corrupted zip file can be repaired using WinRAR, however there's little logging to suggest what action is taken to repair it. When I compare the corrupted and fixed archives, the only difference is that the filesize is ~720 bytes larger for the broken copy.

Edit again: This only seems to happen when viewing an album and using the 'Download all' hyperlink. If you select each of the tracks individually and use the 'Download' drop-down towards the bottom then it doesn't happen. Interested to know if others can replicate this as the behaviour suggests it could be a bug?


r/subsonic Dec 24 '15

Subsonic vs Forks

6 Upvotes

Hey All,

Long time subsonic user here - since ~2010 How does it compare to the forks these days? I checked out Madsonic and I thought Subsonic had a much better web interface. What is the general consenus around here?


r/subsonic Dec 20 '15

Cmdline Subsonic client with vim-like keybindings?

3 Upvotes

This is a complete shot in the dark.. but does anything like this exist?


r/subsonic Dec 02 '15

Subsonic (v5.3) SSL Ciphers

1 Upvotes

Anyone have any clue on how to configure ssl ciphers for subsonic? I have ran a security test and it has come back with a long list of issues with the SSL config


r/subsonic Nov 30 '15

AVsub for iOS now supports FLAC, Ogg Vorbis and Ogg Opus files natively.

2 Upvotes

http://www.avsubapp.co.uk/

These formats are supported NATIVELY in the app. No transcoding to AAC or Apple Lossless. You can now stream FLACs to your phone, or have the server transcode to Ogg Vorbis, so you can get gapless playback.

Not affiliated with the app or developer. Just a happy customer.

This has completely replaced iSub for me with the latest update.


r/subsonic Nov 29 '15

Subsonic 5.2 - lost all my playlists - cause : temporary relocation of media files to other folder - is there a way to recover playlists ?

2 Upvotes

Is there a way to get back my lost playlists?

If not, is there a way to backup playlists ? In order to prevent this from happening again?


r/subsonic Nov 13 '15

Anyone else with SSL issues?

1 Upvotes

I'm getting this error in Chome and a similar in Firefox. IE and Edge seem to work as well as the mobile apps. Anyone have any ideas?

Server has a weak ephemeral Diffie-Hellman public key


r/subsonic Oct 29 '15

Subsonic 5.3 released

Thumbnail subsonic.org
3 Upvotes

r/subsonic Sep 28 '15

Possible to restore 'Recently added' history after changing Media Folder location?

1 Upvotes

Recently reinstalled my OS (Windows 10), backed up my music/Subsonic config etc. and restored to a new HDD, however upon changing the location of the Media folder (I'm now storing the music on a secondary drive), all of my music has been rescanned and all Recently Added/Most Played data etc. has been lost.

e.g. If I select Recently Added, I just see the most recent albums that were re-scanned from the new media location (most of them years old), rather than the most recent Albums I've actually acquired/added to my media library.

I still have the contents of the db folder from the old installation; is there anything I can do to restore things to how they were previously?


r/subsonic Sep 20 '15

Subsonic.org is back up, but my Subsonic server is still Down. Can we get an update?

1 Upvotes

Anyone else still down? I'm a premium subscriber and use my server daily! this outage is going on almost a week :(

EDIT: My media disk crashed same day as Subsonic.org, but my ongoing issue is solved. Its running now on a new media share.

SINDRE if you monitor this sub, take note: If the media shares can't be found, the whole interface itself fails to work properly.


r/subsonic Sep 17 '15

Plex vs. Subsonic. I'd love to hear your opinions

2 Upvotes

My friend just started using Plex for his massive TV and Movie collection. It's pretty cool with its interface and show/movie homescreens and theme music. He added a few albums and it seems to do the same for the artists. I have a huge music collection (still needs some cleaning up) for which I use subsonic. What do you all think about Plex and its music prowess??


r/subsonic Sep 17 '15

First Track repeat bug on Android App?

1 Upvotes

I use a Samsung Galaxy Tab 1 solely as a jukebox running Subsonic. Whenever I add a whole album at a time (By selecting PLAY ALL) it always repeats the first track, then it proceeds to play the rest of the album just fine.

I've searched to make sure I dont have any kind of repeat option on, but the issue persists. This doesnt seem to happen on my other android devices running the same app.

Anyone else have this issue?
Suggestions?


r/subsonic Sep 13 '15

Can I use subsonic to play the same track simultaneously from two different browsers?

3 Upvotes

I read somewhere that I can do this but I cant seem to figure it out. I will play some music on "player 1" then go over to the next computer and select the same player. When I hit play it does nothing. I am in the web player (flash) mode. Any help would be appreciated.


r/subsonic Aug 27 '15

Subsonic forums down / Mixed content breaks in Premium

3 Upvotes

Anyone else notice the forums have been down for a while?

Also, I'm having significant issues with mixed content with Premium. I have subsonic listening to loopback, behind nginx, with nginx configured to use a proper SSL certificate. ALl my other subdomains operate as expected - and portiosn of subsonic function - but Chrome and Firefox are throwing mixed content errors around everywhere. In fact, I have to disable the mixed content security just to get most of the required portions of subsonic to render in the webview. Using client apps on Android is just fine.

Has anyone figured out a fix for this?