Automator workflow to export to itunes

Hi There,
I've found an Automator garageband pack with an automator action that "in theory" allows to export to itunes. Well other actions of the pack are working well but not the export one. Any ideas to help me are welcome!
GB 3 on OS X 10.4.
Thanks

I think you might be better off asking Automator questions in the Automator forum.
I do have a question, though, what would this do that simply choosing "Share to iTunes" wouldn't do? Is it for some batch processing?

Similar Messages

  • Automator Workflow to export Numbers documents in PDF format

    Does anyone know of any automator workflow to export Numbers documents in PDF format? I tried this program: Convert to PDF 1.2
    http://www.apple.com/downloads/macosx/automator/converttopdf_mauriziominelli.htm l
    But it gives an error.

    Reading carefully is often useful.
    The description of the tool which you tried clearly states :
    *About Convert to PDF*
    *_Convert all of your text files to PDF_. This action uses the underlying cups printing system ability to convert files, it’s a simple front end to the command line tool cupsfilter.*
    As far as I know, but maybe you don't, *_a Numbers document isn't a text file._*
    I already posted a script exporting Numbers documents as PDF.
    Here is an enhanced version which apply only to Numbers '09 (or maybe higher) :
    --[SCRIPT save2Numbers&PDF.app]
    Enregistrer le script en tant que Script : save2Numbers&PDF.scpt
    déplacer le fichier créé dans le dossier
    <VolumeDeDémarrage>:Users:<votreCompte>:Library:Scripts:Applications:Numbers:
    Il vous faudra peut-être créer le dossier Numbers et peut-être même le dossier Applications.
    aller au menu Scripts , choisir Numbers puis choisir save2Numbers&PDF
    Le script enregistre le document au format natif de Numbers
    et l'enregistre dans un fichier PDF.
    S'il existe déjà un PDF homonyme, il est renommé en lui ajoutant une chaîne
    construite sur sa date de modification.
    --=====
    L'aide du Finder explique:
    L'Utilitaire AppleScript permet d'activer le Menu des scripts :
    Ouvrez l'Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
    Cochez la case "Afficher le menu des scripts dans la barre de menus".
    +++++++
    Save the script
    as a Script: save2Numbers&PDF.scpt
    Move the newly created file into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Numbers:
    Maybe you would have to create the folder Numbers and even the folder Applications by yourself.
    go to the Scripts Menu, choose Numbers, then choose save2Numbers&PDF
    The script saves the document in the native Numbers format and saves it in a .pdf file
    If such a .pdf already exists, it is renamed with a stamp matching its modification date.
    --=====
    The Finder's Help explains:
    To make the Script menu appear:
    Open the AppleScript utility located in Applications/AppleScript.
    Select the "Show Script Menu in menu bar" checkbox
    --=====
    Yvan KOENIG (VALLAURIS, France)
    modifié 2010/08/17
    property closeIt : true
    (* true = closes the saved document
    false = doesn't close it *)
    property theApp : "Numbers"
    property theExt : "numbers"
    --=====
    on run
    tell application theApp
    activate
    set le_document to front document
    if modified of le_document then save le_document
    delay 0.2
    set thePath to path of document 1
    end tell -- theapp
    set {xPath, xExt} to my saveAs(thePath)
    if closeIt then tell application theApp to close document 1 saving no
    end run
    --=====
    on saveAs(p)
    local extension_export, type_export, nomde_loriginal, dossierde_loriginal, nomde_lexport, cheminde_lexport
    set {extension_export, type_export} to {"pdf", "LSDocumentTypePDF"}
    set {nomde_loriginal, dossierde_loriginal} to my quelNomEtDossier(p)
    if nomde_loriginal ends with theExt then
    • replace the original extension by the xExt one *)
    set nomde_lexport to (text 1 thru -(1 + (length of theExt)) of nomde_loriginal) & extension_export
    else
    • add the xExt extension name *)
    set nomde_lexport to nomde_loriginal & "." & extension_export
    end if
    set cheminde_lexport to dossierde_loriginal & nomde_lexport
    • CAUTION, When saving, Numbers doesn't take care of an existing document.
    It replaces it by the new one. *)
    tell application "System Events"
    if exists (file cheminde_lexport) then
    Playing safety, we rename the existing file by inserting a modificationdatetime stamp *)
    set name of file cheminde_lexport to (text 1 thru -(2 + (length of extension_export)) of nomde_lexport) & my horoDateur(modification date of file cheminde_lexport) & "." & extension_export
    end if
    end tell -- System Events
    • save as type_export document *)
    tell application "Numbers" to save document nomde_loriginal as type_export in cheminde_lexport
    return {cheminde_lexport, extension_export}
    end saveAs
    -- =====
    on quelNomEtDossier(f)
    local nom, dossier
    tell application "System Events" to tell file (f as Unicode text)
    set nom to name (* Unicode text *)
    set dossier to path of container (* Unicode HFS path *)
    end tell -- to System Events
    return {nom, dossier}
    end quelNomEtDossier
    --=====
    • Build a stamp from the modification date_time
    on horoDateur(datedemodification)
    local les_secondes
    set les_secondes to time of datedemodification
    return ("_" & year of datedemodification & text -2 thru -1 of ("0" & (month of datedemodification as integer)) & text -2 thru -1 of ("0" & day of datedemodification) & "_" & text -2 thru -1 of ("0" & les_secondes div 3600) & text -2 thru -1 of ("0" & (les_secondes mod 3600) div 60) & text -2 thru -1 of ("0" & les_secondes mod 60))
    (* Here, the stamp is "YYYYMMDDhhmmss" *)
    end horoDateur
    --=====
    --[/SCRIPT]
    Yvan KOENIG (VALLAURIS, France) mardi 17 août 2010 18:16:27

  • Found a workflow to export an iTunes playlist in MY play order-doesn't work

    Here is the Automator script I found to work around the fact that iTunes will invariably burn a playlist in alpha order, no matter what we do. I found it here: http://www.macosxhints.com/article.php?story=20080424194133862
    1. Automator » Ask for Confirmation (This may be Leopard only.). This asks if the user wishes to continue, since it may take a while to run.
    2. iTunes » Get Selected iTunes Items. This will select all songs that you've selected in iTunes, such as the songs in a playlist.
    3. Finder » Copy Finder Items. This will copy the song files to the Finder. Select a default folder, such as the Desktop. Check the "Show This Action When the Workflow Runs" box under Options to allow you to choose a folder to export a particular playlist into.
    4. Finder » Rename Finder Items (Make Finder Item Names Sequential). You should say Make Sequential in the top drop-down, and then select Add number to existing item name. Select Place number before name, Start numbers at 1, separated by dash (or underscore, etc), and make all numbers X digits long. X should be 1 to 3, depending on how many songs you have -- three digits will allow you to export more than 100 songs.
    5. Save your workflow to the scripts folder, or as an application to add to your Dock.
    When run, the workflow will first copy the files to the selected Finder folder, then rename them. You can then burn the folder -- and any other folders of exported playlists -- to a disc, using the Finder or Toast. Problem solved!
    Looks brilliant, right? And it should work. I set it up exactly as it's listed here. I went into iTunes, clicked on my playlist, and selected the tracks. When the script runs, "Get Selected Items" gives conflicting messages. On one hand, it takes no time at all to import the 116 mp3 files I have selected in my playlist, and they show up in the results window for "Get Selected Items". Yet at the same time, in the Log, the yellow warning triangle appears and says "The action Get Selected Items was not supplied with the required data". And directly under that in the log is "Get Selected Items completed" with a green checkmark next to it. Meanwhile, it only took 67 seconds to "Get Selected Items" with its green checkmark, and "Converting iTunes items" is the one with the grey circle with the arrow in it (indicating it's currently running), yet the progress bar at the bottom of the Automator window still say "Get Selected Items" and the circle of gray bars is *still spinning*, twenty minutes later.
    Anybody have any clues?
    Message was edited by: tzikeh because spelling and context help comprehension.

    Paste the script text into the Script Editor application located in the /Applications/AppleScript folder. From there, you can save it as an application (the Startup Screen option, if desired, will put up a dialog to confirm if you want to run the script), and place it where you want. Double-click on the application to make it go.
    Normally, the only things that need to be in a particular place are things like folder actions, Automator plugins, and items run from the Scripts menu.

  • Workflow/Automator to identify library when iTunes opens

    Is there a way to use Automator/workflow to request which library to select when iTunes opens?
    Here is my situation: I have 2 libraries one for me and one for my wife. My wife does not use a computer so I have not set up a separate user ID for her. Instead both libraries are under my user ID. Currently I need to select the "option" key when iTunes opens to request a library to open. Is there a way to use Automator/workflow to automate this process? I opened Automator but this is not one of the predefined items.
    Thanks

    I have never heard of a way of dong this.  If you're clever with computers you might be able to come up with a key comination or small automator app that does the equivalent of holding down the option key/alt key while clicking on the iTunes app, so you'd start iTunes with your own app, not directly.

  • Need help creating an AUTOMATOR workflow.

    Sorry if this is the wrong area, but I couldn't find an Automator specific category.
    I currently have a folder containing a bunch of avi's that I wish to convert for watching on an Apple TV.
    I currently use Visual Hub, but find that I occasionally get a bad encode from it.
    I was hoping to set up an automator workflow that does the following:
    1. Whenever an avi appears in a specified folder it converts is using Quicktime's Apple TV Export feature.
    2. Moves the new file to another specified folder.
    3. Add's it to iTunes.
    4. Deletes the original.
    If someone could help me out in writing the workflow, that would be awesome.
    Or even if you know of an already existing automator workflow that did this would be cool.
    Thanks.

    Open Automator.
    Choose Folder Action for the type of workflow.
    Set the folder you want to watch in the top gray bar (Folder Action receives files and folders added to)
    Click on Movies in the Library panel
    Drag Export Movie action to the right workflow panel
    Choose the output type and location. I wouldn't delete files until I know they work.
    Save the workflow.
    Now, just drag .avi's to the folder you chose in the first step. You will see the gear run in the menu and when it stops, the new converted files will be in the folder you chose in the Export Movie action.

  • Automator workflow no longer works on 10.7

    Hi.  I've been using an Automator workflow for years:  it opens iTunes, looks for a specific radio station, sets iTunes volume, sets Computer volume, starts iTunes playing and runs a small Applescript script to close the folder if it was open.
    This has been running for years.  Upgraded to 10.7 and it stopped working.  It seems to launch, but nothing happens.
    I recreated the same workflow, and I can run it:  it states that every step is "Completed".  But it really doesn't work!!!
    What should I try next?  (Windows 8???)

    Hi Frank.  Thanks for the response.
    (Mentioning Windows 8 was a joke, as I'm sure you know! ;-)
    Here's what the workflow looks like;  you'll note the "all green" log at the bottom!
    By the way, when I run it, iTunes does launch;  but it doesn't play anything.  And there IS a WCPE entry;  it's a radio station that is in the list of radio stations/Classical and that entry has also been copied to one of my playlists. 
    The workflow was created as an application and it's run when I power up the Mac.
    Thanks for your interest and advice!

  • Accessing Automator workflow from *within* iPhoto

    I have quite a few Automator workflows that I’d like to apply to a number of selected images right within iPhoto’s main window.
    Is there any other way than the usual export/re-import?

    Using that Automator workflow will add another layer of jpeg compression to the file and reduce it a fair amount. There's an applescript that will convert to sRGB without reducing the file size. You can download it from Toad's Cellar. It will convert all files within an folder that's dropped onto it. If the file reduction isn't of concern to you then use the Automator workflow. I have one on Toad's Cellar that will add the sRGB profile to all files within a folder and its subfolders. You could do the entire Originals folder in the library in one pass that way. You can download it and see if it differers from you workflow in any significant manner.
    NOTE: Neither of the two above will work with grayscale files. There is one that will convert files to jpg, RGB mode, and embed the profile available at Toad's Cellar, however.
    I may be preaching to the choir here but here's some tips on using PS with and within iPhoto:
    Using Photoshop (or Photoshop Elements) as Your Editor of Choice in iPhoto.
    1 - select Photoshop as your editor of choice in iPhoto's General Preference Section's under the "Edit photo:" menu.
    2 - double click on the thumbnail in iPhoto to open it in Photoshop. When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done.
    3 - however, if you get the navigation window that indicates that PS wants to save it as a PS formatted file. You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
    NOTE: With Photoshop Elements 6 the Saving File preferences should be configured: "On First Save: Save Over Current File". Also I suggest the Maximize PSD File Compatabilty be set to Always.
    If you want to use both iPhoto's editing mode and PS without having to go back and forth to the Preference pane, once you've selected PS as your editor of choice, reset the Preferences back to "Open in main window". That will let you either edit in iPhoto (double click on the thumbnail) or in PS (Control-click on the thumbnail and seledt "Edit in external editor" in the Contextual menu). This way you get the best of both worlds
    2 - double click on the thumbnail in iPhoto to open it in Photoshop. When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done.
    3 - however, if you get the navigation window that indicates that PS wants to save it as a PS formatted file. You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
    Message was edited by: Old Toad

  • Simple (you would think) Automator workflow

    Hi all,
    I have been using Mac for the last 3 years. I have a very good knowledge of computers in general, Unix/Linux in particular but I have never used Automator. I would like to create a very simple application in Automator: when I click on the application icon I want to see a form in which I type the name of a song and as a result I want to see a window that contains all the music files that match that name.
    I have no problem in creating this as a unix shell script and I know I can use spotlight (the problem with spotlight is that everytime I have to type the search string, click on Show All, then refine the search by setting Kind=Music etc.)
    So I thought it would be a piece of cake to do it in Automator.
    I'm using the action "Find Finder Items" with "Name Contains" AND "Kind is Audio". If I run this in automator I get the results I want (if I click on the Results tab). However, when I save it as Application and then double click on it, I get the input window in which I can specify the name of the songs I'm looking for (so far so good) but then nothing appears, the application seems to terminate correctly but I am never presented with the results.
    I have tried to add a "Reveal Finder Items" after the first action but that's not what I want as it opens one window for each file that matches my search and each window shows all files, with the one I'm looking for highlighted.
    What I need is something similar to spotlight, I want a window to open, showing all files that match. I know I can add more actions and for example copy all files that match into a specific folder then open the folder, but that's a dirty way of solving my problem and a bit of an overkill. Aliases would be slightly better, but still not exactly what I want.
    This is driving me crazy, you would think it should be a very easy thing to accomplish with Automator...
    Any help would be greatly appreciated.
    TIA
    /Pippo

    thanks, but it still doesn't do what I want.
    1) not all my music is in iTunes, so I can't use the Find in iTunes action
    2) adding a Choose from List (as you suggested) after the Find Finder Items now shows me a list of all matches, so that is an improvement, thanks, but I stil can't do anything with that. What I need is a Finder window with the result of the search so that I can simply QuickView the song (or copy it or whatever)
    3) using the Finder search is similar to using spotlight, it doesn't do what I want, I don't want to have to type each time that I'm only looking for songs.
    I just want an Automator workflow that:
    1) asks for a file name
    2) searches my computer for audio files that match the name
    3) shows the result in a window where I can then work with the files.
    it really bugs me that I can't make Automator perform such a simple workflow, I'm sure I'm missing some obvious action.
    please help
    TIA
    /pippo

  • Automated Keynote pdf export without the necessary action?

    Hi,
    I am trying to create a number of automated workflows, including one that
    automatically exports and publishes a Keynote presentation.
    Sadly, Keynote comes without the necessary actions to do so by itself.
    Will I have to write these workflows in Applescript for them to be generic and apply to any Keynote file or is there a way of recording one in Automator so that the finished workflow applies to any presentation (.key) file?
    If so, how is this done?
    The recording that I do now works, but seems to be tied to this file specifically.
    Best regards,
    Kjell Are Refsvik
    Lillehammer, Norway

    Maybe you can tell system events to print them to PDF?
    see:
    http://www.ehmac.ca/mac-ipod-help-troubleshooting/48924-applescript-code-request -print-pdf-function-2.html

  • Pinwheeled while exporting to itunes- is it on my computer in

    I have Ibookg4 garage band. It pinwheeled while exporting to itunes and i forgot to save. Please help in recovering my file. I'm not good with computers so i'll need step by step of what to click on. Thanks. I tried to follow steps from another post but my computer is so old i have different steps.

    Dear Hangtime or helpful awesome person who is a computer wizard,
    I still don't know what to do. I controlled rt clicked. This is what pops up.
    open
    open with
    get info
    open enclosing folder
    move to trash
    copy color label
    toast it
    automator
    disable folder actions
    configure folder actions
    I clicked get info- Is that right?
    what do I click on then? there is a whole other window thing that pops up. there isn't anything that says media folder.

  • Automator workflow to include/exclude startup items?

    Anyone know of an Automator workflow (or third-party app) that can easily include/exclude a startup item?
    I sometimes want an app to be a startup item and sometimes don't. So it would be convenient if I could just run a script to include/exclude it.
    Not critical... just for convenience sake.
    Any ideas?
    Thanks.

    Can you give us an example of some of the things you would like to do this with? I used to, for example use login items to mount the drive with my iTunes music. I stopped doing it that way and now mount the drive when iTunes launches. Depending upon whats being done perhaps a series of Automator actions could be used to create specific stings for specific tasks.

  • Automator, play mp3 folder with iTunes

    Hello All
    I just reinstalled Tiger. Before I had an automator workflow where I could select a folder containing mp3 files and have them played in iTunes, but now I can't figure out how to create such a workflow..
    Can anyone tell me how its done?
    /Jacob Kolding

    Hello All
    I just reinstalled Tiger. Before I had an automator workflow where I could select a folder containing mp3 files and have them played in iTunes, but now I can't figure out how to create such a workflow..
    Can anyone tell me how its done?
    /Jacob Kolding

  • Automator / Applescript Batch export

    Is it possible to create automator actions or applescript that will batch export a folder of keynote documents to .mov files?

    No you can't batch them all at once because Quicktime is used for rendering the slideshow and it's a one at a time operation. It might be done with Applescript but you'd have to ask over in the Applescript forum for help with that.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    Note: There's now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • Automator Workflow Fails with Cryptic Error Message

    I'm updating an Automator workflow for OS X Lion that I initally developed and used, without issue, in OS X Tiger. The workflow asks for a name, creates a folder for the name, takes a digital image with a Nikon D50 connected to the computer, and saves the image to the new folder. This aspect of the workflow works fine.
    I then have a prompt asking if we should take another. If the user says "yes," the script should take another image and save it to the folder. This is where I run into an issue. When I attempt to add another "Take a Picture Action" into the workflow, I get the cryptic (at least to me) error message in the attached screenshot.
    Here's the text:
    "Cannot update for observer <AMWorkflow 0x400458ac0> for the key path "parameters.name" from <TakePicture 0x403e3b0a0>, most likely because the value for the key "parameters" has changed without an appropriate KVO notification being sent. Check the KVO-compliance of the TakePicture class."
    The language of this error would seem to indicate a bug. Any thoughts on a fix or the means to report to Apple?

    The subject of this post is a bit misleading. The workflow wasn't failing while I was running it, but rather when I was editing it and trying to include another 'Take a Picture' action in the same workflow.
    The workaround I found was to use a 'Loop' action on the 'Take a Picture' action. It's a bit more elegant and doesn't require multiple 'Take a Picture' actions in the same workflow.
    Nonetheless, what does this error message mean?

  • How can I export my iTunes Library to an external hard drive?

    How can I export my iTunes Library to an external hard drive? and once i do that how can i play the library through the external drive? I basically want to be able to delete all my music on itunes once it is on my external hard drive so i can have more internal hard drive space.

    Follow this guide very carefully: http://support.apple.com/kb/HT1364?viewlocale=en_US
    It's very easy to do....

Maybe you are looking for

  • Encrypt/decrypt using update

    Hi, can someone give me an encrypt/decrypt pair of code samples that use the cipher.update() call. i am trying it like that but apparently it doesn't work byte[] temp = new byte[message.length/2]; byte[] temp2 = new byte[message.length/2]; System.arr

  • Stuck on landscape printing...

    Hi - I'm a relative newcomer to Mac (but a very happy one) - for some reason I'm defaulting to landscape printing for all of my printers and can't find where to change it - can anyone help please

  • HCP tcode PA40 Upload program failing to move to next record.

    Dear All I have written and upload program for HCM tcode PA40 and the program is fine but only inserting one record and is failing to pick the next records in a loop. I dont know whats the problem i know the process have many screens, please help me,

  • Graphic Glitch on export transition

    Here's whats going on. I'm shooting on a T2i, and I import the .mov files into FCP just fine, they playback and all. I've export project after project without problems with this same setup. I export the project using quicktime, and the export has gra

  • BT Wiring upgrade

    Hello everyone, I need some help and advice please. I've recently moved to a 1960s house, and I'm getting broadband speeds of around 1MB. All the phone sockets seem to have old non-NTE5 faceplates, fed from an old brown oval Bakelite box in the loft.