FireFly Media Server › Firefly Media Server Forums › Firefly Media Server › Feature Requests › Web-based DAAP client
- This topic has 75 replies, 13 voices, and was last updated 14 years, 4 months ago by
herveld.
-
AuthorPosts
-
09/05/2007 at 12:12 PM #3394
w1ll14m
Participant@rpedde wrote:
@larrypevin wrote:
Is there any way I can use this applet from a network machine without setting or using a remote admin password? I am sure it would be possible to modify the server to allow anonymous access to applet.html, but I am not a programmer so I wouldn’t know how to do this myself.
Not right now without code changes. I intend that there be a user accessible way to browse, play, and download remote music on a server, but I’m not there yet.
You can use a rewrite rule to do this:)
just download DAAPApplet-0-1.jar and applet.htmluse this piece of code for your apache2 config
Servername daap.schoorl.nu
ServerAdmin [email protected]
DocumentRoot /usr/local/www/daap
RewriteEngine On
RewriteRule ^/login(.*)$ http://192.168.0.5:8080/login [P]
RewriteRule ^/logout(.*)$ http://192.168.0.5:8080/logout$1 [P]
RewriteRule ^/databases(.*)$ http://192.168.0.5:8080/databases$1 [P]
RewriteRule ^/server-info(.*)$ http://192.168.0.5:8080/server-info$1 [P]
RewriteRule ^/update(.*)$ http://192.168.0.5:8080/update$1 [P]
RewriteRule ^/1/(.*)$ http://192.168.0.5:8080/1/$1 [P]
AuthType Basic
AuthName "WebMusic Player"
AuthUserFile /usr/local/www/daap.htpasswd
Require valid-user
22/05/2007 at 11:13 AM #3395EVILRipper
ParticipantHeya,
Using a java applet is one way to stream music.
I got fed up with iTunes so I did things differently;
I found some DAAP documentation and kind of wrote my own DAAP client.
He does a HTTP request and reads all songs.
The program then writes it all to a .m3u playlist file.
This m3u playlst file can be opened by Winamp which results in a Remote Playlist with streams.Piece of cake and hella handy. Isnt this a better way than completely integrating the musicplayer in a java applet?
~EVILRipper
17/06/2007 at 8:39 PM #3396blamm
ParticipantHi.
Any chance you can share this client with us?
17/06/2007 at 8:55 PM #3397blamm
Participant@rpedde wrote:
@w1ll14m wrote:
All the music can be streamed as http://server/rsp/stream/
, if you know the song id (which is in the database). Is seems this only works with MP3s. I tried a couple of FLACs and my player complained about it being an unsupported format (foobar can play FLAC)
20/06/2007 at 12:59 AM #3398rpedde
Participant@blamm wrote:
@rpedde wrote:
@w1ll14m wrote:
All the music can be streamed as http://server/rsp/stream/
, if you know the song id (which is in the database). Is seems this only works with MP3s. I tried a couple of FLACs and my player complained about it being an unsupported format (foobar can play FLAC)
It’s not broken on the daap server side. You can try playing with “never_transcode” and see if you can force it to flac or wav, and see if foobar has better luck with it.
27/06/2007 at 3:03 AM #3399kellyharding
Participant@blamm wrote:
Hi.
Is this DAAP client still available? I am becoming increasingly fedup with iTunes..
Seems to be removed from the nightlies?
I agree it’d be a great thing. iTunes is a big of a resource hog in many respects at times.
A command-line client ala mpc for mpd would also be great.
14/07/2007 at 2:52 PM #3400mas
Participantshould still work?
15/07/2007 at 2:49 PM #3401kellyharding
Participant15/07/2007 at 5:41 PM #3402blamm
Participant@rpedde wrote:
@blamm wrote:
@rpedde wrote:
@w1ll14m wrote:
All the music can be streamed as http://server/rsp/stream/
, if you know the song id (which is in the database). Is seems this only works with MP3s. I tried a couple of FLACs and my player complained about it being an unsupported format (foobar can play FLAC)
It’s not broken on the daap server side. You can try playing with “never_transcode” and see if you can force it to flac or wav, and see if foobar has better luck with it.
Wow. I just added FLAC and OGG to “never_transcode” field and it worked. I even created a playlist listing every ID in the DB (using http::
: /rsp/stream/ ) and the now I can play stuff from Firefly in Foobar. Only problem is that the track name isnt displayed until the track is played. Would be cool if I could somehow parse for names only. 15/07/2007 at 7:56 PM #3403blamm
ParticipantI have also discovered that VLC will play FLACs from Firefly using the above method without the “never_transcode” trick. Is Firefly doing something odd with the FLACs?
-
AuthorPosts
- The forum ‘Feature Requests’ is closed to new topics and replies.