Party Shuffling a shared library

Dear All,
Does anybody know if there is a way of party shuffling a shared library?
My music library lives downstairs in the living room, at my iMac, and is shared wirelessly with a windows laptop elsewhere in the house.
I don't generally listen by any method other than Party Shuffle - but I can't seem to do that on the itunes on the laptop.
I can play all the music in the shared library randomly by pressing the random button at the bottom left and double clicking on 'all artists', but this is really not as good as Party Shuffle (I like to sit down and prune the upcoming list depending on my mood / company).
If anybody can help I'd be much obliged.
Cheers,
Doug
iMac, purple, CRT   Mac OS X (10.3.9)   512MB RAM

It's been that way ever since Party Shuffle appeared in iTunes.
One way I used to do it when I had my music library on a desktop computer and I was using a PowerBook was to use remote desktop software like VNC to control the remote computer.
Or if you quit out of iTunes on the remote computer and use file sharing to mount the remote file system you could hold the Option key down on your local computer and then select the library on the shared volume. I haven't tried this but I think it may work. Changing libraries was something introduced in the latest version of iTunes, although I don't think this was what they had in mind when introduced it.

Similar Messages

  • Party Shuffle with shared library

    Is there anyway to use Party Shuffle on a remote computer with a shared library as the source? I have all my music on my G5 but my laptop is what I use during parties.

    It's been that way ever since Party Shuffle appeared in iTunes.
    One way I used to do it when I had my music library on a desktop computer and I was using a PowerBook was to use remote desktop software like VNC to control the remote computer.
    Or if you quit out of iTunes on the remote computer and use file sharing to mount the remote file system you could hold the Option key down on your local computer and then select the library on the shared volume. I haven't tried this but I think it may work. Changing libraries was something introduced in the latest version of iTunes, although I don't think this was what they had in mind when introduced it.

  • Party Shuffle with Shared Music

    I saw this question posted a few times (all of which are archived and do not allow posting of replies). Does anyone have any good info as to why Party Shuffle can't pull from a shared music library? The only real "workaround" is to play the library and select the "Shuffle" button, but you obviously don't have control over what songs get played next.
    I would really like to see this available. Is it in the works or should I just not expect it at all.

    Doesn't look like anyone else cares... Oh well...

  • Party Shuffle w/ Sharing

    Sharing my music from my desktop to my laptop using Airtunes I find that I cannot choose a folder in Party Shuffle to access my shared music. Is this part of the copyright law problem? Is there a way around this? I would prefer Party Shuffle over the old fashioned Shuffle option. Any ideas?
    Thanks.

    Count me in on this one. I logged in to check this and one other issue, both of which it appears are not yet available. Just to reiterate, I would like to see iTunes support:
    1) Party Shuffle capability for shared playlists
    2) Allow user to rate songs in shared playlists (permissions could be controlled on the serving library)
    It looks like I'm in the same situation as at least several other people are - I want to store and manage just one main library (in the basement, in my case), while creating "shell" iTunes libraries on other household computers (or possibly media servers in the future) that access the shared library in the basement. Party Shuffle is fantastic; it seems that it wouldn't be too hard to update iTunes to serve random songs per Smart Playlist rules to a requesting client. After all, it's already serving songs as it is. Likewise, I've loaded my entire CD collection, but have only rated maybe half of my music to date. I like my basement, but it sure would be nice if I could rate songs while I stream them over my family room stereo (I have a special smart playlist that only feeds me unrated songs - only 1566 songs to go...).
    HP Laptop Windows XP Pro Multiple machines (tower, laptop) trying to share one library effectively...
    HP Laptop    

  • Party Shuffle - How to exclude songs

    Hi,
    I have 3 playlists and the library. One playlist contains meditation songs that I do not want to include when using the Party Shuffle at the Library Level. I also want to achieve the same on my iPod Nano.
    I know I can deselect the songs but it is kind of a pain to do so every time I want the shuffle to play. On the other had, I can not do the same on the iPod.
    Any ideas will be highly appreciated.

    One playlist contains meditation songs that I do not want to include when using the Party Shuffle at the Library Level.
    Stop using the party shuffle at the library level. Instead, create a new Smart Playlist with the rule "Playlist is not Mediation_songs", and then party shuffle that instead. You can use the same playlist on the iPod, if you like.

  • Using C++ classes in a third-party shared library

    Would be very grateful if someone could help me out with the following problem that I am having (apologies if this has been answered elsewhere but I have been searching the web for ages and can't find a solution )
    I have a requirement for a java app to access a C++ class in a third party shared library. To test my solution and illustrate the problem I have developed the following test code.
    I am developing on SUSE 11.1 using Suns Java 1.5 and g++ 4.3.2
    $LD_LIBRARY_PATH = /home/raughterd/projects/dpa/jnitest:/usr/lib/mpi/gcc/openmpi/lib
    First developed a test class library libfred.so
    fred.h
    #ifndef __FRED_H__
    #define __FRED_H__
    class fred
    public:
    void test() const;
    #endif // __FRED_H__
    fred.cc
    #include <iostream>
    #include "fred.h"
    void fred::test() const
    std::cout << "Called fred.test" << std::endl;
    built it with the following
    g++ -c -Wall -I. fred.cc
    g++ -shared fred.o -o libfred.so
    Then developed java test application Tester
    jnitest.java
    class jnitest
    static
    System.loadLibrary("jnitest");
    public native void test();
    Tester.java
    class Tester
    public static void main(String[] args)
    jnitest x = new jnitest();
    x.test();
    both compiled with
    javac xxxxx.java
    and developed libjnitest.so by
    javah -jni jnitest
    to produce jnitest.h
    /* DO NOT EDIT THIS FILE - it is machine generated */
    #include <jni.h>
    /* Header for class jnitest */
    #ifndef Includedjnitest
    #define Includedjnitest
    #ifdef __cplusplus
    extern "C" {
    #endif
    * Class: jnitest
    * Method: test
    * Signature: ()V
    JNIEXPORT void JNICALL Java_jnitest_test
    (JNIEnv *, jobject);
    #ifdef __cplusplus
    #endif
    #endif
    wrote jnitestimpl.cc
    #include <iostream>
    #include "jnitest.h"
    #include "fred.h"
    JNIEXPORT void JNICALL
    Java_jnitest_test(JNIEnv *, jobject)
    std::cout << "called C++ func" << std::endl;
    fred afred;
    afred.test();
    compiled with
    g++ -c -Wall -I. jnitestimpl.cc
    g++ -shared jnitestimpl.o -o libjnitest.so
    ran the test application
    java Tester
    which produced
    Exception in thread "main" java.lang.UnsatisfiedLinkError: /home/raughterd/projects/dpa/jnitest/libjnitest.so: /home/raughterd/projects/dpa/jnitest/libjnitest.so: undefined symbol: _ZNK4fred4testEv
         at java.lang.ClassLoader$NativeLibrary.load(Native Method)
         at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1751)
         at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1676)
         at java.lang.Runtime.loadLibrary0(Runtime.java:822)
         at java.lang.System.loadLibrary(System.java:993)
         at jnitest.<clinit>(jnitest.java:5)
         at Tester.main(Tester.java:5)
    Without the references to the fred class in jnitestimpl.cc everything works fine. It is only when I try to use the fred class in the jnitestimpl.cc that I get the exception. I am guessing that it is something to do with the name mangling and maybe compiler options but that is just a guess. ( libfred.so and libjnitest.so are in the current directory which is on the LD_LIBRARY_PATH )
    Any ideas? Any help would be greatly appreciated
    Many thanks

    Forget guys. I was being a complete and utter idiot!! It was compiler options. Forgot the -lfred when building the libjnitest.so

  • Is there a way to NOT play some songs in the Library while on Party Shuffle

    Is there a way I can tell my iTunes AND my iPod NOT to play certain songs when I am listening on Party Shuffle?
    For Example - I have a number of songs that I downloaded for the Holidays - the Genre is Holiday - and I don't want to listen to them during most of the year - can I tell iTunes AND my iPod NOT to play them when I have it on 'Party Shuffle' or when I am playing from the Library ?
    Thanks!
    Dell Dimension   Windows XP Pro   iTunes 6
    Dell Dimension   Windows XP Pro  

    Make a "smart playlist" and set the parameters as genres NOT Holiday
    and then in the Party Shuffle get Party Shuffle to play from that smart playlist and then Party Shuffle will not play your Holiday songs
    I hope this helps
    -TBird

  • 7.0.1 shared library/shuffle by album bug

    Has anyone encountered this issue?
    I have run into a very bizarre bug since upgrading to iTunes 7.0. It was not fixed in 7.0.1.
    I have a large iTunes library shared from my Power Mac G5. Our household has two Mac laptops (1 MB, 1 MBP) from which we play that shared music through various Airport Expresses. We mostly listen to classical music (i.e. multi-movement/track works), so I organize the music collection with the work name in the Album field and then Shuffle by Album within the classical playlist.
    Since upgrading to 7.0, the machine refuses to Shuffle by Album -- but only when playing from a playlist from a shared library. Instead, it will begin with the first album and play them in alphabetical order. Playing the same playlist, shuffled by album, locally on the sharing G5 works as expected. As I like to listen to my music in exactly this way this is a very irritating bug for me.
    Another related but less irritating bug: when playing from this same shared library set to "Shuffle by Album," hitting "Play" while nothing is playing will play the first album alphabetically in the list, no matter what is selected. If I want to play a different track I have to select it and then double-click it.
    Dual 1.8 G5, 15" CD MBP, white MB   Mac OS X (10.4.8)   iTunes 7.0.1

    I have also experienced this problem, but it has acted a little different.
    I have a large music library stored on an external hardrive (Lacie d2 Extreme) & have my iTunes playback settings for shuffle by album. I don't use playlists, I only like iTUnes to shuffle playback from my entire library.
    iTUnes will begin @ song 2 or 3 of the album, play a couple songs from the album & then move to another album without playing the 1st album in it's entirety.
    This is extremely annoying. Please help, anyone.

  • Delete from Party Shuffle deleted songs from music library

    I deleted about 40 songs from my Party Shuffle list, and for some reason, iTunes deleted the music entirely from my iTunes music library, and from the other playlists the music was on. The "undo" option is no longer available and the music is no longer on the clipboard. Unfortunately I do not remember which tracks were deleted, but some of the tracks that I burned from CD's no longer appear in the "iTunes Music" folder.

    If you hold alt when deleting a song, it will delete it from the playlist and from the library.
    iTunes moves the files into the trash but iTunes does not empty the trash.

  • My Party shuffle doesnt work; it only shows my library

    whenever i open iTunes i goto the party shuffle and see that it doesnt shuffle any of my songs and just lists them in ABC order. does anyone know how to make it go back to the way it was and have it shuffle&play the songs?

    Same problem here. In my case I upgraded Itunes and had to rename the prior version library to get my library back (Is that a bug that has become a feature?)
    I copied the entire party shuffle into a new playlist and that does work. The tracks stay in numbered order but with shuffle on, it shuffles according to the settings you have in Edit-preferences-playback and "smart shuffle"
      Windows XP  

  • Party Shuffle over Network

    Hello all,
    Sharing my music library over a network using Airtunes is great.
    I really dig using Party Shuffle on my main Mac but when sharing to my iMac iTunes doesn't allow me to use Party Shuffle, only the regular Shuffle option.
    Is there any way around this?
    Any help would help.
    Thanks!
    OP

    Count me in on this one. I logged in to check this and one other issue, both of which it appears are not yet available. Just to reiterate, I would like to see iTunes support:
    1) Party Shuffle capability for shared playlists
    2) Allow user to rate songs in shared playlists (permissions could be controlled on the serving library)
    It looks like I'm in the same situation as at least several other people are - I want to store and manage just one main library (in the basement, in my case), while creating "shell" iTunes libraries on other household computers (or possibly media servers in the future) that access the shared library in the basement. Party Shuffle is fantastic; it seems that it wouldn't be too hard to update iTunes to serve random songs per Smart Playlist rules to a requesting client. After all, it's already serving songs as it is. Likewise, I've loaded my entire CD collection, but have only rated maybe half of my music to date. I like my basement, but it sure would be nice if I could rate songs while I stream them over my family room stereo (I have a special smart playlist that only feeds me unrated songs - only 1566 songs to go...).
    HP Laptop Windows XP Pro Multiple machines (tower, laptop) trying to share one library effectively...
    HP Laptop    

  • Remote app on iPad2 not showing iTunes interface on ATV2 shared library

    I have an AppleTV 2 that's sharing an iTunes library via home sharing over Ethernet from a Mac Mini. Running Remote App on my iPhone 5S, I can control that library as expected. Running Remote App on my iPad2, however, I'm unable to see the main iTunes-like interface that lists songs, albums, artists, etc. on the shared library. While I can see the currently playing song at the top of the screen and have access to the Back, Pause, and Forward buttons, the main pane below that only shows the icons for Home Sharing and Using Gestures. Under Home Sharing, where it says "Tap the Apple TV button in the bottom left...," there's not Apple TV button, only "Devices." I can use the gestures interface in Remote App on the iPad2 to control playback, but I never see the main library interface. Any thoughts you have for remedying this would be really appreciated!

    Well the response I got to the above post was outstanding!
    Shall we put this in the bracket along with "If a tree falls in the forest with no one there to hear it, does it make a sound?"
    If anyone is wondering, for my party I ended up using my Mac as the server for the iTunes DJ. And I discovered that if more than 5-7 people try to get onto it, it crashes the whole system and the music stops. Glorious.

  • I am trying to move my itunes library from my old pc to my new imac, home sharing is on and I can see the shared library.  My problem is that when I check the shared library to import it to my imac I cannot import it.  Can anyone help me?

    I am trying to move my itunes library from my old pc to my new imac, home sharing is on and I can see the shared library.  My problem is that when I check the shared library to import it to my imac I cannot import it.  Can anyone help me?

    You need to transfer the iTunes Library from the most recent backup you made before the hard drive was replaced.
    You can't transfer the full iTunes Library from the iPad back to iTunes.
    There are third-party Windows applications that will transfer data from an iOS device, but they don't re-create the iTunes Library exactly as it was before.

  • Using the Remote App and playing iTunes from a shared Library

    I have a playlist set up in my main iTunes library on my iMac.  This is a shared library on my local network at home.  I can access and play the library remotely from my MacBook.  I want to move my MacBook outside with external speakers for a party.  I want to be able to access the shared library from the iMac inside the house from my MacBook and be able to control it with the Remote App.
    My problem is that when I use Remote and the MacBook outside (I've set up the iTunes passcode with that computer and my iPod) it will only recognize the library on that computer, even if I am logged in to the shared library and it is visible in the MacBook.  So basically, remote is doing what it is suppose to do in a normal situation, but I need it to recognize and play from the shared library.
    When I turn on home sharing on the iPod I can access all the libraries on the various macs in our house, but the music will only play out of that particular machines speakers.
    I don't have wireless speakers, so I can't think of another way to do this.  Is there?
    Thanks, Sandy

    Well, I've got it to work although not ideal. 
    1. On my main computer (iMac) I created the playlist that I want available to control at a party.
    2. I went to iTunes settings/Sharing and selected "Share selected playlists" and checked the playlist I made for a party.
    3. I Linked my iPod to MacBook (which is outside with external speakers) using the 4 digit code
    4. iPod, Home Sharing Off
    5. Select the Library on iPod
    6. Select "More" (bottom right of iPod)
    7. Select "Shared" from the list that appears
    8. Select the computer that has the shared library
    9. Select the playlist (or lists if you created others)
    This setting is allowing me to use my iPod "Remote App" to play an iTunes playlist (or the entire catalogue) from a shared library on my MacBook WITH the sound coming from my MacBook and NOT from my iMac where the original iTunes catalogue is located.
    Not sure if this is the easiest way, but it's working.

  • NT DLL to Solaris Shared Library;  C++ Exceptions

    I have written a "plugin" DLL for a third party product that runs on NT. In my plugin I use C++ exception handling and it works wonderfully :-)
    I am now trying to port my plugin so that it will work with the same third party product, but this time running on Solaris.
    I knew I was going to have to port my DLL to Solaris and so made sure I did not use any Win32 specific anything. My code compiles & links fine on Solaris. For the most part it even works correctly.
    The problem I have is that my code is not catching any of the exceptions it is throwing.
    Section 5.14 of the C++ Programming Guide says that for exception handling to work in a shared library, it must be loaded with the RTLD_GLOBAL flag passed to the dlopen() function used to load the shared library.
    Of course since the dlopen() function is in a third party product I have no way of knowing whether this parameter is being passed to the dlopen() function or not .. and more importantly I have no way of forcing it to be so.
    So ultimately I guess the question for the more experienced shared library writers is .. do you just not use C++ exception mechanism because you can not force your shared library to be opened with the proper parameter to dlopen() .. or is there something else I can do to enable C++ exceptions in my shared library.

    All works fine!...
    $ mkdir /tmp/xxx
    $ cat > dllfile.c
    $ cat > dlluser.c
    $ gcc -fPIC -c dllfile.c
    $ gcc -shared -W1,-soname,libdllfile.so.1 -o libdllfile.so dllfile.o
    $ gcc -o prog dlluser.c -ldl
    $ ls -l
    total 56
    -rw-r--r-- 1 xxxxxx users 80 &#1040;&#1087;&#1088; 8 17:04 dllfile.c
    -rw-r--r-- 1 xxxxxx users 908 &#1040;&#1087;&#1088; 8 17:15 dllfile.o
    -rw-r--r-- 1 xxxxxx users 368 &#1040;&#1087;&#1088; 8 17:03 dlluser.c
    -rwxr-xr-x 1 xxxxxx users 5260 &#1040;&#1087;&#1088; 8 17:15 libdllfile.so
    -rwxr-xr-x 1 xxxxxx users 6412 &#1040;&#1087;&#1088; 8 17:16 prog
    $
    $ file *
    dllfile.c:     c program text
    dllfile.o:     ELF 32-bit MSB relocatable SPARC Version 1
    dlluser.c:     c program text
    libdllfile.so:     ELF 32-bit MSB dynamic lib SPARC Version 1, dynamically linked, not stripped
    prog:          ELF 32-bit MSB executable SPARC Version 1, dynamically linked, not stripped
    $
    $ su
    Password:
    # mkdir -p /root/shared_library/
    # cp libdllfile.so /root/shared_library/
    # exit
    $ ./prog
    With the changes
    library loaded
    Inside function
    $

Maybe you are looking for