Subsonic For ICS Android 4.0

General discussions.

Moderator: moderators

Re: Subsonic For ICS Android 4.0

Postby zadax » Sun Mar 25, 2012 1:11 pm

Great app!

It works well on my Gingerbread Nexus One.

However, I'm unable to open the Menu/Settings button on my ICS Asus Transformer TF101 (non Prime), so for the time being, the only server I can enjoy is the Subsonic Demo server :(

Thanks for your efforts so far!
zadax
 
Posts: 2
Joined: Sun Mar 25, 2012 1:07 pm

Re: Subsonic For ICS Android 4.0

Postby iwill » Mon Mar 26, 2012 4:51 pm

I'd also like to mention my support for adding lock screen controls. I think that the default ICS music player's implementation could be a good model. It places the controls above the pin/password/pattern unlock. Just a thought...
User avatar
iwill
 
Posts: 34
Joined: Wed Feb 29, 2012 7:38 pm
Location: Austin, TX

Re: Subsonic For ICS Android 4.0

Postby ttabbal » Mon Mar 26, 2012 8:52 pm

Please add this patch to your latest. It fixes BT play/pause handling. I tested it on the latest in svn, but since you haven't posted source, I can't test against your changes. I can't imagine you changed much in this area though.


Code: Select all
--- DownloadServiceLifecycleSupport.java 2012-03-26 14:46:29.000000000 -0600
+++ DownloadServiceLifecycleSupport.java 2012-03-26 14:44:21.000000000 -0600
@@ -210,6 +210,12 @@
             case KeyEvent.KEYCODE_MEDIA_STOP:
                 downloadService.reset();
                 break;
+            case KeyEvent.KEYCODE_MEDIA_PLAY:
+                  downloadService.play();
+                  break;
+            case KeyEvent.KEYCODE_MEDIA_PAUSE:
+                  downloadService.pause();
+                  break;
             default:
                 break;
         }
ttabbal
 
Posts: 33
Joined: Thu May 27, 2010 8:57 pm

Re: Subsonic For ICS Android 4.0

Postby G_A » Wed Apr 04, 2012 5:16 am

I'm having troubles downloading videos through Subsonic on Android.

Seemingly the application implementation is to simply run it in a Flash player, something I couldn't access when browsing the site ( download and play links not responding, ICS 4.0.4 Galaxy Nexus , ICS+ Browser ), would it be possible to add download to the long-press of a video file so one can later watch it in their preferred player?
G_A
 
Posts: 12
Joined: Mon Mar 07, 2011 5:44 pm

Re: Subsonic For ICS Android 4.0

Postby olofmogren » Wed Apr 04, 2012 2:34 pm

I second this request for being able to download videos. The flash player has been a mess on all Android phones that I have tried, and apparently when chrome becomes the default web browser, flash will no longer be supported on Android. Being able to download the files seems like the first approach, and then piping the video data to an external (native) video player would be the final solution, IMHO. I think ES file manager does this.
olofmogren
 
Posts: 8
Joined: Thu Jan 12, 2012 7:02 am

Re: Subsonic For ICS Android 4.0

Postby mikolan » Sun Apr 08, 2012 12:33 pm

Could someone rehost the APK somewhere, or post the sources to github etc since haxzmatic's domain seems to be down.
mikolan
 
Posts: 1
Joined: Sun Apr 08, 2012 12:31 pm

Re: Subsonic For ICS Android 4.0

Postby jsr » Sun Apr 08, 2012 3:15 pm

mikolan wrote:Could someone rehost the APK somewhere, or post the sources to github etc since haxzmatic's domain seems to be down.


I've mirred the latest version at http://www.ragtop.org/upload/subsonic/Subsonic-02-26-2012.apk

As far as I know, the source has not been posted.
jsr
 
Posts: 43
Joined: Wed Jun 29, 2011 1:30 pm
Location: Gilbert, AZ, USA

Re: Subsonic For ICS Android 4.0

Postby G_A » Mon Apr 09, 2012 11:52 pm

Following on from my original post two above, I've found hosting an FTP server and using ES File Explorer to be a working solution for now, albeit not great.

Can confirm FileZilla's FTP Server w/ ES File Explorer work.
G_A
 
Posts: 12
Joined: Mon Mar 07, 2011 5:44 pm

Re: Subsonic For ICS Android 4.0

Postby disgustipated » Tue Apr 10, 2012 12:26 am

feature requests would be cooler if they were requested on the main application's source tree, not here where haxzamatic is just adding (very much appreciated and well done)tweaks and (much needed) ui improvements.

mirrors are cool also but a peep from haxzamatic would be appreciated, either to post the source so that can be mirrored so someone else can carry on well done improvements or to post something new like the notification controls

even better would be if haxzamatic sent some push requests to the main source tree of the android app
disgustipated
 
Posts: 96
Joined: Wed Jan 26, 2011 4:18 pm
Location: US

Re: Subsonic For ICS Android 4.0

Postby sindre_mehus » Wed Apr 11, 2012 11:12 am

Hi,

The source is available here: https://github.com/haxzamatic/Subsonic-Android

I am planning to incorporate some or all of haxzamatic's changes into the official app, but I'm currently busy making a new server version.

Regards,
Sindre
Subsonic developer
User avatar
sindre_mehus
 
Posts: 1955
Joined: Tue Nov 29, 2005 6:19 pm
Location: Oslo, Norway

Re: Subsonic For ICS Android 4.0

Postby disgustipated » Wed Apr 11, 2012 11:54 am

Fantastic! You're the best Sindre!
disgustipated
 
Posts: 96
Joined: Wed Jan 26, 2011 4:18 pm
Location: US

Re: Subsonic For ICS Android 4.0

Postby jsr » Wed Apr 11, 2012 12:30 pm

Awesome. I'm glad to hear that there has been some coordination between Sindre and haxzamatic. I look forward to seeing these updates in the official version.
jsr
 
Posts: 43
Joined: Wed Jun 29, 2011 1:30 pm
Location: Gilbert, AZ, USA

Re: Subsonic For ICS Android 4.0

Postby zapt0 » Thu Apr 12, 2012 6:54 pm

Tried using the Subsonic-02-26-2012.apk build on Galaxy Nexus (4.0.2) and still have the "host name may not be null" issue... Would be great if devs could solve it asap!

The widget is also broken in this beta version, it's 4x2 instead of 4x1, and you get an ugly stretched widget if you add it...
zapt0
 
Posts: 41
Joined: Tue Apr 26, 2011 8:49 pm

Re: Subsonic For ICS Android 4.0

Postby disgustipated » Fri Apr 13, 2012 4:33 pm

ttabbal wrote:Please add this patch to your latest. It fixes BT play/pause handling. I tested it on the latest in svn, but since you haven't posted source, I can't test against your changes. I can't imagine you changed much in this area though.


Code: Select all
--- DownloadServiceLifecycleSupport.java 2012-03-26 14:46:29.000000000 -0600
+++ DownloadServiceLifecycleSupport.java 2012-03-26 14:44:21.000000000 -0600
@@ -210,6 +210,12 @@
             case KeyEvent.KEYCODE_MEDIA_STOP:
                 downloadService.reset();
                 break;
+            case KeyEvent.KEYCODE_MEDIA_PLAY:
+                  downloadService.play();
+                  break;
+            case KeyEvent.KEYCODE_MEDIA_PAUSE:
+                  downloadService.pause();
+                  break;
             default:
                 break;
         }


Thanks ttabbal, i added this to the source i pulled down from the location sindre linked and i'm testing it out, that was frustrating me when i was at the gym and didnt want to have to keep pulling my phone out lol
disgustipated
 
Posts: 96
Joined: Wed Jan 26, 2011 4:18 pm
Location: US

Re: Subsonic For ICS Android 4.0

Postby ttabbal » Fri Apr 13, 2012 4:52 pm

Glad to help. I also sent it to the github project as a pull request, so hopefully it gets merged in for the next "official" release. :)
ttabbal
 
Posts: 33
Joined: Thu May 27, 2010 8:57 pm

PreviousNext

Return to General

Who is online

Users browsing this forum: No registered users and 2 guests