Send part of audio file, not the entire file, from FCP to STP

Is there an easy way to send only part of an audio file to STP as an audio file project from FCP 5.1.2?
Everything that I've tried so far always sends the entire audio file for processing in STP.
1) using the blade tool to slice the audio
2) creating a subclip of a piece of audio
3) setting in/out points in both the timeline and the viewer
I realize that I could export the piece of audio and then import that into FCP and then send that to STP, but that is a lot of work.
Is there an easier way?
Thanks,
Richard
G5 Dual 2 gig   Mac OS X (10.4.8)   4.5 GIGS RAM

Maybe one of these work:
* LeechBlock: https://addons.mozilla.org/firefox/addon/4476
* BlockSite: https://addons.mozilla.org/firefox/addon/3145

Similar Messages

  • Want to know bow to block part of a website, not the entire website.

    I am aware how to block entire websites through the host file or through extensions, but I've looked all over google and can't find a way to just block one specific url. I don't want to block the entire site, I just want to block one page on that site. If anyone out there has figured out a way to just block a specific url within a website and not the entire website, I'd be happy to hear from you :)
    == This happened ==
    Every time Firefox opened
    == forever

    Maybe one of these work:
    * LeechBlock: https://addons.mozilla.org/firefox/addon/4476
    * BlockSite: https://addons.mozilla.org/firefox/addon/3145

  • When downloading a file, only the first word of the attached file is included in the 'file name' field, not the entire file name, as it used to.

    Regardless of filetype, only the first word of the file is filled into the "Enter name of file to save to..." dialog box. I'm set up to 'save file' in the FF Options > Applications tab for the basic MS and Adobe files. To successfully use/find the downloaded file, I type in the remainder of the file name. Have I overlooked an additional setting? Running FF 18.0 on a Win7 PC.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    A possible cause is that the server sends a wrong response header.
    The server may not comply to RFC 5987 and sends a wrong Content-Disposition:attachment; filename header.
    * https://developer.mozilla.org/en/Firefox_8_for_developers#Network

  • Customize ribbon for a single file, not the entire app

    Hi.  How can I apply ribbon customizations to a single .mdb file instead of the entire Access app?
    Thanks much,
    Audrey

    Audrey,
    Please take a look at this article for a basic Ribbon customization procedure:
    http://office.microsoft.com/en-us/access-help/customize-the-ribbon-HA010211415.aspx
    When you create the Ribbon file, you can apply the custom Ribbon to the entire database.
    Also, this might be helpful: http://accessextra.blogspot.com/

  • I just downloaded iOS 8 on my iPad air. This has caused the file names of all of my PDFs in iBooks to revert to their original file name when I downloaded the file, not the custom file names I gave them after downloading the files. In the list of fil

    PDF file names changed with iOS 8

    Further to above
    Progress Notable!
    But before I outline the details, I wish to apologise to APPLE for laying the blame at their doorstep for loosing or misplacing those PDFs I have on the iPad 1, when I set up my iPad Air , by restoring from the backup of iPad 1, thus copying all data from the old to the new.
    NOT REALLY THEIR FAULT AT ALL
    Because a lot of the many PDFs had the same name, ie PDF.pdf, probably my fault more than anybody else's, so I can't blame APPLE for that. Just goes to show one should be a little more precise in creating these portable documents.
    No wonder the poor program " lost its' marbles" when doing the updating and conversion/transfer.
    However, I was able to recover most of them by personal email, and extracting and RENAMING the PDFs as I located them in their new home.
    Those PDFs that we're locked an thus not email-able , I will deal with by
    Viewing
    Photoeing (if that's how you spell it).
    And re-building the PDF from the photos, in unlocked format, after transferring these files either by Bluetooth or Wi-Fi, from the old to the new iPad.
    So all is not lost, and I am thankful that my cautious approach to this matter in the first place, gave me the ability for this successful recovery.
    That's my story and I'm sticking to it.
    I hope this little story of my saga/experience may prove helpful to others yet to cross the chasm of updating.
    Regards to all, including APPLE.
    NICE STUFF YOU MAKE.

  • Upload data from excel (not the excle file) into SAP

    Guys,
    how can we upload data from excel sheet into SAP? I mean just the data not the entire file,
    I have a requirement where user press a button in excel sheet and the data in the sheet will get uploaded into SAP.
    I am sure we have to use BAPI and some VB programming for macros, I will really appriciate if anyone can help how to achive this.
    some sample code exampe will help.
    Cheers!

    I think u r writing BDC for Uploading the data from excel flile to sap. for this is the code I am sending u can use then for Uploading data from excel to sap.
    DATA: lv_filename TYPE rlgrap-filename.
    FIELD-SYMBOLS : <fs>.
    DATA : l_intern TYPE alsmex_tabline OCCURS 0 WITH HEADER LINE.
    DATA : l_index TYPE i.
    PARAMETERS : startcol TYPE i ,
          startrow TYPE i ,
          endcol TYPE i ,
          endrow TYPE i .
    PARAMETERS: p_flnam LIKE rlgrap-filename.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_flnam.
      CALL FUNCTION 'F4_FILENAME'
    EXPORTING
       program_name        = sy-repid
      FIELD_NAME          = ' '
       IMPORTING
         file_name           = p_flnam .
      MOVE p_flnam TO lv_filename.
    Uploading the flat file from the desktop
    START-OF-SELECTION.
      CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
        EXPORTING
          filename                      = lv_filename
          i_begin_col                   = startcol
          i_begin_row                   = startrow
          i_end_col                     = endcol
          i_end_row                     = endrow
        TABLES
          intern                        = l_intern
    EXCEPTIONS
      INCONSISTENT_PARAMETERS       = 1
      UPLOAD_OLE                    = 2
      OTHERS                        = 3
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      SORT l_intern BY row col.
      LOOP AT l_intern.
        MOVE l_intern-col TO l_index.
        ASSIGN COMPONENT l_index OF STRUCTURE itab TO <fs>.
        MOVE l_intern-value TO <fs>.
        AT END OF row.
          APPEND itab.
          CLEAR itab.
        ENDAT.
      ENDLOOP.
    I hope it will help u.
    Regards
    Nayan

  • I have two companies sending me indesign documents. One opens up and the dictionary is set to English. The other file opens at is in Hebrew, Not sure how to fix the Hebrew part and whether or not the fualt lies at my end or at the other end

    I have two companies sending me indesign documents. One opens up and the dictionary is set to English. The other file opens at is in Hebrew, Not sure how to fix the Hebrew part and whether or not the fault lies at my end or at the other end

    If only the language is Hebrew, you should correct it in the Paragraph and Character Styles.
    But in such a case I would expect more problems.
    If you are a creative cloud subscriber you should additionally install the InDesign version, English with Hebrew support:
    Go to the preferences of you CC.app. It is found behind the Gear Symbols on the top right.
    When the preferences open, go to the Apps section.
    Change the App Language to English with Hebrew support.
    Now you can install it. It will install on the very same place where your InDesign program is found some additional plugins, which will give you access to Hebrew functionality, like RTL text. Otherwise you will inherit in the document (and where you copy and paste it from such a document into another one). But now you can change or repair problems.
    Now repeatstep 1 + 2, but you need not to install your own language again. InDesign will now, when started, run in the language of your OS (when you have it installed in that language) but with more functionality to handle problems with Hebrew documents.
    The same steps you would have to do with Arabic or Asian documents. These languages will also add more plugins. But keep it limitted to those language you need. I have installed it that way, because I get sometime documen where the text flows the wrong direction or the numbers come up in Farsi digit, not in Arabic digits. For such purposes I need versions in languages I don’t understand myself.

  • There is not enough free memory to load the entire file

    I saw an older reference to this error in a previous post which apparently got resolved, but didn't explain precisely how it got resolved:
    Michael Kitzmiller, "There is not enough free memory to load the entire file" #, 27 Jul 2007 5:23 am
    I presume that one answer is to rebuild the document from scratch, changing imported images to referenced images. But I want to recover the file as I put hours of work into it and expected that anything I can save that I also should be able to read back in. I will certainly change to referenced images, but I have to be able to open it first.
    thank you

    Web...
    Here is a smattering of ideas.
    Do you have ample unused HDD space? If not, defrag it, although in myu experience, this hardly makes a difference. Check your TEMP/TMP folders and clean them out. Consider downloading cCleaner and running it. Do everything you can to make ample room on your HDD and in places like your TEMP folders. If your HDD is congested, temporarily remove big but relatively unimportant applications and move data elsewhere for a while.
    Even with 4GB of RAM, Frame can only use somewhere between 2.7 - 3.2 GB of it under the very best of conditions, and that includes the application as well as the files. Unpacking image files can consume considerably more space than it takes to store them. For example, a 1024 x 768 color image requires more than 3.1MB to describe it as a 32-bit color image, yet when stored in JPEG format, it can be as small as 50kB, a compression of 65:1. Of course, it's not reasonable to assume that your document is comprised entirely of such highly-compressed images, but in the unachievable extreme, it would take 980MB to simultaneously open 15MB worth of those kind of files. The point here is to not fall into the trap of thinking a 15MB file comprising a lot of images needs little more than 15MB of RAM.
    Make sure ALL other applications are closed when trying to open your file...Outlook, IE or FireFox, Anti-Virus and Spyware apps, Word, etc.
    Consider sending a copy of the file to someone else to see if they can open it for you and delete some of the images before resaving it. If you have a backup copy, rename your current file and restore the backup. Maybe your working copy is corrupt. Who knows? Anything is probably worth trying as long as you have a save copy stored somewhere.
    Dennis...

  • How do I send just a song to someone and not the entire album?

    How do I send just a song to someone and not the entire album??

    If you are using an iOS device then no, I don't think that you can gift a song, it will need to be the whole album. If you are using your computer's iTunes, and it's not an album-only track, then you should be able to gift individual songs via the downward pointing arrow next to the song's price.

  • MTS files (and really, they're just MTS, not the entire folder structure)..

    OK, I see lotsa advice about dealing with MTS files...if they're in their proper folder structure.
    Well, that'd be easy, and I'd be importing them now if they were in their proper folder structure. But they're not...I have 503 .mts files, in a folder, that a client copied "for me", and now expects me to import.
    Any advice? Like I said, I only have the .mts files, not the supporting folder structure.

    Greetings all from Jakarta - i have a feeling this is going to be a lengthy response and will only be of interest for those currently suffering from MTS file issues, but I do believe (while my solutions are not perfect) I have found some answers. What I have not found, unfortunately, are the hairs that I pulled out of my armpits in frustration over these MTS issues.
    Background info: My office purchased the Panasonic HDC-TM700 to provide back-up to our Panasonic 170EN and we have been quite happy with the results. We have also been converting the MTS files to .MOV files on both Toast Titanium, and Final Cut Pro.
    SITUATION #1
    After a day of shooting I downloaded the TM700 files (full structure) to the hard disk. On day two after a full day of shooting I realized I forgot to format the camera's memory card so i had 50 MTS files that I already downloaded. Ever the smart guy, I highlighted file #51-#102 and dragged them into the STREAM file of the previous day's download. Then I formated the camera so i wouldnt forget the next day.
    Well during log and transfer in FCP ONLY THE FIRST 50 FILES could be read, because that is what the metadata in the info supported ..... FCP couldnt even locate the other 50 files. I nearly fainted at the thought of getting fired. Thank goodness, when we dragged the MTS files into TOAST TITANIUM they could be read and converted!
    SITUATION #2
    The new guy (seriously, it was the new guy!) ONLY DOWNLOADED THE MTS files and since I wasn't there I wasn't there to see the havoc when neither FCP or TOAST could open the files. I was called in and my first idea was to take an old file structure, copy it, and slip the MTS files into the STREAM folder.
    Well, it worked!! kind of.... The interesting thing is that the files could be converted in TOAST (FCP would not open the files) BUT ONLY TO THE TIME CODE THAT was equivalent to the original file. So if the original file was 1 minute and the file that I only had the MTS file for (and which corresponded to the file's number) was 5 minutes, only 1 minute was converted.)
    So what I did was I took the TM700 and I shot five minutes of my foot. Then I downloaded the full file structure. Since I only took one shot of five minutes there was only one file in the STREAM folder, which was a 598mb file numbered 00000.MTS
    I know I will regret it one day but i deleted the MTS file of my foot. Then I placed in one of the "homeless" MTS files into the (now empty) STREAM folder and changed the name to 0000.MTS -
    When opened in FCP log and transfer - IT DID NOT WORK. However, in TOAST I am happy to say IT WORKED, yayyyy. And the file that was converted was the length of the clip. What I thought might happen is that if the clip was only 30 seconds long but the foster file was 5 minutes then there would be 30 seconds of footage and 4.5 minutes of black empty space on video. That wasn't the case.
    THE SHORT TERM SOLUTION:
    Over the years I have been very very very lucky with all the help I have gotten over the internet and in my own small way I hope the following helps out others. So here is what I have done, with instructions.
    PLEASE NOTE I AM INDONESIAN LIVING IN INDONESIA SO WE USE PAL ..... 25 frames per second. .... Hopefully if someone in North America likes this idea and can help out, they will post a NTSC file structure.
    OKAY INSTRUCTIONS:
    1. Double click this link and download the file structure. The the file structure is only 68kb all your (and mine) frustrations for 68,000 bytes!!
    www.klirkom.com/helpout/AVCHD
    2. If you look inside the folder (AVCD->BDMV->STREAM) you will see AN EMPTY STREAM FOLDER. This is where you will place your "lost/not working" MTS files. Sorry, but this file structure only supports two files at a time. The first file is 5 minutes long, the second file is 33 minutes long (i was going to make it 10 minutes but I forgot about the camera being on and left it for 33 minutes ...)
    3. Change your first file name (preferably an MTS file less than 600mb so that the 'foster' file can cover it) to 00000.MTS. Now change your second file (preferably less than 4GB, but unless you are filming the whole wedding this should be okay for most people.... the important thing to remember is that if you want your full file converted without missing any parts at the end, the files should be smaller in size than the foster files) to the name 00001.MTS
    4. Now drag your newly named and newly placed MTS files into TOAST TITANIUM. Click convert. I have not tried this with other software but hopefully it works for you.
    5. If you want you can now rename your original MTS files to their original names and continue with the next two files. I know with 500 MTS files this is a HUGE pain in the buttox .....
    Okay, good luck all!!
    Jakartaguy

  • Adding an effect to a sound, not the entire track

    Hey All, I am looking to simply add a effect to a single sound, not the entire track, is that possible with Logic? I am coming from pro tools, and I know I was able to do that there, I was hoping I could do the same here. Thanks so much!

    By add effect, I assume you mean add some delay or reverb one one particular note or word. Several ways to do this. Put the effect plug-in on a bus return, and then automate the send level to come up/down for that one incident.
    Another way would be to make a 2nd track (audio or midi), Insert the effect on that track, and cut the phrase or note, and move down to that 2nd track. So the whole track would be dry, and that one word, note, would have the effect on the next track.
    Make sure levels are similar

  • I am trying to rebuild my iPhoto library and noticed my backup contains aliases (pointers?) and not the actual file. What's the best way to rebuild my library?

    I am trying to rebuild my iPhoto library and noticed my backup contains aliases (pointers?) and not the actual file. What's the best way to rebuild my library?
    Facts:
    In moving to a new iMac, I copied the iPhoto library to an external HDD assuming that I would point the new iMac to the backed up iPhoto Library
    All worked fine when I pointed the new library but noticed that some folders contained aliases and not the original file. So when I attempt to open that photo it can't find it because the alias is pointing to another drive.
    I do have all original photos from a couple of external HDDs. In the folders titled, "Originals" (from older versions of iPhoto) and "Masters" (from current iPhoto)
    I'm thinking I can create a new folder and drop the original files and make that my new iPhoto library. Is there a better way to rebuild my library? I do not want to create any future aliases.
    Thanks in advance for any help!

    do you have a strongly recommended default "managed" library (the iPhoto preference to "copy imported items to the iPhoto library is in its checked state) or a referenced library - you have unchecked that option?
    It sounds like you have a referenced library and are now experiancing one of the very siginificant drawbacks of a referenced library and one of the many reasons they are strongly not recommended
    Also note that iPhoto '11 may use alises in the originals folder as part of the upgrade
    It is important that we understand exactly what you have and what is not sorking - what error messages you are getting
    You must NEVER make any changes of any sort to the structure of content of the iPhoto library - there are no user servicable parts in it  --  and you can not rebuild yoru librtary - only iPhoto ir iPhoto Library Manager - http://www.fatcatsoftware.com/iplm/ -  can rebuild a library unless you are a SQL programmer and understand the structure that iPhoto uses
    LN

  • How do I move just my movies folder (not the entire iTunes library) to an external hard drive and still be able to watch movies?

    My movies library is getting frighteningly large, and I want to move it (not the entire library) to an external HD, and still be able to watch the movies (when the HD is connectec). How would I do that?

    It's not a feature of iTunes but can be done using various work-arounds.
    Small hard drive? Split your iTunes library across multiple volumes - http://www.macyourself.com/2009/04/24/small-hard-drive-split-your-itunes-library -across-multiple-volumes/  - copying media folders to external, then deleting from internal, then adding again.
    Splitting & Managing Your iTunes Library - http://machintsandtips.com/i-j-k/itunes/splitting-managing-your-itunes-library/ - using option+drag to override iTunes from copying file to your default media folder.
    https://discussions.apple.com/message/10160819#10160819 - Change location of media folder to start putting files on second drive.  Note later follow-up post about leaving 'organize media' and 'copy to drive' checked.
    TuneSpan: (OS X app) A utility that allows you to distribute the media files in your iTunes Library across multiple drives. - http://tunespan.com/ - https://itunes.apple.com/us/app/tunespan/id528459889?mt=12 - Requirements: OS X 10.6.6 or later, 64-bit processor

  • How do i show the filename.type instead of the entire file path?

    How do i show the filename.type instead of the entire file path?
    I want it to show "ProgramSetup.exe" instead of "C:/Program Files/Oracle/JavaFX/ProgramSetup.exe"
    I have created a JavaFX program with the help of my manager
    below are the code
                   File file = fileChooser.showOpenDialog(Admin.mainStage);
                   if (file != null) {
                        textFiles.setText(file.getAbsolutePath());
                        String absolutePath = file.getAbsolutePath();
                        //String fileName = new File(absolutePath).getName();the reason i put the last line as // because it has error on that line....
    if i remove the last line, it will display but with the full path....
    i search through google and the guide on many forums aren't clear to me.....some said there are 2 ways but i tried and it is not working, atleast for me...maybe i left out something or what....can anyone help me on this?

    You don’t need the absolutePath:
    File file = fileChooser.showOpenDialog(Admin.mainStage);
                   if (file != null) {
                        textFiles.setText(file.getName());
                               }

  • I was lately downlaoding a 700mb file, but i lost the internet connection and i have the .part file and i cant click resume, is their any way that i can continue dowlaoding the file without the need redownloading from the begining?

    I was lately downlaoding a 700mb file, but i lost the internet connection and only 635mb was downloaded and i have the .part file but the download menu says that download failed so i cant click resume, is their any way that i can continue dowlaoding the file without the need redownloading from the beginning?

    I do not know if your file can be recovered.  But I may be able help you to recreate it with ease.  If you will settle for a composite where all image are re-sized for a particular tile size and virtually cropped to its aspect ratio.  However all source image need be gathered into a folder to use my script process. Paste Image Roll Script and Picture Package Support  Link  http://www.mouseprints.net/old/dpr/PasteImageRoll.jsx

Maybe you are looking for

  • Internal Hard drive for macBook pro 13 inch.

    Hello everybody :")   How are you? I hope that everyone is fine. I have come today  i need your opinion and your advice to me about my (HDD) i need to buy new HD for my book pro . Can you answer my questions and give me advice frist i will write for

  • Can't open a new folder on my mail account

    I'm on an Air OS X10.9.5  and have always had no issues making a new mailbox for in my mail app. All of a sudden it won't show up when I create a new mailbox. Can anyone help me with this?

  • Convert virtually any CAD file into a PDF document .

    Can Acrobat X Pro Convert virtually any CAD file into a PDF document using templates? Earlier Acrobat 9 Pro Extended used to be ?

  • Problems w/ YouTube in fullscreen in Safari

    iMac running Snow Leopard (OS 10.6) Safari Version 5.1.9 (6534.59.8) Flash player is up to date: 11.7.700.203 When I try to enlarge the YT video player to fullscreen, the screen will enlarge for no more that a second and then shrink back down to the

  • How to upgrade standby doubt

    hello, I read various Oracle documents, guides and metalink notes but I still have some doubts. Perhaps I missed something. starting env: dataguard (manual config, without broker) env with primary and physical standby in 11.2.0.1 on Linux x86_64 I do