Individual disc titles in multiple CD sets

Some multiple-disc CD box sets have titles for each of the discs they contain. For example, in Loudon Wainwright III's four-disc "40 Odd Years" collection the first disc is named "1969-1983" and the fourth is "Rare & Unreleased." Is there a way to title the individual discs without having them appear as separate albums?

Thanks, but that's not the problem I'm having: I want to keep the set together AND keep the (sub-)titles of the individual discs within that set. So, for example the "40 Odd Years" discs are:
CD1: 1969-1983
CD2: 1984-1995
CD3: 1996-2010
CD4: Rare & Unreleased

Similar Messages

  • How do I set individual sound alerts for multiple email accounts?

    How do I set individual sound alerts for multiple email accounts?

    Here: http://www.guidingtech.com/15275/get-different-notifications-per-mail-account-io s-6/
    Long and short of it, the settings can be individually changed under Notifications. Select Mail and then the account you want to change the sound to.

  • How Data Integrator supports multiple character sets in a single ETL transaction

    <p>When using Data Integrator (DI) to process a mix of multi-byte and single-byte data, it is recommended that you use UTF-8 for the job server codepage. You can, however, use different codepages for the individual datastores.</p><p>Imagine this situation : Great Big Company Inc. wants to create a global customer database. To do this, Great Big Company Inc. must read from a database of US customers, and a database of Korean customers. Great Big Company Inc. then wants to load both sets of customers into a single database.</p><p>Can DI manage these requirements? Of course. The codepage is the thing.</p>

    I've never seen this used the way you are using it. In my experience the only way to do this would be to execute a single SQL statement that returns multiple result sets - you are trying to append two SQL statements.
    You could define an in-line procedure wrapping your two select statements, or you could define a stored procedure to do the same thing. Then (either way) use CallableStatement to execute the call to the procedure.

  • Matching across multiple character sets

    Would like to know whether anyone has attempted matching across multiple character sets, for example, between English and Japanese: what are the pitfalls to avoid, what are the best practices, and what you would like to see from application/tools perspective as an ideal solution. thanks

    If you upgrade to Logic Pro, you'll get WaveBurner as part of the package which helps you do this, including tweaking your pauses between tracks, fades etc.
    If you have Toast, you can do it there too.
    If you don't have any 3rd. party software, the work around would be to assemble all your songs in order, end to end in a new Logic file, and listen to all your tracks and adjust the relative levels between songs, then bounce out the individual tracks which have volume changes with their new volume settings. Finally you could then use any burning app such as [SimplyBurns|http://bit.ly/c1oglP] to create CDs or bounce them out in Logic with the additional .mp3 option.
    Obviously it's important to listen to your material in order, in context, as some songs will be at the wrong subjective level depending on the tracks either side in the placement. This isn't really important in digital distribution where your material probably won't be listened to as a whole, but as individual downloads.

  • Aperture 3.5.1 - applying titles to multiple images?

    I've searched all over for this but can find nothing about it.  As above, is there a short and less labour intensive way to apply the same title to multiple images?  I thought Lift / Stamp metadata would do it but there seems to be no option to add either the Caption or Title to the set of data available to lift.
    I know I could use keywords to get the essentials copied over but I try to avoid using a gazillion keywords, expanding the list daily, when the sole thing I want to do is stamp one set of 50 or so images with the same title.  If i used the keyword approach my keyword list would run into hundreds of entries which I simply don't wan't, from the management side if nothing else.
    Copy and paste is an option I suppose but somewhat labour intensive!

    Thanks.  Yah, been messing around and found it.  Didn't realise it was IPTC data so I never hit the drop down to see what was under it.  Dropped one clanger in that I deleted the Copyright Notice from the dropdown as I didn't want to find it stamped it twice as all the images get it on import.  Because I deselected it though, it actually deleted what was there.  Easy enough to fix of course but, IIRC if you select the Lift / Stamp to lift all the keywords, I seem to recall it stamps them again if you inadvertently re-stamp an image you've already done.
    I try to keep this as uncomplicated as possible, could never decide whether to go with title or caption, I guess it matters neither way, unless doing this professionally in which case I guess there are IPTC conventions.

  • Multiple guide sets

    In another thread a poster asked about multiple guide sets:
    http://forums.adobe.com/message/4062904#4062904
    It would seem that this should be fairly simple to achieve with writing guides’ properties into the metadata (possibly a dedidcated layer’s xmpMetaData) in sets and subsequently loading them from there.
    One could even do just one dialog with an entry field for entering a name when saving a guide set and a dropDownList to load or remove such sets.
    So I wonder if anybody either has already done something like this or has a (better) idea on the issue?
    Thanks for any feedback.

    Just a couple of amendments to it...
    #target photoshop
    app.bringToFront();
    // Photoshop CS5 or better
    function main(){
    if(!documents.length) return;
    var startRulerUnits = app.preferences.rulerUnits;
    app.preferences.rulerUnits = Units.PIXELS;
    // Set up metadata namespace
    if (ExternalObject.AdobeXMPScript == undefined)  ExternalObject.AdobeXMPScript = new ExternalObject("lib:AdobeXMPScript");
    var psNamespace = "http://ns.ps-scripts.com/1.0/";
    var psPrefix = "psscripts:";
    XMPMeta.registerNamespace(psNamespace, psPrefix);
    existingGuidePresets = [];
    existingGuidePresets = getGuideArray();
    var guides = app.activeDocument.guides;
    var gH = '';
    var gV = '';
    for( var g = 0; g < guides.length; g++ ){
        if(guides[g].direction.toString() == 'Direction.HORIZONTAL'){
            gH+=(parseInt(guides[g].coordinate.value));
            gH+=',';
            }else{
                gV+=(parseInt(guides[g].coordinate.value));
                gV+=','
    gH=gH.replace(/,$/,'');
    gV=gV.replace(/,$/,'');
    app.preferences.rulerUnits = startRulerUnits;
    var win = new Window( 'dialog', 'Custom Guides' );
    g = win.graphics;
    var myBrush = g.newBrush(g.BrushType.SOLID_COLOR, [0.99, 0.99, 0.99, 1]);
    g.backgroundColor = myBrush;
    win.p1= win.add("panel", undefined, undefined, {borderStyle:"black"});
    win.g1 = win.p1.add('group');
    win.g1.orientation = "row";
    win.title = win.g1.add('statictext',undefined,'Custom Guides');
    win.title.alignment="fill";
    var g = win.title.graphics;
    g.font = ScriptUI.newFont("Georgia","BOLDITALIC",22);
    win.g5 =win.p1.add('group');
    win.g5.orientation = "row";
    win.g5.alignment='fill';
    win.g5.spacing=10;
    win.g5.st1 = win.g5.add('statictext',undefined,'Existing Presets');
    win.g5.dd1 = win.g5.add('dropdownlist');
    win.g5.dd1.preferredSize=[300,20];
    for(var w in existingGuidePresets){
        win.g5.dd1.add('item',existingGuidePresets[w].toString().match(/[^#]*/));
    win.g5.dd1.selection=0;
    win.g10 =win.p1.add('group');
    win.g10.orientation = "row";
    win.g10.alignment='fill';
    win.g10.spacing=10;
    win.g10.bu1 = win.g10.add('button',undefined,'Remove Preset');
    win.g10.bu2 = win.g10.add('button',undefined,'Use and Append Guides');
    win.g10.bu3 = win.g10.add('button',undefined,'Use and Remove Guides');
    win.g15 =win.p1.add('group');
    win.g15.orientation = "row";
    win.g15.alignment='fill';
    win.g15.st1 = win.g15.add('statictext',undefined,'New Preset Name');
    win.g20 =win.p1.add('group');
    win.g20.orientation = "row";
    win.g20.alignment='fill';
    win.g20.spacing=10;
    win.g20.et1 = win.g20.add('edittext');
    win.g20.et1.preferredSize=[300,20];
    win.g20.bu1 = win.g20.add('button',undefined,'Add New Preset');
    win.g200 =win.p1.add('group');
    win.g200.orientation = "row";
    win.g200.bu1 = win.g200.add('button',undefined,'Cancel');
    win.g200.bu1.preferredSize=[350,30];
    win.g10.bu1.onClick=function(){//Remove preset
    if(existingGuidePresets.length == 0) return;
    existingGuidePresets.splice(win.g5.dd1.selection.index,1);
    win.g5.dd1.removeAll();
    for(var w in existingGuidePresets){
        win.g5.dd1.add('item',existingGuidePresets[w].toString().match(/[^#]*/));
    win.g5.dd1.selection=0;
    putGuideArray(existingGuidePresets);
    win.g10.bu2.onClick=function(){//Use and append guides
    if(existingGuidePresets.length == 0) return;
    win.close(0);
    var ar1 = existingGuidePresets[win.g5.dd1.selection.index].toString().split('#');
    var Hor = ar1[1].toString().split(',');
    var Ver = ar1[2].toString().split(',');
    for(var H in Hor){
        activeDocument.guides.add(Direction.HORIZONTAL,new UnitValue(Number(Hor[H]),'px'));
    for(var V in Ver){
        activeDocument.guides.add(Direction.VERTICAL,new UnitValue(Number(Ver[V]),'px'));
    win.g10.bu3.onClick=function(){//Use and remove existing guides
    if(existingGuidePresets.length == 0) return;
    win.close(0);
    clearGuides();
    var ar1 = existingGuidePresets[win.g5.dd1.selection.index].toString().split('#');
    var Hor = ar1[1].toString().split(',');
    var Ver = ar1[2].toString().split(',');
    for(var H in Hor){
        activeDocument.guides.add(Direction.HORIZONTAL,new UnitValue(Number(Hor[H]),'px'));
    for(var V in Ver){
        activeDocument.guides.add(Direction.VERTICAL,new UnitValue(Number(Ver[V]),'px'));
    win.g20.bu1.onClick=function(){//New preset
    if(app.activeDocument.guides.length == 0){
        alert("No guides exist");
        return;
    if(win.g20.et1.text == ''){
        alert("You need to enter a name for the new preset");
        return;
    win.close(0);
    currentGuides = win.g20.et1.text + "#" + gH + "#" + gV;
    existingGuidePresets.push(currentGuides);
    putGuideArray(existingGuidePresets);
    win.center();
    win.show();
    function getGuideArray(){
    var xmp;
    var newGuideArray=[];
    xmp = new XMPMeta( app.activeDocument.xmpMetadata.rawData );
    var Count = xmp.countArrayItems(psNamespace, "GuideArray");
    for(var i = 1;i <= Count;i++){
    newGuideArray.push(xmp.getArrayItem(psNamespace, "GuideArray", i).toString());
    return newGuideArray;
    function putGuideArray(gArray){
    var xmp;
    xmp = new XMPMeta( app.activeDocument.xmpMetadata.rawData );
    xmp.deleteProperty(psNamespace, "GuideArray"); 
    for(var g in gArray){
    xmp.appendArrayItem(psNamespace, "GuideArray", gArray[g].toString(), 0, XMPConst.ARRAY_IS_UNORDERED);
    app.activeDocument.xmpMetadata.rawData = xmp.serialize();
    function clearGuides() {
       var id556 = charIDToTypeID( "Dlt " );
           var desc102 = new ActionDescriptor();
           var id557 = charIDToTypeID( "null" );
               var ref70 = new ActionReference();
               var id558 = charIDToTypeID( "Gd  " );
               var id559 = charIDToTypeID( "Ordn" );
               var id560 = charIDToTypeID( "Al  " );
               ref70.putEnumerated( id558, id559, id560 );
           desc102.putReference( id557, ref70 );
       executeAction( id556, desc102, DialogModes.NO );
    main();

  • Dual Layer Disc Does not Play in Set Top DVD Player

    Problem: Dual Layer Disc Does not Play in Set Top DVD Player
    Solution: If your burner supports having its bitsetting changed, find a utility and change it to include DVD-ROM.
    Additional Information:
    DL (Dual Layer) is currently only a +R format. This is a serious problem, as you will find that on older players - and a lot of new ones - there is no +R support. It is not official, and therefore useless for any professional application.
    By changing the bitsetting of your burner, it allows DLs (Dual Layer discs) to be burned with a book type of DVD-Rom and thus readable by many more players.
    DVD player support drops off exponentially if your burner doesn't support bitsetting, allowing you to change the book type of your disc from DL to DVD-Rom. The DL book type will play on most newer software DVD players but not set top players.
    If you've burned a dual layer disc without changing the bitsetting, it is a permanent semi-coaster as it will only play on your computer. I understand that newer DL burners are coming with firmware that automatically sets the book type.
    Encore offers no control over book-type. My understanding is that this is a burner-specific parameter: some burners support allow themselves to be set and others do not.
    Bitsetting (setting the Book Type) is specific to individual burners. There are some 3rd party software utilities out there that do a good job. The best thing to do is do a Google Search for your specific burner and find what works for yours.
    LiteOn has a book type utility available for its DL burners:
    I believe DVDInfoPro can set this on burners which support it.
    Note: I would caution everyone who updates their firmware to check their bitsetting before burning DL discs. I don't know if it always returns to its default but it did in my case.
    Bitsetting is done prior to burning the disk and generally only needs to be set once (unless like me, you update the firmware of your burner). The book type identifies to the player what type of disk is in it. Most players will play DVD-Roms with no problem. However, the book type of a DL disk is DVD+R DL as opposed to DVD-Rom and few players can read that.

    Some general comments about the OP's several questions
    Remember that reading a burned disc is not part of the original, core specification to play a DVD... so while most players do, now, they are really not required to do so to be able to play a replicated disc
    This may (probably is) even more so with dual layer discs... the disc material is different, and a player that will happily read a replicated disc may have problems with a burned disc
    There are many messages scattered in the forum, over the past several years, about brands of disc that are better... due both to overall quality control and the type of dye on the disc that is burned by the laser... with the bottom line being that not all discs are going to play in all players with 100% success
    As for studio discs... there is software out there that costs many thousands of dollars which do many (up to 9?) encoding passes to get the best, and smallest, possible result to fit more on a disc

  • How can I restore my playlist folders in itunes? They are there but the individual song titles aren't listed. They are only listed by album. This makes it very difficult to find songs in my playlist.  Also,when I click on music, it will not list options.

    My itunes account is messed up. How can I restore my playlist folders in itunes? The list's are there but the individual song titles aren't. They are only listed by album. I can only see the song titles as they are played at the top of my itunes. This makes it very difficult to find songs in my playlist.  Also when in the itunes store, I am not able to see music genre choices, or search for a song or group.
    Thank you

    Hi dones49,
    It sounds like your issue here is that iTunes can not find the files for some of the songs you have brought into it. This happens occasionally even if the songs have not been moved from the location that iTunes places them on import or purchase. When you try to use the song, iTunes prompts you to find the file, as you have seen.
    To find the file, use the information in this article to navigate through the iTunes media folders -
    Locate and organize your iTunes files
    If you are still unable to locate the files, you may need to download them from the iTunes store again, or rip them from your CDs. See this article for assistance with downloading your past purchases -
    Download past purchases
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • I have multiple computers set up on homesharing under one itunes account. Can I use face time on all of them or do i need seperate accounts for each?

    I have multiple computers set up on homesharing under one itunes account. Can I use face time on all of them or do i need seperate accounts for each?

    I'd suggest you consider a cloud-based file sharing service such as Dropbox for this sort of use. iOS is not designed to be synched with more than one iTunes library at a time, so attempting to use it as you describe, connecting a single iPad to multiple computers, almost certainly won't work as you intend and is likely to cause nothing but headaches.
    Regads.

  • How can you find out an individual image size from multiple images on a canvas

    This is probably a really really simple question but I can't for the life of me find how I can find out an individual image size from multiple images on a canvas. eg I have 3 photos i want to arrange 1 large and the other two next to it half the size. How can I edit individual image size on the canvas as when I select the image on a sperate layer I want to resize it just resizes the entire canvas and not the individual image
    Thanks

    I want to know they exact dimensions though. You can get them by dragging to the 0,0 corner and then reading off of the ruler scale on the sides but its fiddily as you have to zoom right in and work it out. I know in photoshop there is a ruler but is there any other way in Elements?

  • How to multiple/ parellal sets of books to generate more than one financial statement based on different (or the same) accounting principles.

    How to multiple/ parallel sets of books to generate more than one financial statement based on different (or the same) accounting principles.
    My Client needs Parallel Ledger in SAP B1 similar like SAP ECC. Is this functionality available ?

    Dear Mr. Nagrajan,
    Thank you for your response. I have already gone through documents but not able to understand. Is there any setup for this ? or its just work around i.e. using template and special field in JV i.e. Ref. 1 /2
    My doubts :
    I understand that Chart of Account structure is one and common for IFRS and other accounting method. We need to create only those account separately ( 2 times with prefix like IFRS revenue account, GAAP Revenue account).
    Now at time of entry, Assume some entries / adjustment are specifically for IFRS and not for other ledger. In this case, What need to do ?
    You have mentioned about DTW approach but do we need to insert all JV's again with other ledger ?
    Someone suggested that if any entry which are specific to IFRS Ledger, We need to user Ref.1 /2 column or Transcation code column and in which we can put IFRS
    Based on this, Need to create 2 seperate template for IFRS and other ledger for all report.
    This is my understanding of Solution in SAP B1. Please help me to clarify my though process
    Please do needful.If you have done implemenation and if you can share doucment, it would be great help.
    Email :[email protected]

  • How to add titles to multiple pictures at same time in iphoto11

    I am having difficulty navigating in iphoto11.
    Can not figure out how to add keywords to multiple photos
    or how to add the same title to multiple photos.

    Titles: Photos menu -> Batch Change.
    Keywords: Select a batch of pics. Apply keyword to one, it's applied to all
    Regards
    TD

  • I have finally figured out how to export an iphoto album so that I can maintain the proper order of the photos after burning the file. How do I keep each individual photo title and description after exporting and burning?

    I have finally figured out how to export an iphoto album so that I can maintain the proper order of the photos after burning the file. How do I keep each individual photo title and description after exporting and burning?  Presently after exporting and burning each photo is identified by the file name rather than each individual title description.  

    File name and Title are not the same thing.
    Filename is attached to the Jpeg file in the Finder.
    Title is attached to the photo within the Jpeg file - as is the description. These are written to the Exif and IPTC metadata on export.
    So: File -> Export. Kind: Jpeg or Tiff and Check the box at 'Title and Keywords'. This will write the Title, keywords and descriptions (though not explicitly stated) to the metadata. This can then be viewed in any app that understand this material.
    You can choose, if you wish, to also use the Title as a Filename - that's an option at File Name
    Regards
    TD

  • Offline Disc In Degraded Mirrored RAID Set

    I have a 2 disc (300GB each) mirrored RAID set that has worked fine up until recently. One slice appeared failed so I attempted to rebuild it. 7 hours later it still showed up as failed. I attempted a rebuild once more and the same result. I then shut everything down and re-booted my whole system. Now the RAID set is still degraded but the slice now shows up as offline as opposed to failed.
    I checked the connections and it's all connected fine.
    I have run First Aid several times and no repairs were necessary.
    Anyway I can get this back 'online'?
    If not, can I delete it, repair it and if it's repaired add it back to the RAID set?

    It sounds like one of the drives in the mirrored set has lost its mind (i.e., failed).
    This is exactly the situation Mirrored RAID is good for.
    Remove the failed drive, insert your spare drive of the same or larger size, and assign it as a spare. Then you should be able to get the RAID to rebuild onto the spare and bring it up to date in the next half-a-day or so. Then the mirror will show as working again.
    Make sure your Backup is up-to-date. A second failure now (before the array has rebuilt) will give you data loss.

  • Multiple characater set data

    I have data in multiple character sets, eg. ASCII, IBM850, Windows1252, UTF8 etc. I want to insert them into the database. How do I specify the character set of the data at bind time in ODBC.
    If this is not possible, what is an alternative?

    thanks matt; despite a questionable layout for this setup i think that you'll end up with problems exporting those values to xml as you can't join them in a say, people subset, as each person is basically a standalone value.
    in any case i can argue that this is a real deal breaker for a bunch of organizations given that you would expect a simple multiple choice field based on existing lookup values with an optional possibility to populate the set with new values for the end user (based on your permission) -- or alternatively a text input with auto suggestion based on lookup values that allows you to add/remove multiple records via [+/-] which again end up in one single field.

Maybe you are looking for