BDP-S5100 as a DNLA server to stream SACD to airplay speakers

Hi Folks,I know my BDP-S5100 acts as a DNLA client to render from different sources but I would like to stream CDs from the Sony to a DNLA renderer connected to my HIFI . Is this possible to do this and would it work with DSD content on SACDs? Thank you

As far as I know you can ALMOST do what your suggesting. You can turn on share music libraries over your network in itunes, and then you can bring up you powerbook library on your powermac, but I dont know how you could control it, that is except with the new screen control features coming in the new system! can you tell i'm excited?

Similar Messages

  • ITunes causing kernel panics because I'm streaming to multiple Airplay Speakers?

    Any idea what is causing kernel panics that seems to have started when I began streaming to multiple Airplay Speakers?  iTunes is listed as the culprit in the crash report.

    My question:  is there a way to select multiple speakers from AppleTV for Airplay?
    Unfortunately not.

  • My ATV 2G with latest firmware doesn't stream audio to Airplay Speakers

    Hi everybody,
    I have an AppleTV 2G upgraded to the latest firmware (5.1.1 / ios 6.0.1).
    My problem is that it doesn't stream audio to my airplay speakers. I have the B&O Beoplay A8.
    The speakers work fine with my ipad and iphone, but not the ATV.
    I checked the aiplay settings, the speakers appear there normally and I have ticked them and they are the selection for the audio output.
    Instead AppleTV audio is on the TV.
    Can someone please help me.
    I got the speakers just for this reason. To listen audio from movies on ATV from the speakers.
    Every help is appreciated.

    Timing-wise the problem coincided with upgrading the firmware on my Airport Express to 7.6.4 (reverting to the previous version doesn't seem possible).
    Reverting to an earlier firmware version is possible with v5.6 of the AirPort Utility. Note: This version runs fine under OS X Mountain Lion but will not install without a workaround. Let me know if you need it.

  • Can ATV2 serve as source for Airplay speakers?  I'd like to send non-ITunes streaming (e.g. Netflix movies) to Airplay wireless speakers.

    Can ATV2 serve as source for Airplay speakers?  I'd like to send non-iTunes streaming (e.g. Netflix movies) directly from ATV2 to Airplay wireless speakers.

    Welcome to the Apple Community.
    No that's not currently possible sorry.

  • Problem trying to read an SSL server socket stream using readByte().

    Hi I'm trying to read an SSL server socket stream using readByte(). I need to use readByte() because my program acts an LDAP proxy (receives LDAP messages from an LDAP client then passes them onto an actual LDAP server. It works fine with normal LDAP data streams but once an SSL data stream is introduced, readByte just hangs! Here is my code.....
    help!!! anyone?... anyone?
    1. SSL Socket is first read into  " InputStream input"
    public void     run()
              Authorization     auth = new Authorization();
              try     {
                   InputStream     input     =     client.getInputStream();
                   while     (true)
                   {     StandLdapCommand command;
                        try
                             command = new StandLdapCommand(input);
                             Authorization     t = command.get_auth();
                             if (t != null )
                                  auth = t;
                        catch( SocketException e )
                        {     // If socket error, drop the connection
                             Message.Info( "Client connection closed: " + e );
                             close( e );
                             break;
                        catch( EOFException e )
                        {     // If socket error, drop the connection
                             Message.Info( "Client connection close: " + e );
                             close( e );
                             break;
                        catch( Exception e )
                             //Way too many of these to trace them!
                             Message.Error( "Command not processed due to exception");
                             close( e );
                                            break;
                                            //continue;
                        processor.processBefore(auth,     command);
                                    try
                                      Thread.sleep(40); //yield to other threads
                                    catch(InterruptedException ie) {}
              catch     (Exception e)
                   close(e);
    2 Then data is sent to an intermediate function 
    from this statement in the function above:   command = new StandLdapCommand(input);
         public StandLdapCommand(InputStream     in)     throws IOException
              message     =     LDAPMessage.receive(in);
              analyze();
    Then finally, the read function where it hangs at  "int tag = (int)din.readByte(); "
    public static LDAPMessage receive(InputStream is) throws IOException
        *  LDAP Message Format =
        *      1.  LBER_SEQUENCE                           --  1 byte
        *      2.  Length                                  --  variable length     = 3 + 4 + 5 ....
        *      3.  ID                                      --  variable length
        *      4.  LDAP_REQ_msg                            --  1 byte
        *      5.  Message specific structure              --  variable length
        DataInputStream din = new DataInputStream(is);
           int tag = (int)din.readByte();      // sequence tag// sequence tag

    I suspect you are actually getting an Exception and not tracing the cause properly and then doing a sleep and then getting another Exception. Never ever catch an exception without tracing what it actually is somewhere.
    Also I don't know what the sleep is supposed to be for. You will block in readByte() until something comes in, and that should be enough yielding for anybody. The sleep is just literally a waste of time.

  • Do I need to download a DNLA server to play contents of my iMac on my TV through a blue ray player?

    Do I need to download a DNLA server to play contents of my imac on my TV through a blue ray player?  I have Mountain Lion.

    No, but if you want to do this wirelessly or as Apple calls it, AirPlay, then you need a compatible iMac and an Apple TV or other compatible AirPlay device.
    Otherwise you can connect the two with a suitable cable.

  • Problems reading  an SSL server socket stream using readByte()

    Hi I'm trying to read an SSL server socket stream using readByte(). I need to use readByte() because my program acts an LDAP proxy (receives LDAP messages from an LDAP client then passes them onto an actual LDAP server. It works fine with normal LDAP data streams but once an SSL data stream is introduced, readByte just hangs! Here is my code.....
    help!!! anyone?... anyone?
    1. SSL Socket is first read into  " InputStream input"
    public void     run()
              Authorization     auth = new Authorization();
              try     {
                   InputStream     input     =     client.getInputStream();
                   while     (true)
                   {     StandLdapCommand command;
                        try
                             command = new StandLdapCommand(input);
                             Authorization     t = command.get_auth();
                             if (t != null )
                                  auth = t;
                        catch( SocketException e )
                        {     // If socket error, drop the connection
                             Message.Info( "Client connection closed: " + e );
                             close( e );
                             break;
                        catch( EOFException e )
                        {     // If socket error, drop the connection
                             Message.Info( "Client connection close: " + e );
                             close( e );
                             break;
                        catch( Exception e )
                             //Way too many of these to trace them!
                             Message.Error( "Command not processed due to exception");
                             close( e );
                                            break;
                                            //continue;
                        processor.processBefore(auth,     command);
                                    try
                                      Thread.sleep(40); //yield to other threads
                                    catch(InterruptedException ie) {}
              catch     (Exception e)
                   close(e);
    2 Then data is sent to an intermediate function 
    from this statement in the function above:   command = new StandLdapCommand(input);
         public StandLdapCommand(InputStream     in)     throws IOException
              message     =     LDAPMessage.receive(in);
              analyze();
    Then finally, the read function where it hangs at  "int tag = (int)din.readByte(); "
    public static LDAPMessage receive(InputStream is) throws IOException
        *  LDAP Message Format =
        *      1.  LBER_SEQUENCE                           --  1 byte
        *      2.  Length                                  --  variable length     = 3 + 4 + 5 ....
        *      3.  ID                                      --  variable length
        *      4.  LDAP_REQ_msg                            --  1 byte
        *      5.  Message specific structure              --  variable length
        DataInputStream din = new DataInputStream(is);
           int tag = (int)din.readByte();      // sequence tag// sequence tag

    I suspect you are actually getting an Exception and not tracing the cause properly and then doing a sleep and then getting another Exception. Never ever catch an exception without tracing what it actually is somewhere.
    Also I don't know what the sleep is supposed to be for. You will block in readByte() until something comes in, and that should be enough yielding for anybody. The sleep is just literally a waste of time.

  • Windows Media Server Audio Stream

    Is there a way to play a Windows Media Server Audio stream on
    Adobe Flash Player embeded on a website?

    Not that I've ever heard of... you'd have to get that audio
    into some form that Flash supports (as either audio or
    video...)

  • Server-Side stream play problem

    Hello,
    I have a problem, which I am trying to solve for many nights already without any success.
    Everytime I try to switch or change a server-side stream, it starts lagging after 2 seconds of playing and sound disappears.
    Here are scenarios that result in that terrible lag:
    1. I create server-side playlist with stream.play() with reset=false; when it is time to play the next movie in the playlist, it starts lagging after 2 seconds.
    2. The same problems appears when I just switch streams. I installed FMF Feature Explorer and tried to launch SwitchStreams sample application: the same problem - server stream starts lagging after I switch streams with stream.play().
    I tried on different servers (local and remote), with different players (debug player of FMS Admin Console, Standard Flash videoplayer component, OSMF player, Flex video player). I also tried all possible flv, f4v and mp4 file compression options for video files - still the same problem.
    I have also tried literally thousands of Application.xml settings: changing buffer, buffer ration etc.
    Is there any tip where I should search for a solution?
    Thank you in advance

    JayCharles,
    Thank you for your reply.
    But in my case the client is subscribed to a stream on the FMS. And that stream is switching video files and handling the playlist. So, I don't see any possibility to listen to onPlayStatus on a client-side, as my client is only playing live stream and has no clue what is happening on the server side.
    Or I am wrong?

  • Use HTTP Dynamic Streaming (HDS) and HTTP Live Streaming (HLS) to serve live streams to clients over HTTP

    I have created a live stream of a video and it gets stored in live folder.
    Now i need to use HTTP Dynamic Streaming (HDS) and HTTP Live Streaming (HLS) to serve live streams to clients over HTTP, publish the streams to the HTTP Live Packager service on Flash Media Server.
    So what necessary steps do I  need to follow to do that ??

    You need to generate a manifest file using Configurator tool and placed it under the webroot directory.
    C:\Program Files\Adobe\Flash Media Server 4.5\tools\f4mconfig\configurator

  • Apple Server as airplay speakers?

    I have a Mac Mini runniing Mavericks / Apple Server. Currenly this is the iTunes server for the entire house. I also have several Airport Express units which I use to extend the network and attach printers and speakers remotely. I even have an Apple TV in the living room which I use for both viewing Apple TV as well as listening to the iTunes library as airplay speakers.
    What I am wondering is, is there a way to "share" the speakers plugged into my Mac Mini via 3.5mm audio jack as an airplay device? (analogous to using the Mac Server as a TimeMachine server or sharing a printer attached to my Mac Mini to the entire network.). Specifically, I'd like to be able to control all speakers in the house via my iPhone or iPad INCLUDING the speakers attached to the Mac Mini server. Currenly I can only control all the speakers EXCEPT those attached to the Mac Mini.
    Thanks
    Michael

    Thinfourth2 wrote:
    Can i use an AppleTV as a set of remote speakers in the same way as i can use an airport express as a set of remote speakers in iTunes?
    yes, you can stream music to TV
    If i was to buy a appleTV then it would replace the one in the lounge which would be off to somewhere else in the house.
    where ever you put the TV, keep in mind that you need to connect it to a HDTV (at least now and then, e.g. for the initial setup).
    I don't want to loose the ability to control the music streaming from iTunes on the powermac.
    you won't, but you may consider, at one stage, to get an iPod Touch or iPhone. with Apple's +remote app+ installed, you can control your tunes from anywhere in the house !
    good computing

  • HT5517 How can I adjust sound level when streaming radio from my Apple TV through Airplay speakers?

    I have a 2nd Gen Apple TV with an airport express set up as airplay speakers.  I can stream the new radio through using the Airplay speakers pretty well.  The problem is that once I've got it going, I cannot adjust the sound level without laboriously backing out of the radio menu, going back to the top level menu then drilling down into the Airplay settings to raise or lower the speaker's sound level.
    Is there an easier way to do this?

    go to system preferences > Sound > Output. then change the output from "built-in" to HDMI.
    Maher

  • HT1947 I can't seem to get my earphones to work on my iPad mini whe using iTunes remote. I can stream to any Airplay capable system perfectly. Just want to be able to listen to headphones iTunes "wirelessly"

    I can't seem to get my headphones to work on my iPad mini when using iTunes remote.
    I can stream to any Airplay capable system perfectlyvia Remote and control iTunes on my iMac as advertised.
    Just want to be able to listen to iTunes on my iPad "wirelessly"

    Yay!
    I discovered this lovely little forum entry that solved my problem!
    (Remember this is for Windows, I'm not sure if the same will work for Mac)
    This is what you do:
    1: Have iTunes up and plug in your iPod.
    2: Hold the Sleep/Wake and Home buttons down until the iPod shuts down.
    3: When the screen is blank, release the Sleep/Wake and just hold the Home button down for about 15 seconds.
    4: After then, iTunes will recognize an I iPod in Recovery Mode.
    5: That's when iTunes will ask you to Update/Restore your iPod.
    I'm pretty sure those are the steps.
    (If anything is wrong, can someone fix it, please?)
    But that really does work.
    The writer said that his iPod was "stuck on the apple screen, and not going anywhere after that."
    That was my issue, so hopefully this will work for you!

  • Watching iTunes Movie on Apple TV while streaming sound to multiple AirPlay speakers

    Hi Everyone,
    I bought a pair of Airplay speakers and Apple TV 3rd generation to watch my Movies in the iTunes library. Importantly, I want to listen to the movies sound on multiple Airplay speakers while watching. So far I couldn't activate the speakers, once I started the movie.
    Has anyone an idea, how to do that?

    Thanks a lot for your answer.
    I'm doing signal processing and work with videos professionally. The audio signal is technically always separated (and extractable) from the video frames. I don't see why  the audio shouldn't be possible to be distributed to different airplay clients?
    Do you mean that this option is just not supported by apple? In this case, do you know if it is at least possible to stream to multiple apple TV's at the same time?

  • Can we stream music to Bose speakers thru Apple TV?

    Can we stream Music to Bose speakers thru apple TV

    Welcome to the Apple Community Sam.
    If they have an optical input and a volume control, then there shouldn't be any reason why not.

Maybe you are looking for

  • Calendar colors not the same...

    In iCal, I have four different calendars each with their own color: blue, green, red, and orange. The calendar colors on the iPhone are all scrambled. How do I fix this? What am I missing? Thanks!

  • Creating Slide Show Movie in imovie from Iphoto Album

    i have several Queries , firstly ,for a slide show to music ( ie no avi files ) - do I set Mode to DV/NTSC or other. Secondly, I cant work out an easy way to 'AutoSync' an album of photos to a designated Music file(s)length. Thirdly, i do have a smal

  • I cannot update adobe air on my nook hd

    I cannot update adobe air on my nook hd, even though I have an old version.  It gives me an error message that I already have that app.  I called adobe and they referred me to the forum.  Please help!

  • Reading raw files from Canon 70D

    I have Photoshop Elements 11 and just got a Canon 70D. How can I get the program to read the raw files?

  • Distribute from multiple cost centers to single cost center

    Hello, I have a requirement follows this way: multiple costs are posted to a few P&L accounts and a cost center. Now I want to distribute these total costs to multiple cost centers on a certain percentage basis. How to do this? I used Cost Center dis