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.

Similar Messages

  • Can I create a fillable pdf form and then export it for client use on my web site?

    Can I create a fillable pdf form and then export it for client use on my web site?  I need clients to be able to fill in the (registration) form on my site then submit it via email.

    [discussion moved to Creating, Editing & Exporting PDFs forum]

  • Please help me with my electrical engineering homework : temperature control and watering system for greenhouse using labview and arduino

    temperature control and watering system for greenhouse using labview and arduino
    spesification :
    1. max temp : 28 celcius (when temperature is more than 28 celcius, fan ON)
    2. min temp : 20 celcius (when temperature is under 20 celcius, heater ON)
    3. watering system : aquaponic (grow plant and fish in separate tank but connect each other). Plant roots help filter water for fish. Fish poop for plants fertilizer. So I need a pump to distribute water.
    Please help me create VI file simulation.. I'm sorry I'm not fluent in English. May God bless you all
    Attachments:
    YOOOSHH.vi ‏88 KB

    Duplicate thread.   Please keep the discussion in that thread where you already have a response. It is also the more appropriate thread for your question.
    Lynn

  • List display for ALV using class and methods

    Hi friends
    I want the list display for the ALV using Class and methods
    which class and methods i can use.
    Here we can't use the REUSE_ALV_LIST_DISPLAY and also GRID
    I was done GRID display using class and methods but i want only list display for using class.
    plz Give me sample code of list display not for grid.
    Thanks
    Nani.

    hi
    please check with this code...
    declare grid and container.
    DATA : o_alvgrid TYPE REF TO cl_gui_alv_grid,
    o_dockingcontainer TYPE REF TO cl_gui_docking_container,
    i_fieldcat TYPE lvc_t_fcat,"fieldcatalogue
    w_layout TYPE lvc_s_layo."layout
    If any events like double click,etc., are needed we have to add additional functionality.
    call the screen in program.
    Then , create the container as follows
    IF cl_gui_alv_grid=>offline( ) IS INITIAL.
    CREATE OBJECT o_dockingcontainer
    EXPORTING
    ratio = '95'
    EXCEPTIONS
    cntl_error = 1
    cntl_system_error = 2
    create_error = 3
    lifetime_error = 4
    lifetime_dynpro_dynpro_link = 5
    others = 6.
    ENDIF.
    CREATE OBJECT o_alvgrid
    EXPORTING
    i_parent = o_dockingcontainer.
    Build the fieldcatalog
    create a output structure in SEll for the ALV output
    CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
    EXPORTING
    i_structure_name = <alv output>
    CHANGING
    ct_fieldcat = i_fieldcat[]
    EXCEPTIONS
    inconsistent_interface = 1
    program_error = 2
    OTHERS = 3.
    IF sy-subrc <> 0.
    MESSAGE i030."Error in building the field catalogue
    LEAVE LIST-PROCESSING.
    ENDIF.
    *If you need to modify the field catalog,modify it using field sysmbols
    *setting the layout
    w_layout-grid_title = title.
    w_layout-zebra = 'X'.
    then displaying the output
    CALL METHOD o_alvgrid->set_table_for_first_display
    EXPORTING
    i_save = 'A'
    is_layout = w_layout
    CHANGING
    it_outtab = i_output[]
    it_fieldcatalog = i_fieldcat[]
    EXCEPTIONS
    invalid_parameter_combination = 1
    program_error = 2
    too_many_lines = 3
    OTHERS = 4.
    IF sy-subrc <> 0.
    MESSAGE i032 ."Error in Displaying
    LEAVE LIST-PROCESSING.
    ENDIF.
    *After that in PAI of the screen, you need to free the *object while going back from the screen(according to *your requirement)
    MODULE user_command_9001 INPUT.
    CASE sy-ucomm.
    WHEN 'EXIT' OR 'CANC'.
    PERFORM f9600_free_objects:
    USING o_alvgrid 'ALV' text-e02,
    USING o_dockingcontainer 'DOCKING'
    text-e01.
    LEAVE PROGRAM.
    ENDCASE.
    ENDMODULE. " USER_COMMAND_9001 INPUT
    *in the program, write the follwoing code
    FORM f9600_free_objects USING pobject
    value(ptype)
    value(ptext).
    DATA: l_objectalv TYPE REF TO cl_gui_alv_grid.
    CASE ptype.
    WHEN 'ALV'.
    l_objectalv = pobject.
    IF NOT ( l_objectalv IS INITIAL ).
    CALL METHOD l_objectalv->free
    EXCEPTIONS
    cntl_error = 1
    cntl_system_error = 2
    OTHERS = 3.
    CLEAR: pobject, l_objectalv.
    PERFORM f9700_error_handle USING ptext.
    ENDIF.
    WHEN 'DOCKING'.
    DATA: lobjectdock TYPE REF TO cl_gui_docking_container.
    lobjectdock = pobject.
    IF NOT ( lobjectdock IS INITIAL ).
    CALL METHOD lobjectdock->free
    EXCEPTIONS
    cntl_error = 1
    cntl_system_error = 2
    OTHERS = 3.
    CLEAR: pobject, lobjectdock.
    PERFORM f9700_error_handle USING ptext.
    ENDIF.
    WHEN 'CONTAINER'.
    DATA: lobjectcontainer TYPE REF TO cl_gui_container.
    lobjectcontainer = pobject.
    IF NOT ( lobjectcontainer IS INITIAL ).
    CALL METHOD lobjectcontainer->free
    EXCEPTIONS
    cntl_error = 1
    cntl_system_error = 2
    OTHERS = 3.
    CLEAR: pobject, lobjectcontainer.
    PERFORM f9700_error_handle USING ptext.
    ENDIF.
    WHEN OTHERS.
    sy-subrc = 1.
    PERFORM f9700_error_handle USING
    text-e04.
    ENDCASE.
    ENDFORM. " f9600_free_objects
    FORM f9700_error_handle USING value(ptext).
    IF sy-subrc NE 0.
    CALL FUNCTION 'POPUP_TO_INFORM'
    EXPORTING
    titel = text-e03
    txt2 = sy-subrc
    txt1 = ptext.
    ENDIF.
    endform.
    also check with this
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVALV/BCSRVALV.pdf
    Hope this helps
    if it helped, you can acknowledge the same by rewarding
    regards
    dinesh

  • Exporting Flash for DVD use

    We are working on a Flash file that will be used on the web and also on a DVD.  We have the flash file set up to 720 x 540.  We have not used the Title safe and Action safe template area, and we have type and titles close to the edge in our flash file.  How will we be able to export out the flash file to work on a DVD and still be visible on a TV since we have not used the title safe/action safe template?  Can we just output at a smaller size? Please let me know what our options are so we can figure out where to go from here.  We will be exporting the file out of Flash and bringing it into Final Cut Pro and then exporting it out through Compressor to burn with DVD Studio Pro.  Any help will be greatly appreciated.
    Thanks,
    kevinLVAI

    You can convert SWF to some movie format like AVI. You have tons of tools available for it.
    I am currently working with Croatian television creating some animations.
    I use AdShareit:
    http://www.adshareit.com/swf-to-video.html
    You can choose anything you like.
    Hope it helps.
    Regards,
    Vjeko

  • How to search for files using wildcards * and ?.

    Hi All,
    I've been searching the forum for a couple of hours now and have been unable to find a good example of how to search a directory (Windows OS) for a file using wildcards * and/or ?. Does anyone out there have a good example that they can share with me?
    Thanks

    Hi All,
    First of all I want to thank everyone for taking the time to respond to my question. All of your responses where greatly appreciated.
    I took the example code that was posted by rkconner, thanks rkconner, and modified it to allow me to search for files in a directory that contain * and/or ?. Yes, I said and/or! Meaning that you can use them both in the same file name, example: r??d*.t* would find readme.txt.
    I've posed my complete and thoroughly document code below. I hope it is very helpful to other as I have searched many forums and spent many hours today trying to resolve this problem.
    Enjoy
    * File Name: WildcardSearch.java
    * Date: Jan 9, 2004
    * This class will search all files in a directory using the
    * asterisk (*) and/or question mark (?) as wildcards which may be
    * used together in the same file name.  A File [] is returned containing
    * an array of all files found that match the wildcard specifications.
    * Command line example:
    * c:\>java WildcardSearch c:\windows s??t*.ini
    * New sWild: s.{1}.{1}t.*.ini
    * system.ini
    * Command line break down: Java Program = java WildcardSearch
    *                          Search Directory (arg[0]) = C:\Windows
    *                          Files To Search (arg[1]) = s??t*.ini
    * Note:  Some commands will not work from the command line for arg[1]
    *        such as *.*, however, this will work if you if it is passed
    *        within Java (hard coded)
    * @author kmportner
    import java.io.File;
    import java.io.FilenameFilter;
    public class WildcardSearch
         private static String sWild = "";
          * @param args - arg[0] = directory to search, arg[1] = wildcard name
         public static void main(String[] args)
              String sExtDir = args[0]; // directory to search
              sWild = args[1];   // wild card to use - example: s??t*.ini
              sWild = replaceWildcards(sWild);
              System.out.println("New sWild: " + sWild);
              File fileDir = new File(sExtDir);
              File[] arrFile = fileDir.listFiles(new FilenameFilter()
                   public boolean accept(File dir, String name)
                        return (name.toLowerCase().matches(sWild));
              for (int i = 0; i < arrFile.length; ++i)
                   System.out.println(arrFile.getName());
         }     // end main
         * Checks for * and ? in the wildcard variable and replaces them correct
         * pattern characters.
         * @param wild - Wildcard name containing * and ?
         * @return - String containing modified wildcard name
         private static String replaceWildcards(String wild)
              StringBuffer buffer = new StringBuffer();
              char [] chars = wild.toCharArray();
              for (int i = 0; i < chars.length; ++i)
                   if (chars[i] == '*')
                        buffer.append(".*");
                   else if (chars[i] == '?')
                        buffer.append(".{1}");
                   else
                        buffer.append(chars[i]);
              return buffer.toString();
         }     // end replaceWildcards method
    }     // end class

  • Trick for Pairing Bluetooth Keyboard and Mouse With Windows 7 in BC 3.1

    My Mac:
    Mid-2007 iMac 20", 2.4 GHz; OS X 10.6.2; Windows 7 Home; Boot Camp 3.1
    My Problem:
    No matter what I tried, including all kinds of tips and tricks found in this forum and elsewhere on the web, I could not get my Apple aluminum bluetooth keyboard and bluetooth Mighty Mouse to pair in Windows 7. Windows 7's bluetooth setup panel would see them, from time to time, but never connected.
    The same pair connected quite easily with Snow Leopard, and the keyboard connected before I installed BC 3.1 in Win 7 (never did get the MM to connect in Win 7 with BC 3.0). But with BC 3.1 in Win 7, it was no dice for either one until I made an accidental discovery.
    While prepping another Apple bluetooth aluminum keyboard for my wife's Mac Mini, it was seen by my iMac's Win 7, which wanted to pair with it.
    Aha! A Big Clue! The Win 7 BC 3.1 generic bluetooth drivers wanted to pair with an aluminum keyboard that wasn't already paired with the iMac. So, I booted back into Snow Leopard, connected a USB mouse and keyboard, renamed the bluetooth mouse and keyboard, and then deleted them. I rebooted back into Win 7, then easily set up both renamed mouse and keyboard which paired quickly with Windows.
    Note that I first tried deleting them from the Snow Leopard side first, but Win 7 still wouldn't pair with them. That's when I went back to Snow Leopard and renamed them but didn't pair them with the iMac until it was booted into Win 7.
    Finally, I rebooted back into Snow Leopard and paired the keyboard and mouse with OS X. Done.
    Hope this trick/tip/hint helps someone else with keyboard and mouse bluetooth pairing problems.

    You're welcome. My discovery was quite accidental, but that's often how things happen ... if you're paying attention and are looking for clues.
    Sorry you had to trial and error before you succeeded, but as you've probably found, it is necessary to rename the bluetooth devices first, then delete them from OS X.
    I don't understand why this trick was necessary, or even what caused it to happen. I've got 6 Win 7 installations via Boot Camp on 6 Intel Macs (2 white MacBooks, 1 Unibody MacBook, a Core Duo Mac Mini, a 27" iMac and the 20" 2.4 Mid-2007 iMac). All were running 10.6.2 and Win 7 (aren't Family Packs wonderful?) via Boot Camp 3.0 more or less without problems, except as noted in my first post.
    Only the 20" iMac had problems after the Boot Camp 3.1. Not only did I have a devil of a time pairing the keyboard and mouse, but I also lost the Win 7 activation on the iMac 20" and the OS X partition started showing up as "EFI Boot". All happened right after I updated Boot Camp 3.0 to 3.1 via download from Apple while running Win 7.
    I've heard reports of other Mac users discovering Boot Camp had done a FUBAR job on their machines, but this is my first experience. My guess is that there's some dialogue going on between 10.6, Win 7 and Boot Camp that shouldn't be happening. What I really don't understand is why my other 5 Macs didn't have any problems at all with the Boot Camp upgrade to 3.1. Let's hope the Apple Boot Camp team can reverse engineer my discovery and improve the next version of BC.

  • Real Time ADC/DAC for SMPS using Labview and USB

    Hello all,
    I have asked the sales department this same question, so here's a two-pronged approach:
    I am reserching a control algorithm for a switch-mode power supply, and so far, the simulations for its performance look good.  Now, the goal is to implement the circuit for experimental data.
    I've seen several NI USB DAQ boxes that appear to have the performance I'm looking for (for example, the USB-6211 would have the resolution and sampling rate that I need).
    The control algorithm uses the following math functions:  add/sub/mult/div/exponent, and derivative/integral.
    My question is this: is Labview "strong" enough to take in four channels of 250Ksps data, crunch the numbers in an equation, and spit out the answer to an analog out channel, all in REAL time?  I'm looking for an analog output rate of ~100kHz.
    Thank you for any suggestions that you have!
    -Rick
    Solved!
    Go to Solution.

    Hey,
    So if you were just trying to perform an input or output then the USB-6211 would certainly be able to handle it because the hardware clock would be handling the input/output, not software. However, what you're wanting to do, basically a feedback system, will require software timing (at least for a USB device) because you'll have to be able to actively specify what the output is. So, for that reason alone, and the fact that you want 100kHz output, this device and USB devices in general won't be an option no matter what software you use, LabVIEW or otherwise. On another note, what you're looking to do sounds more like live updating, not Real-Time, which is more about jitter. Bottom line, for these kinds of requirements, you're going to need to move to an FPGA board, something like the NI PCIe-7841R would work. It's more expensive, but for your requirements, FPGA is going to be the only option and it comes down to bus latency as well as software response time. With FPGA, as is shown in the first diagram of the following document, you're basically closing your software loop through hardware.
    FPGA Fundamentals
    http://www.ni.com/white-paper/6983/en
    --Ryan S.

  • Problem when "Checking for Mail" using IMAP and POP

    Hello,
    I have an iPhone 3G running 2.0.1 and created 3 mail accounts (1 Gmail using IMAP, and 2 using POP).
    When I first set up the phone 2 days ago the installer copied the settings from my Mac and emails on my iPhone showed up correctly.
    Since yesterday something is screwed up because when I try to fetch new email I only see "Checking for Mail" at the bottom of the screen but nothing happens and new emails don't show up.
    Any idea how to fix this problem?
    Thanks!

    FYI you don't actually have to completely reboot the phone. From inside your email program, push and hold the HOME button for 7 or 8 seconds until it exits email and dumps you back at your home screen. That causes a hard-quit of the email program and will reset it. You should begin getting email again immediately after.
    Here's hoping Apple fixes that anomaly on their next release...

  • I have a redeemable voucher for logic pro x and i can't find the location on the apple mac store to download

    i have redeemable voucher for logic pro x,,, cant find the location on apple mac store to download it,,,,

    Mac App Store/Featured/Quick Links/Redeem

  • QuickTime Movie Files Won't Convert For iPod using iTunes and QuickTime Pro

    I've got a ton, and I mean a ton of QuickTime movie files of music videos that I want to convert to use on the iPod. I tried using "Convert Selection For iPod" in the Advanced Menu on iTunes, but got the following message trying convert a QuickTime file of U2's Beautiful Day:
    ""Beautiful Day" could not be converted because this file does not allow for saving or conversion."
    I purchased QuickTime Pro hoping that the features on Pro would convert the file. When I opened the same file to convert using QuickTime Pro, "Export" under the file menu was grayed out so I couldn't select it.
    You'd think that an APPLE QuickTime Movie file that can be played on APPLE'S iTunes and APPLE'S QuickTime Player would be able to be converted to be used in APPLE'S iPod player. (Anybody notice how APPLE is capitalized to point out that the the hardware, software and file formats are ALL Apple?)
    Instead I wasted money buying QuickTime Pro when it won't do what I specifically bought it for. Now I have all these QuickTime files which won't play on the iPod.
    Can anybody provide some help or assistance on how to accomplish what I'm trying to accomplish???

    If the file doesn't allow saving or conversions then it is protected by DRM (Fairplay).
    Nothing can help QuickTime Pro convert protected files.

  • Searching for instances using getIntancesByFilter and ClientProcessService

    I am trying to get an array of all instances in a process so I can get some the data and use it to populate some dropdowns. I am using a custom, AJAX-enabled JSF presentation to call a server-side-no method in my component model. My code looks like this:
    Fuego.Papi.Instance[] things;
    Fuego.Papi.ClientProcessService cps = new Fuego.Papi.ClientProcessService();
    cps.connect();
    Fuego.Papi.InstanceFilter filter = new Fuego.Papi.InstanceFilter();
    filter.create(cps);
    filter.searchScope = SearchScope(ParticipantScope.ALL, StatusScope.ALL);
    filter.addAttributeTo("projVar", Comparison.IS, "projValue");
    things = cps.getInstancesByFilter(filter);
    foreach (thing in things){
         logMessage("Thing - " + thing.activityName + ".", "INFO");
    cps.disconnectFrom();
    I think the code is failing at line filter.create(cps), but I can't be sure. When I launch the screenflow, I am presented with an error about invalid arguments for method signature [nameOfMethod]. I can't debug the method either because of this error.
    If I remove everything south of cps.connect();, I can loop through the project vars defined in the process. I am using a ClientProcessService because I want to use the existing session from the workspace to get this data. Any thoughts?

    I think you're just missing the processId in your logic ("/OrderEntry" in the logic below). Your use of "projValue" won't work unless you're looking for the hard coded string "projValue".
    // Create objects used by the filter that searches the engine
    ClientBusinessProcess cbp;
    InstanceFilter instF;
    // Connect to the process that is currently running.
    // In this example, the process name is "Order Entry"
    // (no space characters).
    cbp.connectTo(processId : "/OrderEntry");
    // create the filter
    instF.create(processService : cbp.processService);
    // filter based on instances done by ALL participants in any
    //   activity between the Begin and End activities
    //   (ONLY_INPROCESS)
    instF.searchScope = SearchScope(participantScope : ParticipantScope.ALL, statusScope : StatusScope.ONLY_INPROCESS);
    // Get the orders with a order status of "Rejected"
    instF.addAttributeTo("projjVar", Comparison.IS, "Rejected");
    . . .Dan
    orderCount = length (getInstancesByFilter(cbp, instF))
    return orderCount

  • Export/import of mappings using OMBPLUS and Collections?

    Hi,
    We've got some good TCL code to export (and import) mappings for our projects along the lines of:
    OMBEXPORT MDL_FILE '$projname.mdl' \
    PROJECT '$projname' \
    CONTROL_FILE '$controlfile.txt' \
    OUTPUT LOG '$projname.log'
    and now we're moving to organizing mappings by OWB COLLECTION and need to export/import by collection instead. Thought it might be as simple as this:
    OMBEXPORT MDL_FILE '$collname.mdl' \
    FROM COMPONENTS ( COLLECTION '$collname')
    CONTROL_FILE '$controlfile.txt' \
    but that's not working (saying "Project $collname does not exist.", so it seems to still be treating what I thought was a collection name as a project name . Can someone point out the right syntax to use COLLECTIONs in OMBEXPORT/OMBIMPORT?
    All thoughts/tips appreciated...
    Thanks,
    Jim C.

    Hi,
    If we use the below tcl script for the entire project export , does it also export the locaitons,control center,configurations along???
    If yes then can you gimme the script for altering the locations , control center/configuration connection details??
    OMBEXPORT MDL_FILE '$projname.mdl' \
    PROJECT '$projname' \
    CONTROL_FILE '$controlfile.txt' \
    OUTPUT LOG '$projname.log'
    Can you also provide me the tcl for project import??
    Thanks

  • Best possible export settings for XDCAM HD graded and minor vfx footage?

    Hey all,
    i know this question seems to be getting the hall of fame mark, but i cant figure out the best settings to export my HD footage, from premier, i usually mpeg2 the sequence and i get a great picture and sounds and even a reasonable filesize, but the same settings dont seem to work with after effects, is it something really lame that i'm not looking properly or its more than that, please help me out here.
    Thanks

    You should never use a lossy/compressed file format for intermediate files. The more times you introduce compression into the mix, the lower your final footage quality will  be. Also, After Effects (especially earlier versions) doesn't play well with codecs that use interframe compression (such as MPEG). To be honest, it would be difficult for you to pick a worse thing to do.
    If you're using After Effects CS5, I would just suggest importing your Premiere sequence into After Effects. It'll come in as a composition with the original footage with your edit. It will give you the most flexibility and you won't have to worry about generational data loss with exporting various codecs.
    However, if you've got an earlier version of AE or if some of the effects and things you've applied in Premiere don't come over in an import very well, you will want to find a workable intermediate codec. You want it to be lossless to maintain quality, but a decent file size would be nice too. I have had good success using Quicktime with the PNG codec (not a PNG sequence). Others may have other suggestions, but that seems to work for me.

  • Export Compression for Web Use

    Hi All
    I've been through the forum and seen a lot of posts on the "art" of compressing files for use and transfer on the web while wanting to maintain quality.
    I understand that it requires some tweaking of the frame size, the frame rate, and the data rate to get the optimum file size versers quality.
    I've moved from iMove where export was simple(tho files were large) to FCE and I'm finding that the learning curve is very steep.
    I've recently seen a video on Vimeo http://vimeo.com/10022953 which is stunning quality and only 36.5 MB with a frame size of 1280 x 720. I'm wondering if anyone has an idea how he may have achieved this. The Codecs that he has used are AAC, H.264, MPEG-4 ODSM, MPEG-4 SDSM. I'm wondering if it may be necessary to use another compressing software to convert the exported full size QuickTime movie file to a quality file such as this.
    Any ideas???

    Hi All
    While waiting for comments to my question I contacted the producer to the video that I referred to above. When in doubt go to the source.
    His reply is…
    "I use the setting in Quicktime X, go to: File - Save As and in format select 1080p. Easy as pie"
    So I gave it a shot and I managed to get an awesome quality video at a greatly reduced file size, similar to what he had. I also discovered a powerful tool in Quicktime X : File > Save for web. This gives other great sizes and extra files and code for hosting on your own servers.
    If anyone has any other ideas I'd love to hear but this has fixed me for the moment

Maybe you are looking for