"batch" exporting to aiff using automator / applescript?

I often find myself prepping a lot of audio for DV editing in Final Cut Pro....exporting audio out of QT to 48khz, 16bit, aiff.
I'm looking for a way to do this to many files in 1 step....ie: drag and drop a folder/files onto an icon. Automator doesn't seem to have an export action under quicktime. And all i can do in applescript is tinker, at best.
I downloaded the QT script package from the apple site.. http://www.apple.com/applescript/quicktime/ these seem like a good start, but im havin trouble tweakin them for .aiff audio
any suggestions for doing this?

can do this now with automator

Similar Messages

  • Use Automator/AppleScript to clean iPhoto Library

    Hello,
    Having read a lot of posts about the use of AppleScript and Automator to do things with iPhoto, I think it's possible to create a script or a processus to clean the iPhoto Library (let say, a copy of it) to eliminate "zombie files" (photos which have not been deleted of the iPhoto Library when emptying the iPhoto trash).
    The script should simply verify, for each file in the "master" folder, il the path of this file is known in the iPhoto database (the data base is in the "AlbumData.xml" file). If it is, the file is kept. It it's not, the file is moved to trash (or to a temporary folder).
    Should anyone create this script ? I should try, but I would need two weeks to do it correctly, and I'm sure someone can do it in 5 minutes... Some help here ? Thanks !

    Hi,
    Try this AppleScript:
    repeat
        set r to (choose file with prompt "Select an iPhoto Library package" default location (path to pictures folder)) as string
        try
            (r & "AlbumData.xml") as alias
            (r & "Masters") as alias
            (r & "Previews") as alias
            exit repeat
        on error
            activate
            display dialog "This package does not contains \"AlbumData.xml\" file or the \"Masters\" folder or the \"Previews\" folder." buttons {"OK"} default button "OK"
        end try
    end repeat
    set iPhoto_Library to quoted form of POSIX path of r
    set AlbDataXML to quoted form of POSIX path of (r & "AlbumData.xml")
    tell application "Finder"
        set newFolder to (make new folder) as string
        set dest to (make new folder at folder newFolder with properties {name:"Images qui ne sont pas dans AlbumDataXML"}) as string
    end tell
    set destF to quoted form of POSIX path of dest
    set file1 to quoted form of POSIX path of (newFolder & "filesPath.txt")
    set file2 to quoted form of POSIX path of (newFolder & "PhotosDataPath.txt")
    do shell script "dest=" & destF & "; tFile=" & file1 & "; tFile2=" & file2 & "; iPhotoLib=" & iPhoto_Library & ";
    grep -A1 '\\(\\<key>OriginalPath<\\|\\<key>ImagePath<\\)' " & AlbDataXML & "  | sed -n  '/<string>/s/^.*<string>\\(.*\\)<\\/string>$/\\1/p' | sort -o \"$tFile2\"
    find \"$iPhotoLib\"Masters -type f \\! -name '.*' >\"$tFile\"
    find \"$iPhotoLib\"Previews -type f \\! -name '.*' >>\"$tFile\"
    sort -o \"$tFile\" \"$tFile\"
    diff -ab  \"$tFile2\" \"$tFile\" | sed -n '/> /s/^> //p' | while read f; do
       name=${f##*/}
       if [ -e \"$dest$name\" ];then
            i=1
            while [ -e \"$dest$name $i\" ];do
                ((i++))
            done
            name=\"$name $i\"
       fi
       /bin/mv -f \"$f\" \"$dest$name\"
    done"
    tell application "Finder"
        activate
        reveal folder dest -- select the folder which contains moved files
    end tell
    This script move every files in the ("Masters" and "Previews") folders which it's path is not in the "AlbumData.xml" file to a new folder on the desktop.
    The grep command get all path in "AlbumData.xml" from the (OriginalPath and ImagePath) keys and put the result in file2.
    The find command get all file's path in the ("Masters" and "Previews") folders and put the result in file1.
    The diff and sed command get all file path in text file1 which is not in text file2
    Before moving file:
    This script check name of the file to not overwrite any file in the destination folder.
    If a name already exist in the destination folder, the script add a space and a number to the end of the filename.

  • Using automator/applescript to do terminal commands/ssh

    hi,
    pardon my extreme novice question here, but i was looking for quick & easy ways to create a small applet to basically run a script on a web server to remotely check & update it's IP address with its web host, and also serve internet services to a wifi access point.
    here's the basic stuff we usually do in terminal —
    my-Computer:~ admin-user$ ssh admin@+{web server IP, ex.: 0.0.0.0}+
    +{we then have to wait for it to connect and ask for a password}+
    Password: {our input for password}
    Last login: Sat Jun 14 15:04:58 2008 from 0.0.0.10
    Welcome to Darwin! +{so we are now connected}+
    www:~ webserver-admin$ sudo /var/root/IP_update.sh
    +{there is then a long output as that script runs and updates the IP with the web host}+
    www:~ webserver-admin$ sudo route add -net 0.0.0.0/24 0.0.0.3 +{serve up internet services to a wifi access point, returns output that it was done, failed or already connected}+
    www:~ webserver-admin$ sudo /opt/local/sbin/lighttpd -f /opt/local/etc/lighttpd/lighttpd.conf & +{starts up our web server, returns that it was started or already on because port 80 is in use}+
    so that's what i want it to do. i thought using automator and the *run shell script* option in it would work, but i can't even get past the first ssh command without an error. i have it set to use /bin/sh, and have tried it with *pass input* setting set either way, *to stdin* or as arguments, but in either case, just on this first line alone, i get the following error —
    Run shell script failed
    Pseudo-terminal will not be allocated because stdin in not a terminal.
    does anyone know why this is happening? how do i get around this and proceed on with my script using automator?
    also, if anyone could please give tips about how to use the "pause" to have it wait for prompts over the network (like the "Password:" prompt coming back after an indeterminate number of seconds) and which automator command might be used to pop up a dialogue for user input (like asking for the password), it would be much appreciated. thanx.

    You'd want the *do shell script* command in AppleScript for this
    http://developer.apple.com/technotes/tn2002/tn2065.html
    however you're not going to be able to use it as you would tools such as Expect which allow you to wait and provide additional input on stdin. If all you're doing is updating an IP address why not simplify the entire mess with BIND's dynamic updates?

  • Using Automator/Applescript with Keynote?

    For a series of presentations I'm creating, on practically every slide, I have to delete a picture, then paste the replacement on the slide, resize that item, and reposition it on the slide (at the same location).
    This seemed like a perfect use for Automator, and I recorded my steps in Automator, but I ran into a couple of questions after that.
    1) When I'm in Keynote, I don't see a command to run a script.
    2) I'm looking at the automation that was created, and the workflow includes "Type 600 px into the text field." But I'm concerned that I don't see anywhere in the workflow that specifies what property is being edited at that point.
    Chuck

    Thanks chuck,
    I never thought to use Automator before but may give it a try now.
    I'm pretty new to AS so don't quote me, I know some apps have a File Menu command to run scripts but in general *** are run from the script menu on RHS of Menubar, perhaps you need to activate a pref for that I can'r remeber how I got mine there. Applescripts can be run with Keynote but have limited use. It seems to me there is no property dictionary for Keynote items.
    But i did find this snippet in somebody's applescript suggesting interaction via keyboard shortcuts is possible. Also controlling the slideshow is definitely support by the application dictionary.
    tell application “Keynote“
      activate
    end tell
    tell application “System Events“
      tell process “Keynote“
        keystroke “v“ using {command down}
      end tell
    end tell
    http://piyocast.com/as/archives/537

  • QuickTime batch export ?

    Hi,
    Can QuickTime Pro do movie batch export ?
    thanks

    With some Automator help it's easy to batch convert. If your setting requirements are identical use this Automator action:
    http://www.apple.com/downloads/macosx/automator/quicktimecompressionactionsandwo rkflow.html
    QuickTime 7 can also export more than one file and these settings can be different formats, codecs etc.
    Just open the file and export (you choose from the dialog windows). Open another file, change the settings and export. And again. And again.

  • QT 7.04: Export to AIFF causes Crash in all QT related apps

    This is similar to thread:
    http://discussions.apple.com/thread.jspa?messageID=1635999
    Here is my scenario though:
    When trying to export a group of clips ( 2 hrs in length)
    captured in iMovie 4.01,
    to disc using the export to Mpeg-2 QT option, the audio doesn't fully export, it stops at the 55 minute mark, and
    forgets the rest, although the file itself is the correct length ( the rest of where the audio is missed, is filled with blank space).
    The capture itself is fine, and plays with audio to
    the end of the two hour capture.
    So I went back and tried just an export to AIFf using
    iMovie to Quicktime Expert option, however, it causes
    iMovie to crash.
    When I go into QT Pro 7.04, and try to "preset" the
    Audio export options there, it casues it to crash.
    If I try and do an export to Aiff from Final Cut Pro 4.5,
    it causes Final Cut to crash.
    I looked back over the recent three weeks before this, and the only things I have installed recently have been
    MpegStreamclip 1.7, and ffmpegx 0.0.9w.
    I will try trashing the QT Prefs, as well as the prefs
    for iMovie and FCP, but does anyone have any ideas?
    I have aslo tried various other files, and if I try
    to export AIFF, as long as i don't click the options,
    it won't crash, but it won't complete either...

    Hmm, I thought I had made it clear that the source originated
    as a 2hour DV capture in iMovie?
    When did QT abandon the Export to MPeg-2 feature?
    Had to be after 7.04?
    I did not have this feature in 6.0, 6.52,
    and began to use it on and off in QT 7.01 and 7.02,
    when I don't have the time/inclination to
    setup a Batch and run it overnight in Compressor 1.2.1.
    But we are digressing, because although that might
    be a "fix" for the exporting to make compatible assets
    for DVD Studio Pro, that still doesn't address
    the issues with why just the audio drops out
    (flatlines) after 55 minutes, or why exporting directly
    to AIFF through QT causes every QT related app
    (iMovie, FCP) to crash?
    Here is a step further:
    Here is a listing of all QT codecs I have on my system in
    Library/Quicktime:
    3ivx Delta 3.5
    Indeo® Video5
    Indeo® Video 4
    Indeo® Video 3
    3ivx D4 4.5.1 for OSX
    Flip4Mac WMV Export.component
    ffmpeg.component
    ffmpeg DivX.component
    DVCPROHDVideoDigitizer.component
    ACTLComponent.qtx
    A52Codec.component
    OpenDivXCodecPPC*
    OpenDivXCodecPPC Debug
    OpenDivXCodecPPC
    OpenDivX.component
    on2vp3.component
    On2_VP3.qtx
    On2_VP3
    OggVorbis.component
    DVCPROHDVideoOutput.component
    DesktopVideoOut.component
    Sorenson MPEG4 Encoder
    Sorenson MPEG4 Decoder
    QTFbx.component
    VivoActive Siren Decoder
    VivoActive G723 Decoder
    Vivo Plugin
    VDOwave MS Video Decoder
    Toast Video CD Support.qtx
    Toast Video CD Support
    Toast Video CD Export
    srtImport.bundle
    Sorenson Video Pro OSX.qtx
    ZyGoVideo.component
    DVCPROHDMuxer.component
    ZyGoVideo.qtx
    XVIDDelegate
    AXELplayer.qtx
    DVCPROHDVideoOutputCodec.component
    DivX 6 Decoder.component
    FCP Uncompressed 422.component
    DVI Codec
    Sorenson MPEG4 Reassemble
    Sorenson MPEG4 Pro
    Sorenson MPEG4 Packetizer
    MAYA_IFFExport.component
    MAYA_IFFCodec.component
    LiveType.component
    lame 3.92.shlb
    VIDEC™
    VDOwave Video Decoder
    KinomaExporter.component
    Intel Raw Video
    Indeo Video
    H.263 Decoder
    H.261
    Flip4Mac WMV Import.component
    msmpeg4v2.component
    msmpeg4v1.component
    MPG4-DIVX
    MPG4*
    MPG4
    MPEG Layer-3 Audio
    Microcosm Decode.component
    MAYA_IFFImport.component
    WMA Audio
    Windows Compressors
    VivoActive Video Decoder
    AC3 Codec.component
    DivX Pro 5.component
    EyeTV MPEG Support.component
    DVCPROHDVideoOutputClock.component
    DivX Codec
    DVCPROHDCodec.component
    Zoomify.component
    DivX 5.component
    I plan on removing these, in groups of five, starting with the oldest to newest, and seeing if one of these might be the culprit. Any other input would be appreciated....

  • How to batch export certain pages from pdf to excel

    I have several thousand pdf files that I need to convert into excel files. The files are 20 pages each but I only need 4 pages from these. I worked with a sample and was able to convert the entire document for each file but would like to sellect certain pages to be converted. Is there any way to do this?
    I am using acrobat 11 pro. Any help would be much appreciated!

    If you know the pages you want to extract, you could use JavaScript to extract them and then batch export to Excel using an Action. Here is a tutorial on how to Extracting pages from a PDF with Acrobat JavaScript.

  • 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.

  • Batch Export Slideshows?  Automator?

    I have about 15 lengthy slideshows to export to .mov files, this takes a while for each one. Is there anyway I can make it batch export so I don't have to keep hopping back to my computer to set the next one to export? Automator looks like a promising tool for this, but I'm not sure how to make it select a different slideshow each time and give it a different name? Any suggestions would be greatly appreciated.

    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.

  • How to get the destination path in an photoshop sdk export plugin when using a batch action?

    Hello,
    I've written an exporter plugin (not save-as) that exports a given file to a custom format.
    I was able to open a file selector dialog and choose a path that is then transported to the saving location.
    Now my problem is: Another intended use is batch exporting many files. The user records an action with the export step and then applies a batch on it.
    The PS batch window allows you to select the destination to be a directory where the exporter should write the data. Fine.
    Now how do I get this path? When running in batch mode the silent flag is set for my plugin so I do not spawn a file selector dialog to annoy the user.
    But I am also unable to obtain the path which was selected by the user in the batch window.
    The SDK automation plugin Getter has some code to retrieve the path of the file and even that fails as it cannot obtain anything.
    PropertyUtils.h has some PIGetWorkPathIndex and PIGetPathName functions but I always get 0 when asking PIGetNumberPaths, and get -1 with PIGetWorkPathIndex.
    I would be thankful if somebody could hint me how I can retrieve directories.
    It even seems impossible for me to get the path where the file is actually saved. The filter plugin called Propertizer utilizes a function called PIGetDocumentName but this only outputs the file name, not the full path.
    (Just to be sure: The file on which the tests run is already saved to disk, if that matters)
    Another fun part is: When I record an export step, what is the directory I am exporting into?

    Ok, after lots of reading the sdk sample outbound I've realized that or plugin is broken.
    When recording an action the outbound plugin stores the current path to gAliasHandle which is then recorded as a scripting parameter. Now when I execute the action I get the alias handle.
    However how is this supposed to work with an export plugin and batch processing with a "destination" set to a target? Is this even possible or do I need to double click the export step in the action and "reset" the location even if that causes the entire exporter to run again?

  • How do i change the size of a clip using batch export?

    hi, when i try and do a batch export to change my clips from a DV PAL to PhotoJpeg 320*240 sized clips the "options" button is greyed out. so all i have as export settings are the QT presets in a pulldown list. is there any way i can create my own setting? (and the also save that?)
    thx

    what i'm seeing is that
    a) selecting all files in Media Man. gives me the option to size and set codecs but not the audio off.
    b) selecting all files in Batch Export allows me to pick a format (QT, aiff etc) choose a preset (photoJpeg included) select whether to include audio and video or both but not set the size or customize the QT settings
    c) selecting all clips then "file>export>using QT conversion" gives me all options, but seem to grab only the first clip.

  • Batch Export Trick for Logic using Markers and XLD

    I've always wanted apple to implement batch export of multiple audio files from logic using markers as delimiters. So you can mix a concert and export it in one go without having to hang around and re-start bouncing for each track.
    Now you can do this (albeit in a two step process) using Logic 9.1 and the free and wonderful XLD!
    Just place markers in your project and bounce as AIFF (this is the only format that seems to work with this, so you are out of luck if your bounce file is going to be larger than 2GB). I suggest placing a marker at the very beginning of the project too so you first file is not called "Timestamp_0" or some such thing. You can even name the markers with the name you want each file to have, though keep in mind files will sort alphabetically of course once they are split if you have a specific order - so maybe preface them with 01, 02, 03, etc etc.
    OK - now go get XLD (the GUI version):
    http://tmkk.hp.infoseek.co.jp/xld/index_e.html
    download, install and run it. No window will appear at first. Open the preferences and choose your desired output format and options, directory, etc
    drop the AIFF file onto XLD (I've put XLD into my Finder window toolbar for easy access). When it asks you to open the embedded cue sheet, say "OK" and your markers should appear as a list of CD tracks that you can play double click to play with a player interface and preview.
    Then press "Decode" and voila! All your markers as separate audio files with the marker name, in whatever format (including the multiple formats option) you set XLD for.
    You can even edit metadata at this stage (but first consider whether your output format supports it)
    Some of the formats XLD can produce are
    AIFF
    WAV
    Apple Lossless (saves some space!)
    FLAC
    AAC
    MP3
    OGG
    etc etc
    Personally I think this is an absolutely fantastic trick and am happy to have discovered it. Hope it helps you too.

    Also, if you have gaps in the original session, put a marker at the end of the previous section and call it something like "end". Then you can uncheck all the "end" 'tracks' in the cue sheet and they wont be exported in XLD.
    Oh and it also seems XLD will preface your marker delimited files with their 'CD track' number. Useful to keep them in order, but they will probably want to be changed if you have gaps you took out with extra "end" markers.

  • How to resize and change the resolution of a batch of photos using Automator

    I searched for a long time tonight looking for the answer to this (seemingly) simple question:
    How do I use Automator to scale and change the resolution of a batch of images?
    It was not so simple.
    Links to this question:
    https://discussions.apple.com/message/12341246#12341246
    https://discussions.apple.com/message/12342026#12342026
    https://discussions.apple.com/message/5785047#5785047
    https://discussions.apple.com/message/1173358#1173358
    https://discussions.apple.com/message/5641853#5641853
    https://discussions.apple.com/message/3207516#3207516
    These are just the links on this site - I found them all over the place at MacRumors, Apple Tips, Mac Help, etc.
    You can actually manage this in Automator.
    Here are the steps that worked for me:
    Create an Automator APPLICATION - not a workflow (this is due to the way that I'm batch converting images - workflows might be ok for some cases)
    Step 1 is Copy Finder Items
    My flow inserts an SD card, opens the DCIM folder that my Nikon creates, selecting the images that I click (command + click to multi-select) and once I have the photos highlighted, I drag them onto this Automator App we're creating.
    <==  You'll have this guy soon!
    As a result - I want to copy the originals to my computer as step 1.  I don't touch the originals on the SD card (and cards are cheap so I tend to leave them on the cards as well)
    Step 2 is the Scale Images action - you can search the library for this and find it quickly.  For my part, I found that scaling images to about 38.8 percent of their size on the SD card is good for uploading to a blog.  Change this value to whatever you wish.
    Step 3 is Run Shell Script - and here is where we marry the brilliance found at this link with our script.If you have a hard time reading the text in the image, it is as follows:
    #bin/bash
    for f in "$@"
    do
         /usr/bin/sips -s dpiHeight 72.0 -s dpiWidth 72.0 $f
    done
    Save this application (I named mine "Format Photos")
    Place the application inside the target folder where you want the images to end up.  I do this because when I have the SD card window open, I can also open my "Photos" window and see my App sitting there.  I select my images as I mentioned and drag them on top of this app.  The app copies the originals and the conversions into the folder.
    NOTES: When you open a converted pic in Preview, you will see Resolution = 300 dpi if you go to Tools --> Adjust Size...  This reading is explained by another brilliant discussion as sips only touches the JFIF properties inside the file's MetaData.  However, if you look at the bottom of the Adjust Size... window, you'll see the image size is probably around 500 kb (give or take depending on the original).  My goal was to get the images down from the 3.0 MB I shoot at to around 500 kb.  Therefore even though the MetaData still thinks that it is 300 DPI according to Preview, it has been changed to 72 (open it in some other applications mentioned at the links and you'll find different readings - it all depends on what the application reads from the Meta).
    This does not rename the files, so you'll get DSC_1000.jpg and DSC_1000 copy.jpg in all likelihood.  If that annoys you, add a step into the Automator Application that renames the file after the "Run Shell Script" action has run, and you can have each file renamed according to some convention that you like.
    This took a heck of a lot longer than I expected - so I decided to put in the effort to share this with the community and save others the hassle. 

    PPI is pixels per inch of the image.  It is difficult to increase resolution as you are trying to add data that is not there.
    But for printing purposes what you want is dpi or dots per inch.
    The image processor either accessed from Bridge (tools/photoshp) or PS is a good way to change a batch of images.

  • Is there a way to select multiple sequences and batch export them using the same settings in CS6?

    I am a current Final Cut Pro7 user and looking to switch over to Premiere Pro CS6.  We edit approx. 100 short (15 sec.) videos daily, and then select them all at the end of the day and batch export them over night using the same export recipe for all. I have having trouble finding an easy way to do this in Premiere pro CS6, as command +E is grayed out if i select more than one sequence at a time. 
    so far, it appears that i have to select each video individually and manually set encoding recipe and export location for each....  Not only would this be terribly time consuming, but it leaves a lot of room for error and missed videos.  I thought i would be able to send all of the sequences to Adobe Media Encoder,  but i dont see that option either.
    Any suggestions/
    thanks!

    Open Media Encoder and add your Sequences:
    File > Add Premiere Pro Sequence
    Navigate to your Premiere Project and select it in the list.
    You can then select multiple Sequences from the Project (Ctrl+Click)
    and load them all at once into Media Encoder and apply
    the same encoding preset to all Sequences at the same time.

  • Using BATCH-EXPORT on subclips vs MM to create independent media files

    I've been capturing full HDV tapes with the DV Start/Stop Detection turned on and everything has worked just fine - until now. I'm now encountering a problem w FCP "Searching for Media" on roughly 25% of my clips DURING capture, and in the process, losing about 5 seconds at the start of the clip. I've been having lots of problems w my G5 over the last couple months and it's been acting quite slow and I imagine this is related to that.
    So... after a full 2 days trying to get Media Manager to create independent media files from my subclips (after capturing a twenty minute chunk whole, then breaking it down), following the FCP manual volume II pg 42 to a tee... I concur w many others on this site that Media Manager *****! No matter what I did, it would not produce new files out of my subclips and instead kept giving me the same error: "Reconnect Media Failed. The clip such-and-such was unable to be reconnected to the trimmed file due to a mismatch of the media present in the file... yada yada." Yes, I shortened the end of the first subclip by a couple frames, and I also had another subclip to delete, and I tried going straight from the bin, then from the timeline, then after making all clips independent in the timeline... nothing!
    Then I discovered BATCH EXPORT.
    Using it, I exported my HDV subclips using Quicktime Movie, Self-Contained, HDV 30, audio and video. It processed 20 minutes of subclips in just a few minutes so I'm fairly confident that no real 'processing' occurred.
    Can someone verify for me though that this is a safe procedure and that I am not re-processing HDV files with more HDV nonsense? Before continuing, I would just like to know for sure that Batch Export produces exactly the same result with subclips then if I were to simply capture one clip at a time.
    Thanks a bunch,
    Chris

    I can confirm that it does not merge audio tracks. Track 1 and 2 remain the same. In fact everything appears as it would if I were to capture direct, I just want someone who knows better to validate this!
    Also, has anyone else experienced the slowdown during log & capture that I described, with the intermittent message "searching for media"?

Maybe you are looking for

  • Unable to load .jar program

    I'm trying to create my own paintchat server. In order for me to host it I need to load a .jar program but whenever I do it shows the splash page then closes. It leaves a txt stating the error but I don't understand it. Please help and thank you in a

  • Using LR2 w/ Photoshop CS2 and Camera Raw 3.7

    I am using Photoshop CS2 and Camera Raw 3.7 on a Mac G4, OS X 10.4.11. I am about to install my upgrade to Lightroom 2. Is this a bad idea? I have read about some compatibility issues re Camera Raw, and I have also read about how to solve the issue o

  • Drivers for Live! Cam Video IM Pro?

    Where can I find drivers for the Live! Cam Video IM Pro? It's not listed in the driver dropdown at http://us.creative.com/support/downloads/...

  • How to do for showing the "Firefox" ikon up to the left on screen?

    Your teaching with using Firefox usually begins with order to tap on the Firefox-ikon up to the left on my screen. My problem is that I can´t find such ikon. Why? What can I do to solve that?

  • Nokia n80 brightness

    I have a nokia n80, if i set the brightness to the highest will this be better or will it waste more battery? So would the lowest brightness be better? What doer everybody have brightness set to best?