How can I "add to library" other people's music

I recently had some random person pop up in my itunes menu. I tried to select some songs and "add to library" some of his music, but it didn't do anything. Also, how do share random people's libraries like that? Thanks

You can't. Copying from another person's computer would in most cases be a copyright violation (and definitely when it's someone you don't know) , so it's not possible in iTunes.
As to why you're seeing those libraries, you're seeing the shared iTunes library from some other computer on your local network. If you don't want to see them any more, go into the iTunes Sharing preference and turn off "look for shared music". If you don't want to similarly be sharing your iTunes library with other computers, make sure that the "Share My Music" option is unchecked.

Similar Messages

  • How can I add a library of flash movies to my site?

    I posted this same question on the Dreamweaver forum and a suggestion was made that I try over here for help, so please excuse the duplicate question.
    How can I add a library of flash movies to my site?
    Hey there everyone and thanks for reading my question.
    I have a library of flash movies (specifically a library of maps) and when the map movies are run in Flash they call each other just fine (i.e. the USA map will load the Georgia map when Georgia is clicked on the USA map, etc etc etc for each state).
    HOWEVER, when I insert the USA map in one of my site pages (I'm working on the site using Dreamweaver CS4) the USA map page will load, but when a state is clicked the area on the page for the map goes blank and the state map does not load.
    Short of coding a specific path in each of my state maps (in the Flash editor) is there a way to tell Dreamweaver there is a library of maps, look there for the sub-map?
    and if I do have to code the path to the map, can I code a relative path rather than a specific URL address for the maps?
    I know this is probably one of those simple things, but I'm not seeing it (can you tell I'm new at this??)
    Thanks in advance for any help!
    Frances

    Hey again,
    Thanks for the helpful suggestions. Everyone's comments got me to thinking about what the path was in the calls from the maps.
    here is what finally worked:
    on (release)
    loadMovie("../FlashIMapDownloads/georgia.swf", 0);  
    this script code is in the action script for the "georgia" button of my main map - a US Map. (I hope I'm describing all this correctly).
    I'll post this same info in the Dreamweaver forum too.
    Thanks again!
    Frances

  • How can I add vocal effects other than the 9 Voice options? (I can't shift pitch)

    Hello!
    I am making the switch from PC and am just trying to lower the pitch of a vocal track by at least an octave; I just got a MBP last week and am running GB 10.0.2. I can't find any info on similar problems that is helpful; most solutions I've come across show that when the track is selected, there should be a pitch shift bar with a sliding button, but I do not have that. I read a lot of people saying something about the track being purple or not, but I'm not sure if that's relative to the version I have or if that has anything to do with what's happening. When I select the track, in the little area toward the lower left when "Track" is selected, (what is that space called?) where the pitch shift option is for other people, I only have a sliding bar for Pitch Correction, and a checkbox for Limit to Key and Enable Flex. When "Region" is selected, it just shows the name of the region and there are no options. Another question I have is how to change the pitch of midi sounds? When the keyboard is open on the screen I have tried moving the little octave shifter, but it assigns the sounds that are on the keyboard at different locations if I move it, so it changes the sound completely. A couple of them shift one octave up or down, but there are no actual controls..
    I'm mostly just dabbling with EDM/trap/Hiphop tracks at the moment, but am confused about whether or not there are other vocal effects and controls other than the preset Voice options in the instrument area (Bright vocal, Classic vocal, compressed vocal, Edge vocal, etc.)? I'm not going to be using GB forever, but are there not any other options like for current rap/trap production (phaser, balance, EQ, auto tune, choppers, actual voice altering effects, etc.) [preferably without buying extra things]? And not only vocals, but editing effects for all sounds.. If so, how do I get to them? And if not I know I should at least be able to lower or raise the pitch of a vocal recording... There are some pretty legit electronic instruments that are exactly the kind of sound I'm going for so I was surprised to not see an equally simple to access vocal effects board or something. Any additional tips for a n00b electronic music producer would also be greatly appreciated! Thank you for any help!

    In GarageBand 10 you can no longer change a track with an audio file to a "purple" audio recording, as it has been possible in GarageBand '11.
    Even, if you can make the transpose slider visible by enlarging the the track editor panel, the slider will be disabled.
    What you can do however, is either add an AuPItch filter  from the audioUnit panel or to convert your audio file to loop and to admit from the Loop Browser.
    In the new GarageBand you add the AuPitch filter from the Smart Controls.
    Enlarge the SmartControl panel by dragging the dividing line upwards, until you see the Audio Units brick, then add an Apple Audio Unit and set it to AuPitch.
    Or create a loop from the audio file. Select the region in the track and use the command "File: Add region to Loop library". You need to trim the filet an exact number of measures.
    Set the current key and tempo, name the loop, and save the loop. Make sure, that one-shot loop is not enabled.
    Now add it from the loop browser to a new track and delete your old track. The search field in the Loop browser will help you to find the loop quickly.
    You will be able to transpose the sample  like any regular loop.

  • How can I add a library asset to a specific master spread?

    Hello! I am new to the forums and rather new to javascript as it relates to indesign so I apologize if this is rudimentary.
    I am building a script that automates new document creation for our company and have run into a problem with placing library assets.
    I want to add a library asset to a specific master page by name, but I cannot find a way to do this.
    I can get assets to place into my document with this:
                var t = app.libraries.item(0);
                var libTapeStrip= t.assets.itemByName('Tape Strip');
                var myTapeStrip = libTapeStrip.placeAsset(myDocument);
    However, the asset is being placed on a master spread that I had previously added to the document. It seems to be the active or front most spread because when the script is complete and I create a new window that spread is what is displayed with the asset on it.
    I would like to place the asset on another master spread, but placeAsset() only accepts documents and text boxes. I have also looked on a way to bring the master spread I want to the front, but cannot find this either.
    If anyone can lead me in the right direction I would appreciate it!!
    Thanks,
    Ben

    @Benjamin – You could make the spread (or the page) where you want to place that asset the "activeSpread" or "activePage", place the asset and then go back to the old active one.
    Something like this:
    (Here I assume that you want to place your asset on a master spread named "A-Master" and the asset is the first in the one and only library file that is open.)
    var myDocument = app.documents[0];
    var myMaster = app.documents[0].masterSpreads.itemByName("A-Master");
    var myLibrary = app.libraries[0];
    var myAsset = myLibrary.assets[0];
    var myOLDActiveSpread = myDocument.windows[0].activeSpread;
    myDocument.windows[0].activeSpread = myMaster;
    myAsset.placeAsset(myDocument);
    myDocument.windows[0].activeSpread = myOLDActiveSpread;
    Uwe
    Message was edited by: Laubender
    Message was edited by: Laubender [Nothing edited in the code.]

  • I updated my iPad to 5.0 but not my iPhone 4 so how can u send iMessages to other people?

    So how can u send iMessages to people if my iPad is already updated which I really only wanted to update my iPad since I don't want to really mess up my iPhone 4? Or can u still send iMessages from the iPad to my iPhone possibly?

    iPhone User Guide (For iOS 5.0 Software)
    iPad User Guide (For iOS 5.0 Software)
    iOS: About Messages

  • How can i add a library path for a .dll library?

    hi
    i used a native method (sndPlaySound) in a dll file (winmm.dll).
    then i complided my source successfuly , but in runtime i recieve
    this Exception :
    Exception in thread "main" java.lang.UnsatisfiedLinkError: no winmm.dll in java.
    library.path
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1312)
    at java.lang.Runtime.loadLibrary0(Runtime.java:749)
    at java.lang.System.loadLibrary(System.java:820)
    at JNItest.<clinit>(JNItest.java:9)
    i know i must add the library path to the java.library.path but
    i don't find "java.library.path" and don't know what i must to do.
    i am in windows 98 and don't use any IDE (just jdk 1.3.1).
    thank you very much.

    Windows uses the current PATH enviroment variable to search for dlls.
    Windows searches for dlls in the Current directory , the application directory (if the current is not the same) , the PATH variable, then the system directories (Windows, Windows/system)
    It's different in every OS, but if you only care about windows...
    Also try searching on msdn.microsoft.com, they might have more information there.

  • How can I add graphics and other items to the content manager in PSE 10?

    I am hoping to add some jpg and png files to my content manager in PSE 10 for easy access, but can't figure out how.  Would appreciate any help so I can start scrapbooking with my new software!

    Steps from other forum post with folder locations translated to Mac
    II. Place the files in the appropriate directory.
    Copy those three files into this directory:
    "HD/Library/Application Support/Adobe/Photoshop Elements/10.0/Photo Creations/backgrounds"
    III. Have PSE recognize the new files.
    Browse to this directory:
    "HD/Library/Application Support/Adobe/Photoshop Elements/10.0/Locale/en_US"
    and delete or rename this file:
    MediaDatabase.db3
    Browse to this directory:
    "HD/Library/Application Support/Adobe/Photoshop Elements/10.0"
    and delete or rename this file:
    ThumbDatabase.db3

  • How can i add a library on an ipa file ?

    the solution from www.mocana.com  allows for maximum user flexibility and native experience, while not risking corporate intellectual property.
    * Increase productivity by fully supporting bring your own device (BYOD)
    * Embrace Bring Your Own Device (BYOD) without additional IT burden or privacy issues
    * Use best-in-class, military-grade security methods by a company known for its security legacy
    * Highest level of security protecting corporate data
    * No programmatic effort to secure the apps -  MAP is automated and can take prior written apps and secure them in under 5 seconds
    can someone tell me how this works?

    it works ... but i don't know how ... example :
    the solution from www.mocana.com  allows for maximum user flexibility and native experience, while not risking corporate intellectual property.
    * Increase productivity by fully supporting bring your own device (BYOD)
    * Embrace Bring Your Own Device (BYOD) without additional IT burden or privacy issues
    * Use best-in-class, military-grade security methods by a company known for its security legacy
    * Highest level of security protecting corporate data
    * No programmatic effort to secure the apps -  MAP is automated and can take prior written apps and secure them in under 5 seconds
    i hope someone can tell me how....

  • How can I add new user in sharepoint list column (people or group) or in sharepoint group using loginName only

    Hi
    If I have only login name of any user like - "Donamin\login_name".
    If this user is not present in sharepoint portal.
    How can I add this user to people or group column of any list or in any  sharepoint group with permission?

    hi
    got the issue
    it should be  like this -
    string userloginname = @"DOMAIN001\vyankatesh_mujumdar"
    using (SPSite oSpSite = new SPSite(site.ID))
    using (SPWeb web = site.OpenWeb())
    try
    { SPList lst = web.Lists["TestList"];
    string userloginname = @"DOMAIN001\vyankatesh_mujumdar";
    web.EnsureUser(userloginname);
    SPUser oSPUser = web.SiteUsers[userloginname];
    SPFieldUserValue FieldValueName = new SPFieldUserValue(web, oSPUser.ID, oSPUser.LoginName);
    SPListItem oSPListItem = lst.Items.Add();
    oSPListItem["Title"] = userloginname;
    oSPListItem["People"] = FieldValueName;
    oSPListItem.Update();
    catch (Exception ex)
    ExceptionManager.LogErrorInFile("--------Exception -------", bIsLogEnabled);
    ExceptionManager.LogErrorInFile(ex.Message, bIsLogEnabled);
    ExceptionManager.LogErrorInFile(ex.Source, bIsLogEnabled);
    ExceptionManager.LogErrorInFile(ex.StackTrace, bIsLogEnabled);
    ExceptionManager.LogErrorInFile("-------------------------------------------------------", bIsLogEnabled);
    Thanks for all for the reply

  • How can I add music to my itunes library from my other ipods?

    How can I add music to my itunes library from my other ipods?

    The sync is one way - computer to ipod.  The exception is itunes purchases:  File>Devices>Transfer Purchases

  • HT1589 Can I add apps in other family members library to mine?

    I have an iphone
    Daughter has an ipod
    - - both use the same itunes account for store/music purchases within each device.
    When using the Computer/iTunes
    - - for simplicity sake I want to make a new Library for my daughters iPod, she just needs to see her simple song collection, not my EXTENSIVE one.
    I would like her to be able to access my App library some how, since it is not as crazy/large.
    what is the BEST approach for this ?
    God Bless and Thanks in Advance !

    When I'm listening mi iTunes, I'm able to see other
    people libraries, and I wondering if its possible to
    add some of their songs to my library? If this is
    possible, how can I add it?
    No that would be stealing. You do not own the rights to that music.

  • How can i add my itunes library to my iphone?

    how can I add my itunes library to my iphone. when i sync no music is added?

    http://manuals.info.apple.com/en_US/iphone_user_guide.pdf

  • HT4059 how can i add books to the library on my iphone 4s

    How can I add books to the library on my 4s?

    If the photos that you are wanting to delete are also in your Camera Roll then you can delete them from the camera roll

  • How can I add my own files to the TV Shows Library instead of the Movie Library?

    I have my own TV Shows in m4v format.  I can drag and drop the TV Shows into the iTunes Movie Library.  How can I add my files to the TV Shows Library?  Can I group them by show in the TV Shows Library?

    Select the files in iTunes.
    Right click - get info.
    Select the Options tab and set Media kind to TV Show.
    Better yet, use something like MetaZ to tag the files before adding them to iTunes.
    -> http://www.macupdate.com/app/mac/36029/metaz

  • My computer where my itunes library is stored is no longer accessible.  how can i add songs to my ipod nano without losing the songs already on it.

    The computer where i have my itunes library is no longer accessible.  How can I add new songs to my  Ipod nano without losing the song already on it?

    You will need that library copied from the old computer. If not, then you can take a look at this in getting 3rd party software to recover your library from the iPod. Syncing to a "New" Computer or replacing a "crashed" Hard Drive

Maybe you are looking for

  • How to display barcode in ABAP report

    Hi Experts, I want to display the barcode of process order number in ABAP report without using SAP script or smart form. Please let me know how is it possible to display and print the barcode in the ABAP report. Thanks in advance.

  • Making a backup of my mac os x so complicated?

    Ok, this is getting ridiculous. For years I make copies if files and folders and save them to my external hard drive. Easy, uncomplicated, simple. Now I want to use super duper and am finding this horrendous. The following text in their pdf seems utt

  • How can I modify this code to display an image in an applet?

    Sorry, I'm almost positive this is absolutely incorrect, but here is what I have so far: import java.awt.*; import java.awt.event.*; import java.awt.image.*; import java.io.*; import javax.imageio.*; import javax.swing.*; public class Blackberry exte

  • Removed Nouveau, installed Nvidia, black login screen

    Hi there! Seems like I was just here yesterday...  But seriously, it's coming together. Today I hooked up my second monitor and tried to get the "one big monitor" effect with noveau, but it wasn't recognizing my setup.  I've had success with installi

  • Help with Report Script please :(

    Hi, I'm trying to write a report script with a slight calculation and would really appreciate some help. Ideally I want to create a report where I only get the Account and Value. I select all my members but I need a calculation on the Entity dimensio