Sharing Individual CD files

Given that my son is a teenager, this does not happen very often, but here goes:
My son has his own log in on our iMac and maintains his own iTunes there. This morning he asked if I had already burned a bunch of CDs that we have from a single artist. He didn't want to spend the time burning them into his iTunes and wanted me to just transfer them.
I used to be able to do this just by copying the files onto our external hard drive and then having him pick them up there. I discovered that I can't see the individual files any more.
I admit it has been literally years since I have done this, but I used to do it when he was much younger and wanted iTunes songs, but was too young to do it himself. I would buy them on my account and then just put them on his iTunes as they weren't anything I wanted.
Now I realize the functionality may have been removed to keep people from pirating stuff they didn't buy. Is this something that has been removed or is there some other way to move the files from my iTunes to his?

I used to use the external drive simply because it is a "no user zone" so I didn't have to worry about public file drops. In the past, a bug caused the files to be temporarily unavailable--I can't remember the exact explanation. As I always have an external drive for backups, it was easier to just drop them there rather than take the chance I would have to reboot to see them. I am sure that bug is resolved by now, but it was annoying at the time.
My problem was I could not see the individual files. It seems that they now are under iTunes Media. They used to be under music. I just figured this out before replying. As I said it has been years since I have done this.
Sorry for the churn, but when your kids wants your entire Led Zepplin collection on his iPod, I had to get it to him.

Similar Messages

  • How can I Create an individual MD5 file for each folder in a main directory?

    The specs for a file delivery I'm making require an individual MD5 file per folder, with the contents of that folder being inside the MD5 file. Such as:
    DAY_01 (MAIN FOLDER)
    A01
    -(files 1-1000)
    -md5 for files 1-1000
    A02
    -files 1001-2000
    -md5 for files 1001-2000
    And so on. Is there a script or program that can make those MD5 files automatically or do I hace to go and do each one individually? Thanks

    I don't know of any pre-existing solution to your question, but it isn't hard to write one:
    set theFolder to (choose folder)
    tell application "System Events"
              set subfolders to every folder of theFolder
              repeat with eachFolder in subfolders
                        set fPath to (POSIX path of eachFolder)
                        set fName to name of eachFolder
                        set md5Filename to quoted form of (fName & ".md5")
                        do shell script "cd " & quoted form of fPath & "; /sbin/md5 * > " & md5Filename
              end repeat
    end tell
    The idea here is that it asks for a folder to process. It then grabs a list of all the folders inside that folder (subfolders), then for each subfolder it extracts its POSIX path and the folder name, then it builds a shell command that actually goes to each folder, runs the md5 command (passing in all files), writing the output to a .md5 file named according to the folder.

  • Is it possible to link and update external files in a Indesign document when sharing the Indesign file in Creative Cloud with multiple users?

    I am new to Creative Cloud, but have been using Adobe software for many years.
    Now we are considering sharing an Indesign file with my project group using CC.
    The Indesign file contains links to external files (one Illustrator and multiple .txt files); and we export the approved version to an Hi-Res PDF.
    These .txt files are currently hosted on our internal server but have not been linked directly: we first copy them over to local desktop and update the links in Indesign before creating a new PDF. 
    Since these file can be update by different people we would like to keep them outside the Indesign and Illustrator files.
    Is it still possible with CC to link directly to the files on our server in Indesign and see if there have been updated?
    Or can they also be stored in the CC cloud? Or is there another method?
    Thanks in advance for any help or suggestions
    Ronald

    This will work if you all use the file syncing of the Creative Cloud desktop application and then you use the Collaborate option for the folder containing all the files. Then it will work on each of your desktops.
    Links to files will not work in the browser when viewing the InDesign document from https://creative.adobe.com/files.

  • How do I move music folders with individual music files from windows 7 to itunes folder so that they are recognizable and playble?

    How do I move music folders with individual music files from windows 7 to the itunes library so the files are usable in itunes?

    All of the following programs should work with Vista.
    Yamipod. This is a free program that transfers music from iPod back to the computer. However, it does not transfer playcounts/ratings etc.
    Another free program is Pod Player.
    SharePod is also freeware.

  • Have turned Home sharing on in "File", but if I try choose the sharing tab in "Edit", "Preferences", It says Bonjour needs to be activated.  Where do I do this?

    I'm trying to share my libraries on different PCs.  I have turned Home sharing on in "File", but if I try choose the sharing tab in "Edit", "Preferences", It says Bonjour needs to be activated.  Where do I do this?

    Try updating iTunes on your PC. Hopefully it'll re-install or fix the Bonjour issue.

  • How do I create individual xml files from the parsed data output of a xml file?

    I have written a program (DOM Parser) that parses data from a XMl File. I would like to create an individual file with the corresponding name for each set of data parsed from the xml document. If the parsed output is Single, Double, Triple, I would like to create an individual xml file (Single.xml, Double.xml, Triple.xml)with those corresponding names. How do I create the xml files and give each file the name of my parsed data output? Thanks in advance for your help.
    import java.io.IOException;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.ParserConfigurationException;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    import org.w3c.dom.Node;
    import org.w3c.dom.NodeList;
    import org.xml.sax.SAXException;
    public class MyDomParser {
      public static void main(String[] args) {
      DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
      try {
      DocumentBuilder builder = factory.newDocumentBuilder();
      Document doc = builder.parse("ENtemplate.xml");
      doc.normalize();
      NodeList rootNodes = doc.getElementsByTagName("templates");
      Node rootNode = rootNodes.item(0);
      Element rootElement = (Element) rootNode;
      NodeList templateList = rootElement.getElementsByTagName("template");
      for(int i=0; i < templateList.getLength(); i++) {
      Node theTemplate = templateList.item(i);
      Element templateElement = (Element) theTemplate;
      System.out.println("Template" + ": " +templateElement.getAttribute("name")+ ".xml");
      } catch (ParserConfigurationException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
      } catch (SAXException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
      } catch (IOException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();

    Ive posted the new code but now I'm getting a FileAlreadyExistException error. How do I handle this exception error correctly in my code?
    import java.io.IOException;
    import java.nio.file.FileAlreadyExistsException;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.ParserConfigurationException;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    import org.w3c.dom.Node;
    import org.w3c.dom.NodeList;
    import org.xml.sax.SAXException;
    public class MyDomParser {
      public static void main(String[] args) {
      DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
      try {
      DocumentBuilder builder = factory.newDocumentBuilder();
      Document doc = builder.parse("ENtemplate.xml");
      doc.normalize();
      NodeList rootNodes = doc.getElementsByTagName("templates");
      Node rootNode = rootNodes.item(0);
      Element rootElement = (Element) rootNode;
      NodeList templateList = rootElement.getElementsByTagName("template");
      for(int i=0; i < templateList.getLength(); i++) {
      Node theTemplate = templateList.item(i);
      Element templateElement = (Element) theTemplate;
      System.out.println(templateElement.getAttribute("name")+ ".xml");
      for(int i=0; i < templateList.getLength(); i++) {
      Node theTemplate = templateList.item(i);
      Element templateElement = (Element) theTemplate;
      String fileName = templateElement.getAttribute("name") + ".xml";
      Files.createFile(Paths.get(fileName));
      System.out.println("File" + ":" + fileName + ".xml created");
      } catch (ParserConfigurationException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
      } catch (SAXException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
      } catch (IOException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();

  • Payslips to be converted into individual PDF file&sent to email of employee

    Dear Friends,
    My client wants that the Payslips generated by Transaction- PC00_M40_CEDT, to be converted into separate individual PDF files based on Personnel Numbers, and sent to their Individual Email Ids as maintained in Infotype - 0105.
    There should be no printing of payslips from hereon at the client.
    Need some help and guidance, regarding the details for it. Where to start and what needs to be implemented to get the above required objective. We are using Z layouts for Remuneration statements.
    Thanks & Regards,
    Sunny

    Hi Sunny,
          Please make use of program RSTXPDFT4 which converts list output to PDF 
          format.  You need to give spool number as input parameter which you can get 
          from SP01 transaction.
          This doesn't fulfill your exact requirement but you can achieve conversion of
          output to PDF format.
          Reward points if found useful.
    Best Regards,
    Krishnan.

  • Payslips to be converted into individual PDF file & sent to email of emp

    Dear Friends,
    My client wants that the Payslips generated by Transaction- PC00_M40_CEDT, to be converted into separate individual PDF files based on Personnel Numbers, and sent to their Individual Email Ids as maintained in Infotype - 0105.
    There should be no printing of payslips from hereon at the client.
    Need some help and guidance, regarding the details for it. Where to start and what needs to be implemented to get the above required objective. We are using Z layouts for Remuneration statements.
    Thanks & Regards,
    Sunny

    Hi Sunny,
    you don't have to implement or be using ESS to take advantage of its features.
    Take a look at the code that generate the ESS payslip, this contains all you need to be able to write a program to generate a PDF payslip per employee. There is no need to get SCOT or Adobe Acrobat to generate the PDF - there exist standard SAP function modules that can do this.
    From this it is then a simple step to enhance the program to generate an email and attach the payslip.
    I have written a program to do exactly this in the past, so I know that it is possible. I will not send you the code for the program, please do not ask.
    However, it is possible and SAP have already done the greatest part of the work for you by building the ESS code - take advantage of it!
    Hope this helps,
    Chris

  • Can I back up individual image files to a slideshow DVD created in Premiere Elements 4.0?

    I created a Premiere Elements 4.0 Project including 3 separate photo slideshows. The slideshows were created in Photoshop Elements 6.0 and imported into my Premiere Elements project. I was hoping that when burning the project to DVD, my image files would also be individually backed up.
    When I give the DVD to family members I would like them to have access to the image files so they can print or use them individually. I would like to do this in 1 single DVD rather than giving them a DVD with the slideshows and a DVD with the image files. I was able to do this with a previous DVD authoring program I was using, but I cannot figure it out with Premiere Elements 4.0.
    Any ideas if this is do-able with Premiere Elements 4? (I am running Windows Vista Home premium SP1 - 64bit - 3GB RAM)

    Thanks for your help. I tried this. I burned the project to a folder (4.7GB) then to that folder I added a folder with my photos. So in the folder there was "Photos", "OpenDVD" and "Video_TS". I had 3 separate folders within the "Photos" folder, to keep the 3 slideshow photos grouped.
    I burned the entire folder to a DVD using my burn tool. I don't even know the name of the software I used, but I think it was just the Toshiba burn tool. I dragged and dropped the folder into my new disc folder, then at the top of my screen clicked "burn to disc", I named the disc and chose from the formating options "Mastered: disc can be read on other computers and some CD/DVD... no new data can be added..."
    Once burned I checked it on my DVD player and now it recognizes only the individual jpg files so it does a generic slideshow of these images rather than my slideshow project. (no menu, music...) Putting the disc in my computer I could access either the files or the slideshow project, but not on my home DVD player.
    I burned the folders to 2 separate discs, once dragging the whole folder to the disc and once opening the folder and dragging only the individual folders to the disc.
    Please tell me what I'm doing wrong. thanks.

  • Where is the Application Sharing defaulttrace.trc file located?

    Hi,
    In a help document it says this:
    a.      Set the Application Sharing Server trace file (defaultTrace.trc) to severity info and try to start a new session.
    but where is the Application Sharing file located? or it means the J2EE defaultTrace file?
    Thanx in Advanced!
    Kind Regards,
    Gerardo J

    Hi Gerardo,
    Collaboration uses the logging mechanisms of the J2EE Engine. Therefore it is the defaultTrace.trc  under .../usr/sap/<SID>/Jxx/j2ee/cluster/serverX/log/ .
    Kind regards
    Klaus

  • Access to individual photo files in Finder

    I recently updated to iLife 08. I've noticed a couple of things but the most confusing is that when I go through finder>pictures>Library.iPhoto instead of having "roll" folders like before, I now only see the iPhoto icon (the sunset pic to be exact). If I double click that icon, it takes me to iPhoto (if open already) or opens iPhoto.
    In prior versions, I was able to navigate to individual picture files in order to email or do something else with them. Now I can do it. Am I missing something or has Apple changed stuff up?
    Also, I notice that I delete files through the application but they are still on my drive.
    Lastly, I make edits through iPhoto, for instance, red-eye or crop and then in screensaver mode (or when I upload to a photo site) the unedited pic will show up. Concerned I'm clogging up my HD with multiple copies of things.
    any help would be great. Huge Apple fan but a little clueless in the architecture at times

    +I recently updated to iLife 08. I've noticed a couple of things but the most confusing is that when I go through finder>pictures>Library.iPhoto instead of having "roll" folders like before, I now only see the iPhoto icon (the sunset pic to be exact). If I double click that icon, it takes me to iPhoto (if open already) or opens iPhoto.+
    +In prior versions, I was able to navigate to individual picture files in order to email or do something else with them. Now I can do it. Am I missing something or has Apple changed stuff up?+
    this question is ask about every 10 questions -- for a complete discussion see TD's answer - http://discussions.apple.com/thread.jspa?threadID=1126400&tstart=15
    +Lastly, I make edits through iPhoto, for instance, red-eye or crop and then in screensaver mode (or when I upload to a photo site) the unedited pic will show up. Concerned I'm clogging up my HD with multiple copies of things.+
    There is (I believe) a bug with editing - you might want to rerort this to Apple -- iPhoto menu ==> Provide iPhoto Feedback - sometimes edits do not get saved. I hope Apple will address this soon. In any case one of the great things about iPhoto is that you do NOT clog up your hard drive with multiple copies - the original is always there and you can always go back to it and edits save only the edit and apply the edits (most of the time) when you view the edited photo - and one of the big changes to iPhoto 7.n.m is that edits appearently always go back to the original so multiple edits do not degrate the photo quality
    I think you will like it
    Larry Nebel

  • Sharing My Master File in FCPX

    I am working on Final Cut Pro 10.1.3, although my problem has been reoccurring through several versions.  Although my original footage (1920x1080) appears clear and without any fragmenting within the timeline, when I share the footage as a master file, the .mov is very fragmented. I have rearranged my settings before sharing the master file numerous times, but cannot find any outcome that is sufficient.  I have an example of this fragmentation posted as an unlisted video on YouTube, http://youtu.be/0-c2Pe3ABWs When this video, Clip #56 (FCPX), is viewed in 1080p, this fragmentation is very noticeable.
    As a test, I placed the same footage in iMovie and exported the footage.  The exported .mp4 file does not show any fragmenting. I have an example of what I would like it to look like in FCPX as an unlisted video on YouTube, http://youtu.be/YqqWkttAyHM When this video, Clip #56 (iMovie), is viewed in 1080p, there is no fragmentation.
    I would like to know if the exported clip in Final Cut Pro can possess the same quality as that exported clip in iMovie.  There has to be a way. If anyone has any insight, please help me with this matter.
    Sincerely
    FLCurrent

    It's not a playback problem. You can see it clearly if you download the 1080p HD version, which is actually 1080i.
    Maybe you'll see the image.

  • What determines the location of the shared services log files

    I've just completed an install and configuration of Shared Services 9.2.1. The shared services log files, SharedServices_Security.log, SharedServices_Admin.log, etc., are being written to the C:\WINDOWS\system32\null\logs\SharedServices9 path. These files should be written to the Tomcat application folders in the Shared Services home, CSS_HOME, folder. e.g. d:\hyperion\sharedservices\9.2\appserver\installedapps\tomcat\5.0.28. This is according to the Shared Services installation documentation.
    Is there any way to get these log files written to the d: drive? The following references sharedservices.logdir from the hsslogger.properties file but I don't see where a value is set that I can change.
    log4j.appender.FILE.File=${sharedservices.logdir}${file.separator}SharedServices_Security.log
    Thanks,
    Tom

    Hi there!
    Are you looking for the AOM log file?
    By default it´s located at:
    SIEBEL_ROOT\ENTERPRISE\SIEBEL_SERVER\log
    If you can´t find the AOM log files here, try to check the "Log directory" server parameter value.
    Best regards,
    João Paulo

  • Some shared paths in file /global/nfs/SUNW.nfs/dfstab.nfs-res are invalid

    Hello,
    I try to configure a NFS service in a SC 3.1 cluster environment, but this is impossible as the resource is not existing on the secondary node.
    I'm sure this is some kind of mis-configuration. I read the docs, but still don't know why.
    +/opt/ppark/gateway/logs+ should be the NFS share, whereas a defined RG (ppark-rg) contains the NFS share.
    Another requirement: the NFS resource should be a member of this RG (ppark-rg).
    My steps were as follows:
    1. define the RG.
    # scrgadm -a -g ppark-rg -h pixtest1,pixtest22. define the LogicalHostname -
    # scrgadm -a -L -l ppark-lh -g ppark-rg1. register the agent -
    # scrgadm -a -t SUNW.nfs2. add HAS+
    # scrgadm -a -t SUNW.HAStoragePlus3. add the HAS+ Resource
    # scrgadm -a -j ppark-stor-res -t SUNW.HAStoragePlus -g ppark-rg -x FilesystemMountpoints=/opt/ppark -x AffinityOn=true4. now, the RG can be brought online -
    # scswitch -Z -g ppark-rgHere is the NFS part:
    1. making a administrative directory on both nodes -
    # mkdir -p /global/nfs/SUNW.nfs2. define the share in /global/nfs/SUNW.nfs/dfstab.nfs-res on both nodes -
    # share -F nfs -o rw,anon=0 /opt/ppark/gateway/logs3. define the NFS resource
    # scrgadm -a -g ppark-rg -j nfs-res -t nfs -y Network_resources_used=ppark-lh
    pixtest2 - Some shared paths in file /global/nfs/SUNW.nfs/dfstab.nfs-res are invalid.
    VALIDATE on resource nfs-res, resource group ppark-rg, exited with non-zero exit status.
    Validation of resource nfs-res in resource group ppark-rg on node pixtest2 failed.and of course the resource /opt/ppark/gateway/logs is invalid!
    According to the syslog on the secondary node the share is not existing - but how should it? It can be only mounted on one node at a time.
    Jun 24 13:39:31 pixtest2 Cluster.RGM.rgmd: [ID 707948 daemon.notice] launching method <nfs_validate> for resource <nfs-res>, resource group <ppark-rg>, timeout <300> seconds
    Jun 24 13:39:31 pixtest2 SC[SUNW.nfs:3.1,ppark-rg,nfs-res,nfs_validate]: [ID 382252 daemon.error] Share path /opt/ppark/gateway/logs: file system /opt/ppark is not mounted.
    Jun 24 13:39:31 pixtest2 SC[SUNW.nfs:3.1,ppark-rg,nfs-res,nfs_validate]: [ID 792295 daemon.error] Some shared paths in file /global/nfs/SUNW.nfs/dfstab.nfs-res are invalid.
    Jun 24 13:39:31 pixtest2 Cluster.RGM.rgmd: [ID 699104 daemon.error] VALIDATE failed on resource <nfs-res>, resource group <ppark-rg>, time used: 0% of timeout <300, seconds>How do I prevent this?
    Many thanks for some input.
    -- Nick

    You need to explicitly set the resource dependency to the SUNW.HAStoragePlus resource for the SUNW.nfs resource, like:
    scrgadm -a -g ppark-rg -j nfs-res -t nfs -y Network_resources_used=ppark-lh -y Resource_dependencies=ppark-stor-resGreets
    Thorsten

  • Recognizing individual media files not the Folders

    I am using the Trial Version of FCPX. Yesterday it recognized the FOLDERS in Finder and imported using them for Keywords. Today, it only sees individual media files in the top level MOVIES folder. There are many folders inside my MOVIES folder, but it no longer sees them, and when I try to import, it loads ALL of my media files one by one, taking forever. Anyone see this behaviour? Thanks, Deb
    Message was edited by: Deb

    This file is in my own Folder Structure in Finder.  I imported months ago from a camera.  Attached is a screen shot of this structure.  When I used FCPX yesterday, it saw this structure, but today, only the individual files inside the top folder MOVIES.
    I have just booted into safe mode, repaired disk permissions and now will open FCPX again, to see if I've fixed any of this. 
    I will also uncheck copy in my preferences and see if this also helps.

Maybe you are looking for