You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to up...@googlegroups.com
Hi all,
How can I make my iPhone as a media server? I want to stream the music from my phone to renderer.
my iPhone does not appear in the list of the device. Is there any other way to do that?
Please help. Thanks
thebitmonk
unread,
Nov 15, 2012, 11:18:13 PM11/15/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to up...@googlegroups.com
Hello Zein:
In order to do so you can run an embedded HTTP Server from your iPhone app eg: Cocoa HTTP Server // mongoose. The server shall stream your media content ( music in this case ) to the renderer.
zein
unread,
Nov 16, 2012, 4:19:45 AM11/16/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to up...@googlegroups.com
Hi thebitmonk,
It works!!!
Thanks for sharing, really appreciate it!
Jollo Joy
unread,
Nov 19, 2012, 8:29:24 PM11/19/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to up...@googlegroups.com
I have the same question. How do you achieve it with Cocoa HTTP Server or mongoose?
Thanks!
在 2012年11月16日星期五UTC+8下午5时19分45秒,zein写道:
Message has been deleted
thebitmonk
unread,
Nov 20, 2012, 2:08:15 PM11/20/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
Now once you have got the above working playing local media content is not much different. You shall have some image or video // audio files on your mobile phone. You simply run an embedded HTTP server. Now you can setUri for DLNA renderer to some endpoint of your local HTTP Server . The DLNA renderer shall request your local server for data just like it did for the hardcoded mp4 url . You now have to capture this request and return the data stream of your local audio // image // video media file and along with mimetypes. That is pretty much it.
I hope it helps :)
Jollo Joy
unread,
Nov 26, 2012, 11:18:40 AM11/26/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to up...@googlegroups.com
You are Right. I have already achieved DMC and DMR.