Playlists when streaming

I have looked at the Apple TV 2 keynote a few times now but have been unable to figure out one thing. Will Apple TV2 support itunes playlists when streaming from an computer on the network? Has anybody understood this? Perhaps the answer is obvious to someone with experience of the old product unfortunatly I have none.
Thanks
Fredrik

I got the answer from another forum that the current version support itunes playlists for music so I'm crossing my fingers that it will work with video playlists in atv2

Similar Messages

  • NetStream.Play.InsufficientBW when streaming server side playlist

    Hi
    I am streaming pre recorded audio files (mp4) to an AIR client. I have tried two different solutions,
    streaming the file directly with the NetStream.play("mp4:xxxxx.m4a") and creating a server side playlist, adding the
    same sound clip and then streaming the playlist. The problem is, when streaming the playlist i get a few NetStream.Play.InsufficientBW, this does not happen when streaming the file direct. Both solutions uses bufferTime=1.0
    I would like to use a server side playlist to implement a simple key solution so that the client dont know the full path to
    the file, but instead sends a key to a custom server side function that looks up the file path and creates a stream for the client.
    TIA
    Ruben Chadien
    FMS 4.0(linux)

    Subscribing via playlist and playing file directly are two different things , as first one is live mode of play while other is playing recorded file - so the way streams are delivered are also quite different. Can you try setting higher buffer and see if that helps or if you don't want to set higher buffer, see if disabling AggregateMessages (you will find the tag in Application.xml under Live/Queue) helps

  • Dynamic Playlist for streaming video

    This is my first attempt at building a dynamic playlist for
    streaming flash video and I'm following the tutorial at
    "macromedia.com/devnet/flash/articles/video_player.html". I've
    changed the paths to my FMS and loaded the video files to the
    applications directory of the FMS (flash_applications/videosource).
    The thumbnails load and the player skin loads but the videos do not
    load when I click on the thumbnails.
    I've read the earlier post about this same issue. I followed
    the advice from that post and reloaded the 'main.asc' file from my
    Flash 8 program files but the video still does not play.
    Here is a link to the site so you can see the problem:
    http://media.us.elsevierhealth.com/videosource/VideoSource1.swf
    My FMS is 'media.us.elsevierhealth.com'
    I believe my code is correct and I believe the paths I've
    created are correct. If someone could review my code and check the
    path info I would appreciate it. Here is the code from
    'VideoSource1.as'
    import mx.video.*;
    //Set up the list box, call function VideoThumb to create the
    actual thumbnails
    list.rowHeight = 70;
    list.cellRenderer = "VideoThumb";
    list.selectable = true;
    //create new empty listener object
    listListener = {};
    nc = new NetConnection(); //create a connection
    nc.connect("rtmp://media.us.elsevierhealth.com/videosource");
    //connect to FCS (nav.attributes.url)
    ns = new NetStream(nc); //create a stream
    ns.connect(); //connect the stream
    nc.connect("rtmp://media.us.elsevierhealth.com/videosource");
    var stream_ns:NetStream = new NetStream(nc);
    stream_ns.play("video2.flv");
    // Create function to trace all the status info.
    function traceStatus(info) {
    Message.text+="Level: " + info.level + " Code: " +
    info.code+"\n";
    } // Assign this function to onStatus handlers when you
    create objects.
    //Function to handle what happens when an item in the list is
    selected
    listListener.change = function( evtobj ) {
    var nav = list.dataProvider[list.selectedIndex];
    var reset = true;
    for ( var i = 0; i < nav.childNodes.length; i++ ) {
    var stream = nav.childNodes
    if ( stream.nodeName == "stream" ) {
    attachMovie("FLVPlayback", "my_FLVPlybk", 10, {width:320,
    height:240, x:90, y:100});
    //center the FLVPlayback component when FLV is ready to play
    var listenerObject
    bject = new Object();
    listenerObject.resize = function(eventObject
    bject):Void {
    //center video in playback area
    newx = (460 - my_FLVPlybk.preferredWidth)/2;
    newy = (470 - my_FLVPlybk.preferredHeight)/2;
    my_FLVPlybk._x = newx;
    my_FLVPlybk._y = newy;
    my_FLVPlybk.addEventListener("resize", listenerObject);
    listenerObject.ready = function(eventObject
    bject):Void {
    my_FLVPlybk.setSize(250, 350);
    my_FLVPlybk.skin = "ClearExternalAll.swf";
    my_FLVPlybk.clear();
    my_FLVPlybk.contentPath =
    "rtmp://media.us.elsevierhealth.com/videosource/stream/_definst_/"
    + stream.attributes.name+".flv";
    my_FLVPlybk.autoSize = true;
    trace(my_FLVPlybk.contentPath);
    reset = false;
    //Add an event listener on the list, when it triggers, run
    the listListener function to repopulate the list
    list.addEventListener("change", listListener);
    //Function that loads the XML file, parses it, and builds the
    list of available video clips
    var xmllist = new XML(); //setup a variable to hold the XML
    xmllist.ignoreWhite = true;
    xmllist.load( "playlist-demo-1.xml" ); //load the XML file
    //The following gets called when the XML has been loaded
    xmllist.onLoad = function( status ) {
    if ( !status )
    trace( status );
    var entries = this.childNodes[0];
    var playlists = {};
    var nav = [];
    for ( var i = 0; i < entries.childNodes.length; i++ ) {
    var entry = entries.childNodes;
    if ( entry.nodeName == "listitem" )
    //builds array of video clip names
    playlists[entry.attributes.name] = entry;
    else if ( entry.nodeName == "menu" ) {
    //builds array of available videos
    for ( var j = 0; j < entry.childNodes.length; j++ )
    nav[j] = playlists[entry.childNodes[j].attributes.name];
    } //end else if
    } //end if
    //sends the array of videos to the listbox UI
    list.dataProvider = nav;
    } //end xmllist.onload
    Any advice or troubleshooting will be appreciated. Thanks in
    advance.

    I just used the server on Windows (as opposed to linux) and
    it worked great. So the issue, at least for me and my issue (could
    see the thumbnails, couldn't play the video) was windows vs. Linux.
    I guess the linux version doesn't work with this exact script. Now
    to put together something of my own to test to see if the linux
    version works right.

  • Problem with tutorial:Creating a dynamic playlist for streaming flash video

    hi, anyone tried the tutorial: creating a dynamic playlist
    for streaming flash video?
    i follow the instruction exactly as stated in the tutorial
    and test the fla file, it worked perfectly well when i open the swf
    using the macromedia flash 8. Everything look fine. Nothing is
    changed except the url is changed to "rtmp://localhost/videosource"
    in the xml file.
    after i publish the file using the setting: access network
    only, i try to open the swf and html file from the folder, the
    thumbnail did not appear and there is no way i can click on any
    videos. What i see is only the list, and there is no response from
    the flash media server 2. All the files is in the same folder.
    Anyone please help with this problem???? thanks

    ....i debug the movie step by step
    and realised that the xml file is being read by the code...
    Your original problem stated it worked but not when playing
    outside the
    Flash authoring environment by simply loading the swf from
    the hard drive.
    The Flash authoring environment is a trusted environment and
    so you really
    need to test in the actual deployment mode which loading an
    swf from the
    hard drive is not a valid deployment unless an installed
    Flash player is
    available outside the web browser which you would have as you
    have the
    authoring tool and your users will not.
    Use a browser with
    http://yourdomain.com/yourmovie.html
    to do final
    debugging.
    In this regard you may need to debug the movie while running
    in real time
    mode in a web browser with
    http:// A technique to trace I suggested is to
    create a temporary TextField perhaps named out_txt and send
    trace message to
    it such as out_txt.text += "My Trace Expression".
    Lon Hosford
    www.lonhosford.com
    May many happy bits flow your way!
    "free23" <[email protected]> wrote in
    message
    news:[email protected]...
    sorry but i don't understand what you mean....i debug the
    movie step by step
    and realised that the xml file is being read by the code...
    this is a sample of my log files:
    #Fields: date time x-pid x-status x-ctx x-comment
    2006-05-15 20:08:58 3072 (i)2651170 Unloaded application
    instance
    videosource/_definst_ -
    2006-05-15 20:48:19 3848 (s)2641173 FCApplication loaded
    successfully.
    2006-05-15 20:48:19 3848 (s)2641173 Communication Framework
    loaded
    successfully.
    2006-05-15 20:48:19 3848 (s)2641173 SimpleConnect loaded
    successfully. -
    2006-05-15 20:48:19 3848 (s)2641173 VideoConference loaded
    successfully. -
    2006-05-15 20:48:19 3848 (s)2641173 Video Playback loaded
    successfully. -
    2006-05-15 20:48:19 3848 (s)2641173 Communication Components
    loaded
    successfully.
    2006-05-15 20:48:19 3848 (s)2641173 Sending this message:
    Hello! You are
    connected as: undefined -
    2006-05-15 20:48:19 3848 (e)2641190 Error : command msg sent
    before client
    connection has been accepted. -
    2006-05-15 20:48:20 3848 (s)2641173 Sending this message:
    Hello! You are
    connected as: undefined -
    2006-05-15 20:48:20 3848 (e)2641190 Error : command msg sent
    before client
    connection has been accepted. -
    2006-05-15 20:48:20 3848 (s)2641173 Sending this message:
    Hello! You are
    connected as: undefined -
    2006-05-15 20:48:20 3848 (e)2641190 Error : command msg sent
    before client
    connection has been accepted. -
    2006-05-15 20:48:20 3848 (s)2641173 Sending this message:
    Hello! You are
    connected as: undefined -
    2006-05-15 20:48:20 3848 (e)2641190 Error : command msg sent
    before client
    connection has been accepted. -
    2006-05-15 20:48:20 3848 (s)2641173 Sending this message:
    Hello! You are
    connected as: undefined -
    2006-05-15 20:48:20 3848 (e)2641190 Error : command msg sent
    before client
    connection has been accepted. -
    2006-05-15 20:49:42 3848 (s)2641173 Sending this message:
    Hello! You are
    connected as: false -
    hope this help...

  • When streaming a movie with the new Apple TV, and using a DSL Internet connection, all audio sound works, e.g., the music track, but the audio track with the actor's voices, does not work. What can I do?

    When streaming a movie with the new Apple TV, and using a DSL Internet connection, all audio sound works, e.g., the music track, but the audio track with the actor's voices, does not work. What can I do?

    Hi Brian,
    Thanks restoring and restarting didn't fix my problem - i have started it fresh and still it doesn't work. Basically I press ONCE on the remote, after the machine has not had any commands for 10 minutes, and the cursor skips from one end of the menu to the other - so I can't choose network or update software etc - I sometimes manage to stop it randomly in the middle of the menu if I press on a command in the middle of the cursor skipping all the menu steps...not sure what the problem is but I have basically not used my brand new apple tv since I bought it for that reason! I should call Apple support I suppose! grrrr hate wasting time with stuff like this!
    Thanks for your help though!
    Pernille

  • I want to play music from my playlist when I am using slideshow of my pictures in Ipad,  but I can only choose ONE SINGLE song, and it continuously repeates itself.  Is there a way to play the complete playlist while showing my pictures?

    I want to play music from my playlist when I am using slideshow of my pictures in Ipad,  but I can only choose ONE SINGLE song, and it continuously repeates itself.  Is there a way to play the complete playlist while showing my pictures?

    You can start the playlist playing in the iPod app and then switch into the Photos app and start your (non-music) slideshow - as you've found out you can currently only select a single track in the Photos app. Whether that will change in iOS 5 I don't know, but you could try leaving feedback for Apple : http://www.apple.com/feedback/ipad.html

  • How to eliminate subtitles when streaming Netflix through Apple TV?

    When streaming movies from Netflix through Apple TV, sub-titles appeared and we canot find a menu or symbol to click to eliminate the sub titles.  They carry over to our next item.  How can I eliminate the sub titles. (This is only a problem with Apple TV.  Able to eliminate them on computer or I Pad.

    Push and hold the menu button while the content is playing.  It will bring up a menu for captioning if the content has an option to chang it.

  • Lost my playlists when I tried to share libraries with different accounts on the same MacBook computer

    lost my playlists when I tried to share libraries with different accounts on the same MacBook computer

    Hi dprette,
    When setting up iTunes to share a single music library between multiple user accounts on one computer you should follow the steps in this article -
    iTunes: How to share music between different user accounts on a single computer
    http://support.apple.com/kb/HT1203
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • When streaming a movie from an imac to apple tv, is there a way of putting the imac display off? I find it a waste having the screen on in another room. Any advice?

    When streaming a movie from an imac to apple tv, is there a way of putting the imac display off? I find it a waste having the screen on in another room. Any advice?

    No problem.
    This is a user forum so you are not addressing Apple. There's nothing to fix, that's how home-sharing works. There would be no way for the ATV to recognize your library and display content if the computer is in sleep mode.
    You can always airplay from an IOS device or use icloud if you don't wish to keep the computer on.

  • Something has changed on my iPod. When I sync it now it scrambles music between playlists. So, I will be listening to my jazz playlist when suddenly holiday music from another playlist is there. When I go to iTunes, however, the playlist is as it should b

    Something has changed on my iPod. When I sync it now it scrambles music between playlists. So, I will be listening to my jazz playlist when suddenly holiday music from another playlist is there. When I go to iTunes, however, the playlist is as it should be--jazz in the jazz playlist, holiday music in the holiday music playlist. I have two iPods--one is syncing properly while the older one is not. Any thoughts?

    You are currently managing your music manually. You can either sync or manage the music manually, not both. If you want to sync, all the music currently on your phone will be erased and replaced with whatever you decide to sync to it.

  • With the new updates for iTunes, I can no longer print a CD case playlist when I burn a CD.  It prints in a jumbled mess.  I have reinstalled, updated, run diagnostics on my NEW printer, I am out of ideas!

    With the new updates for iTunes, I can no longer print a CD case playlist when I burn a CD.  It prints in a jumbled mess.  I have reinstalled, updated, run diagnostics on my NEW printer, I am out of ideas!

    It appears to be a bug with the current build. Hopefully it will be fixed in the next release.
    tt2

  • ITunes 10.6.3 keeps generating incomplete downloads AND it rearranges the order of the playlist when I burn a playlist to an mp3 cd

    iTunes 10.6.3 keeps generating incomplete downloads AND it rearranges the order of the playlist when I burn a playlist to an mp3 cd.
    I purchased an album on iTues from my MAC book Pro & the song downloads were incomplete. The song length shows correctly in the column, but they cut off between 1/4 & 1/2 way through the songs. Now, I dwonloaded it on my iPhone 4 through my itunes account after the purchase & the songs play fine. This happened with the very next song I purchased, as well.
    I got around this issue, then created mp3 versions of all the songs, put them in their own playlist, then "Burned an mp3 disc." When it completed, the songs were in a different order.
    Are there any fixes for either of these problems/bugs?

    iTunes: How to set the play order of songs on an MP3 CD - http://support.apple.com/kb/HT2455

  • I lost all my playlists when downloading the new itunes. Anyway to get them back?

    I lost all my playlists when downloading the new itunes. Besides honestly wanting to cry, is there anyway to get them back without making them all AGAIN? And thanks so much, stupid Apple. Am looking for a new MP3 player to take your stupid ipod player's place. I used to love my ipod...now everytime I turn around, apple has screwed with something that causes ME time and trouble.

    If you created/burned Recovery Media boot from it to restore the original OS with all drivers/software. If you don't have Recovery Media you can order from HP for a small fee. Contact HP Support in your country /region to request Recovery Media. Worldwide contact info can be accessed here>>Contact HP
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • Itunes freezes when streaming music to airport express and to loewe air speaker at the same time?

    Hi,
    (first post )
    I was recently offered a Loewe Airspeaker. I already had an Airport Express connected to a hi-fi system.
    The Airport Express + hi-fi is in the living-room and the Loewe Airspeaker is in our bedroom.
    Both are connected to my network via wifi.
    I was trying to stream music from my iMac to both the Airport Express and the Loewe Airspeaker.
    When doing this, I am able to get the same tune on both devices, but iTunes systematically freezes
    =>music continues to be streamed but interface on the iMac gets the endless multicolor wheel !
    Has anyone seen anything similar before, for ex. is there a similar issue when streaming music to 2 different Airport Express?
    Any idea on where this is coming from?
    Any idea on how to prevent this?
    Thx in advance
    Rodolphe
    A few precisions on the configuration:
    the iTunes library and corresponding music are located on a Mac Mini configured as a media server.
    The iMac connects to the mac mini via wifi (shared folder). Home network is organized via an Airport Extreme.
    Both computers run Mac OS 10.7.2 Lion and are up to date.

    Well, repying to my own post... Might have found the solution: I tried to do the same with a Macbook Pro 2010 using the very same setup. And it worked perfectly! No freeze, no nothing.
    One explanation I see:
    my iMac is dating back to May 2007, a Core 2 Duo 2,16Ghz with 2 Go of RAM.
    So the computer's characteristics (or the Wifi component or the combination of all of this) might be not robust enough to allow streaming to those 2 devices...
    Anyone's got anything to add?

  • Bit of a strange one.... HD Movies "Judder" when streaming to ATV2

    Bit of a strange one.... all my HD Movies since the latest ATV2 update "Judder" when streaming.
    It's very hard to describe but whenever there is a fast Zoom or Pan shot the image flickers for around half a second. It seems to happen every 20 seconds or so, this has only been the case since the latest update of ATV2.
    I purchased Tron Legacy (HD) from the iTunes store and it occurs when playing that movie. It also happens on all my self generated HD contect.
    Strangely it does not occur when streaming to my 1st Gen Apple TV, which makes me think it has nothing to do with my Home Network setup, as they are both connected via Ethernet cables.
    There is only a problem with HD Streaming and ATV2.
    Any assistance would be appriciated
    Hans

    The last update seems to have introduced a feature which lets the Apple TV detect the native frequency of your TV, in the UK this is probably but not always 50 Hz, this is beneficial for Home video and broadcast content in these locations where the frame rate is 25 fps. It isn't ideal for 30 fps or 24 fps content though which most of the iTMS movies and TV shows are.
    Also of relevance is that some TV's make a better job of telecine/detelecine than others due to the quality of their components.
    Although I don't necessarily think that Apple are responsible for the ability of 3rd party TV's, the problem could be easily overcome by allowing the user to manually select the Apple TV output as was the case with the Apple TV 1. This would allow the user to switch to 60 Hz for 30/24 fps content and 50 Hz for 25 fps content.
    Some TV's have motion settings which worsen/improve the situation depending on their settings.

Maybe you are looking for