Re: [Musicpd-dev-team] Musicpd as a media server client

2013-07-28 Thread Punky
Hi jf and all,

On Fri, Jul 26, 2013 at 7:45 PM, j...@dockes.org wrote:


 I was wondering if somebody had maybe started something because there are
 already multiple entries in the issues db on the subject. But ok, good
 then, I'll give it a try. Don't expect much progress in August though :)


You can mount DLNA externally as filesystem client using djmount, which can
access the media via FUSE.  See my documentation in:
http://mubox.voyage.hk/upnp


-- 
--
Regards,
Kim-man Punky Tse

P U N K N ! X  . c o m
Technology + Lifestyle (http://www.punknix.com)

/** Open Source Embedded Solutions and Systems **/
 // Voyage Linux (http://linux.voyage.hk)
 // Voyage ONE   (http://linux.voyage.hk/voyage-one)
 // Voyage MPD   (http://linux.voyage.hk/voyage-mpd)
/** Voyage Store   (http://store.voyage.hk) **/
--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk___
Musicpd-dev-team mailing list
Musicpd-dev-team@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/musicpd-dev-team


Re: [Musicpd-dev-team] Musicpd as a media server client

2013-07-26 Thread zw g
I think it would be nice if someone can work on this.
DLNA is a nice plus for MPD. For mobile, wireless, multiple-room scenarios,
etc.

I hope J.F. Dockes will make some moves.
Since MPD being inactive for months.



On Fri, Jul 26, 2013 at 5:32 PM, Max Kellermann m...@duempel.org wrote:

 On 2013/07/22 11:26, j...@dockes.org wrote:
  I wonder if someone has begun working on this or is planning to in the
 near
  future ? Otherwise I'd be quite willing to give it a try.

 afaik, nobody is working on that.  I'm not, because I don't even know
 what DLNA is.


 --
 See everything from the browser to the database with AppDynamics
 Get end-to-end visibility with application monitoring from AppDynamics
 Isolate bottlenecks and diagnose root cause in seconds.
 Start your free trial of AppDynamics Pro today!
 http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
 ___
 Musicpd-dev-team mailing list
 Musicpd-dev-team@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/musicpd-dev-team

--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk___
Musicpd-dev-team mailing list
Musicpd-dev-team@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/musicpd-dev-team


Re: [Musicpd-dev-team] Musicpd as a media server client

2013-07-26 Thread jf
Max Kellermann writes:
  On 2013/07/22 11:26, j...@dockes.org wrote:
   I wonder if someone has begun working on this or is planning to in the near
   future ? Otherwise I'd be quite willing to give it a try. 
  
  afaik, nobody is working on that.  I'm not, because I don't even know
  what DLNA is.

DLNA is an additional compatibility specification over UPnP. The latter
defines a standard way for devices (Media Server, Media Player, many other
pieces of home electronics) to communicate over a network.

Mostly, all communication-capable media devices except the Apple ones use
UPnP. The Apple devices use DAAP instead, it's mostly the same function, but
implemented differently.

The idea is that multiple mpd instances on a network, could share a common
music store (UPnP MediaServer), which maintains the catalog (tag scanning
etc...) and presents the catalog and data through UPnP/DLNA. This would
probably be much better than each instance doing its scanning across a
file-sharing protocol (NFS or SMB).

There are multiple implementations of DLNA Media Servers, open source or
not. Many NAS boxes include a DLNA server. So the work here is just to
implement the catalog retrieving and data access parts to let MPD use
them. There are several open source libs which could provide the base layer
(UPnP is a complicated beast).

I was wondering if somebody had maybe started something because there are
already multiple entries in the issues db on the subject. But ok, good
then, I'll give it a try. Don't expect much progress in August though :)

Cheers,

jf

--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
Musicpd-dev-team mailing list
Musicpd-dev-team@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/musicpd-dev-team


Re: [Musicpd-dev-team] Musicpd as a media server client

2013-07-26 Thread Cody Marx Bailey
Why not just send it curl strings? There's a CURL input plugin that will
suck the playlist/files off a simple HTTP server.


On Fri, Jul 26, 2013 at 6:45 AM, j...@dockes.org wrote:

 Max Kellermann writes:
   On 2013/07/22 11:26, j...@dockes.org wrote:
I wonder if someone has begun working on this or is planning to in
 the near
future ? Otherwise I'd be quite willing to give it a try.
  
   afaik, nobody is working on that.  I'm not, because I don't even know
   what DLNA is.

 DLNA is an additional compatibility specification over UPnP. The latter
 defines a standard way for devices (Media Server, Media Player, many other
 pieces of home electronics) to communicate over a network.

 Mostly, all communication-capable media devices except the Apple ones use
 UPnP. The Apple devices use DAAP instead, it's mostly the same function,
 but
 implemented differently.

 The idea is that multiple mpd instances on a network, could share a common
 music store (UPnP MediaServer), which maintains the catalog (tag scanning
 etc...) and presents the catalog and data through UPnP/DLNA. This would
 probably be much better than each instance doing its scanning across a
 file-sharing protocol (NFS or SMB).

 There are multiple implementations of DLNA Media Servers, open source or
 not. Many NAS boxes include a DLNA server. So the work here is just to
 implement the catalog retrieving and data access parts to let MPD use
 them. There are several open source libs which could provide the base layer
 (UPnP is a complicated beast).

 I was wondering if somebody had maybe started something because there are
 already multiple entries in the issues db on the subject. But ok, good
 then, I'll give it a try. Don't expect much progress in August though :)

 Cheers,

 jf


 --
 See everything from the browser to the database with AppDynamics
 Get end-to-end visibility with application monitoring from AppDynamics
 Isolate bottlenecks and diagnose root cause in seconds.
 Start your free trial of AppDynamics Pro today!
 http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
 ___
 Musicpd-dev-team mailing list
 Musicpd-dev-team@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/musicpd-dev-team




-- 
Cody Marx Bailey
979-574-9199
--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk___
Musicpd-dev-team mailing list
Musicpd-dev-team@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/musicpd-dev-team


Re: [Musicpd-dev-team] Musicpd as a media server client

2013-07-26 Thread jf
Cody Marx Bailey writes:
  Why not just send it curl strings? There's a CURL input plugin that will suck
  the playlist/files off a simple HTTP server.

You lost me here. How does this solve the catalog/directory part ? 


--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
Musicpd-dev-team mailing list
Musicpd-dev-team@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/musicpd-dev-team