Best place to store FCPX projects?

I wanted to find out where is the best place to store FCPX projects? I import the footage/audio to a external harddrive, but save the projects/render files to computer harddrive. Should I save the projects to the external harddrive where the footage is? Or does it even matter?

See this post from this forum.
https://discussions.apple.com/message/16411405#16411405

Similar Messages

  • Where's the best place to store email templates?

    Hi all;
    In a web app I store all my email templates in a files folder in the web app. Can't do that with a worker in a cloud service - no files. So where's the best place to store them? In a BLOB? And if so, is there a way to have files in my project get automatically
    written to BLOB entries when I publish?
    thanks - dave
    What we did for the last 6 months -
    Made the world's coolest reporting & docgen system even more amazing

    Hi,
    I think we could use azure blob to save files.
    >>is there a way to have files in my project get automatically written to BLOB entries when I publish?
    If you choose azure cloud service, you could write the upload code at role onstart method. If you choose Azure website, please consider use azure webjob to do this, refer to
    http://azure.microsoft.com/en-us/documentation/articles/websites-dotnet-webjobs-sdk-get-started/ for more details about webjob.
    Regards

  • Where is the best place to store Contacts in order to later print labels and such?

    Where is the best place to store contacts in order to later print labels etc?

    I found this excellent article last week describing how to print labels from your Mac's Contacts application:
    How-to: Print customized address labels for holiday card envelopes ...

  • What is the best place to store salts

    Hi,
    I'm using a combination of flex ,CF and MS SQL
    Where is the best place to store salts for user passwords?

    Hi,
    Table is good if "constant" might change so you can create APEX form to maintain those.
    You could also use package specification just for constants e.g.
    CREATE OR REPLACE
    PACKAGE MY_GLOBALS
    AS
      g_const_1 CONSTANT DATE := TRUNC(SYSDATE) + 365;
      g_const _2 CONSTANT VARCHAR2(30) := 'somestring';
    END;
    Then you can refer those in procedures, functions and APEX processes like (package_name.constant_name) MY_GLOBALS.g_const_1.
    Regards,
    Jari

  • Best place to store application database

    Where is the best (most secure) place to store database files that are application specific?
    I'm writing a kiosk application that runs on Windows 7 x64 as a desktop application.  A non-privileged user will be logged in to Windows and the application runs as this non-privileged user.  It relies on 2 MySql database files, one with read-only
    access and the other with read-write access.  Where is the best place to store these 2 database files such that only the user that the application is running as (the currently logged in user) has access to them?  My concern is keeping them secure
    if someone manages to log into the machine as a different user.  Am I best to put them under %USERPROFILE%\AppData\Local\<MyCompany>\<MyApp> ?

    Yes.  You should programmatically obtain the directory by calling SHGetKnownFolderPath() +
    FOLDERID_LocalAppData
    https://msdn.microsoft.com/en-us/library/windows/desktop/bb762188(v=vs.85).aspx
    By Default the only users with access to a user's %AppData% directory are LocalSystem, Administrators and the user itself.  A different user could not access the directory unless the user was an Administrator who was elevated.
    thanks
    Frank K [MSFT]

  • Where  is the best place to save my projects?

    I dont know if I have been saving my Project right but I also have a external hard drives and I thought I was saving it their but I check it today and their is nothing on it . Where is the best place to save it or do I even need the external hard drive? Thanks

    No idea what you might have done wrong...
    By default your projects are saved in Macintosh HD/Users/~<name>/Music/Logic/ folder on your boot drive. Check it first.
    You can also try to open your project again using recent files list in Finder or in Logic itself. Then you can find the exact location of your project folder: in the Arrange select an Audio region and go Audio -> Show Selected File(s) in Finder. This will open Audio Files folder in the project folder (well, this will work only if external files are included in the project's assets).
    Another method will be using Spotlight (click on magnifying glass icon in the upper-right corner of the screen to open Spotlight and type in your the name under which you saved your project).

  • What is the best place to store global constants?

    Hi,
    I want to store some contants and access it through procedures and functions, what would be the best place to do this? I thought substitution strings would work, but it isn't working for me in my procedures. Can we use Substitution string in compile code such as procedures and functions? I use SQL developer to write procedures.
    Cheers

    Hi,
    Table is good if "constant" might change so you can create APEX form to maintain those.
    You could also use package specification just for constants e.g.
    CREATE OR REPLACE
    PACKAGE MY_GLOBALS
    AS
      g_const_1 CONSTANT DATE := TRUNC(SYSDATE) + 365;
      g_const _2 CONSTANT VARCHAR2(30) := 'somestring';
    END;
    Then you can refer those in procedures, functions and APEX processes like (package_name.constant_name) MY_GLOBALS.g_const_1.
    Regards,
    Jari

  • Best place to store game currency

    Hi, where would be the recommended place to store game currency i.e coins?
    ApplicationData::Current->RoamingSettings
    Looks good since this will sync between devices.  However, I get intermittent failures with
    'The RPC server is unavailable.'
    This would be bad if the user had just bought currency.  Also, I like this to work correctly if the user should drop offline for whatever reason,
    I'm guessing this will fail if the user loses connection.  So should I write to both local and roaming settings?
    Finally, if the user does not have a microsoft account, will this work, and if they install the game before they bind it to a microsoft account, will it still work?

    Roaming should be fine. That saves locally then since in the background. The user doesn't need a connection, though it won't roam until there is one.
    The user needs an account to install the app, so that won't be a problem

  • Best place to store resultset of a Web Application

    Hi
    The setting:
    I have a Web application - The servlet accesses the backend and populates resultset. The results should be stored in beans so JSP can access them and display them.
    The database resultset is temp and specific to each user or each request and it either is used across session or across request.
    Question1:
    How do I store the resultset in beans ? Should I create a list or arraylist? or there are other specific beans that handle such requests? I am just familiar with beans that set or get basic type vars like integers and strings
    Question 2:
    When resultset is used across session or across request, what is the best option to store them in? Meaning in each case what is the best option?
    I really appreciate your advise to make sure my application is set correct from the beginning. If this is not the correct forum to send it to , kindly pointout the correct forum so I can send it.
    Yara

    I just meant if it should be in a list/array list or
    some kind of bean .... I was suggesting a Collection of DTO's. "Bean" is a global term for a class having private properties and public accessors/mutators. DTO's follows this pattern with the goal to transfer data between the data tier and the business tier.
    Do you recommend I use JSF ?
    will this enable easier access to display the results
    in tabular formats ?
    Or I can get same results using the model of
    servlet/jsp/bean without JSF?Or I recommend it? Well, it depends on your requirements, knowledge and time. You can write it all using plain vanilla servlets and JSP, but you can also consider a MVC framework, which is generally a better choice for an enterprise webapplication (better maintainability, reuseability, etc). If you knows nothing about servlets and JSP, I rather recommend you to learn that first before using any MVC framework. JSF provides the h:dataTable component which eases the displayment of a Collection of DTO's. In JSP you can use c:forEach to iterate through a Collection.

  • Best place to store a subject's name

    Would it be better to put a subject's name under the People keyword or to put it in the caption?
    I am used to iViewMedia Pro and this is really different for me.
    Suppose I want to find all images of Mary Smith? What's the best way to make sure I find them all in Aperture?
    This is really a whole new way of working but I am starting to like it -- maybe .

    David,
    I'm in the same boat and thinking the Caption field is the best place as you can select it to show in the view options for both the main and grid viewers. It will be interesting to hear other thoughts on this.
    Sam

  • Where is best place to store birthdays ?

    Where is the best place to record people's birthdays  for the year ?  So I don't have to record every  year ?

    I use the calendar that comes with your iPhone. It has a feature that allows you to repeat the event yearly, and it has reminders as well. For example; lets say my son's name is Sam.....I open the calendar to his birthdate, type in.."Sam Smith - B/D" (2000). I then show the event as an ALL DAY event, next I show it to REPEAT YEARLY, then I select a 1st re minder for one week earlier, and the 2nd reminder on the day of the event ( the default time is 9:00 AM....but you can change this>. Hope this info is helpful.

  • Where is the best place to store media?

    I have been storing all of my video files in Apetuture since it is easy to just import everything in there when I insert my photos (either off of my iphone, or sd card.)  However I have to export the video files from Apetuture over to Final Cut Pro X in order to create my videos. I've been doing this since FCPX came out, and now have duplicated a lot of videos, and used up a lot of my HD space.
    I have alos liked keeping my videos in Apetuture so I could keep them in the same events as the photos that "go with" the video, not to mention it's nice to have all my media in one place, and I feel that Apetuture is a better media orginazer than fcpx.  However, I don't like having to always export videos, and than import them back in to FCPX.  So I'm curious what the best way to handle media is.  Should I store all my videos in FCPX? Keep them in Apetuture and continue doing what I'm doing? Or some other method?
    Thanks.

    what your are doing isn't a bad thing in my opinion. aperture is a great way to keep all your footage that was shot with a HDSLRs. It will double up your storage, so i propose haveing your aperture library on a seperate drive. import media into FCPX directly and use aperture as your back up. Backups is a great way to get you out of those tight situations where something becomes missing. im sure already knew thaty though. For me i only put my finals in aperture because I like how aperture stores my photos and videos in events, instead of finder. I import directly into FCPX and work with the footage one a seperate drive, ALWAYS. Its too much work on the harddrive running videos files, OS, and FCPX all at the same time.
    hope this helps

  • When group-working from SAN, where is the best place to store Cache Files, the Cache Database, and render files?

    I have a small post production house, and we are spinning up into editing our first series. We're all working from a SAN, and sharing projects and sequences via the Media Browser. It's working great so far, but we've been having issues (could be user error) with trying to figure out where best to store the Media Cache database, the cache files, and the preview files so when a project is moved from one machine to another, it doesn't constantly have to re-conform all of the media in the project.
    We have a very large master project, as this is a documentary style show, so there are hours and hours of clips.
    When I open a project on a new or different machine it has to conform EVERYTHING in the project again.
    Where should I store all these conform and cache files so that new people can get started working without having a machine literally be unusable until the conform process finishes?
    Thanks!

    Hi Jon,
    I have a small post production house, and we are spinning up into editing our first series. We're all working from a SAN, and sharing projects and sequences via the Media Browser.
    Glad it is working for you. Just to let you know, this workflow is not officially supported so your mileage may vary based on the kind of system you're working with. There are a lot of variations to the quality of these kinds of systems. Some are turn key, some home built - so I think you understand.
    It's working great so far, but we've been having issues (could be user error) with trying to figure out where best to store the Media Cache database, the cache files, and the preview files so when a project is moved from one machine to another, it doesn't constantly have to re-conform all of the media in the project.
    While it's possible to have the cache files (and the database) in a central location (I only know of one place that pulls that off, and it's a very, very large place), the systems that have this data stored locally are far more reliable. You can work around all the reconfirming by avoiding moving the project data around. You really don't need to move the project around from place to place. Have one computer as the "hub" for inputting data from other workstations. Wouldn't that work?
    When I open a project on a new or different machine it has to conform EVERYTHING in the project again.
    Can't you just have the master project on one machine and work on shorter sequences of your doc on the other machines? When done, just import to the master machine.
    Where should I store all these conform and cache files so that new people can get started working without having a machine literally be unusable until the conform process finishes?
    Premiere Pro simply must have those cache files in order to work. Sorry, there's no way around this problem unless you change your workflow.
    Thanks,
    Kevin

  • Where is best place to save xcode projects?

    Hi,
    I am a newbie on xcode and before I start I have a general question where to save xcode projects the best way?
    Best regards,
    Thomas

    Use whatever is convienient for your skills, resources, budget. Do it now...don't wait and don't use something that you'll just ignore later and stop using.
    At least put up a Time Machine backup...other than that, if you're familiar with SVN/GIT, you can search Xcode Help on: resources ...to see details of putting those into place, etc.

  • Best place to store THUMBNAIL AND WAVEFORM CACHE?

    I was taught that when creating a new project, it's best to create a folder
    on a seperate media drive, and direct your scratch discs, thumbnail & waveform cache as well as the autosave vault to that drive & folder. This way,
    everything associated with that one project resides in that one folder on
    your media drive, seperate from the computers hard drive and if you have
    to move the project to another computer or delete everything associated
    with the project, you just move or delete that one folder.
    This has served me well in the past,...but,
    I was recently working with (6) different G4 1.2 laptops running FCP 4.5.
    It was a training class and the machines were working 8 hours a day for
    6 days straight. They were not networked together in anyway.
    Periodically, everyone of them would "lose" the waveform cache and thumbnail cache pictures while editing. I don't mean the folders would
    disappear, I just mean they'd stop generating the little thumbnails and
    waveform pics on the timeline. The temporary fix was to just save the
    project, close FCP, and reopen the project. They'd all pop back in and be
    there again for a while.
    #1 - Anybody know why this would happen?
    #2 - It was suggested to me that to avoid this happening in the future,
    that you should should direct the thumbnail and waveform cache folders
    to live on the HARD DRIVE of the computer, the same one with the app,
    and NOT in the same folder as the seperate media drive where you capture
    and store your video.
    This goes against everything I originally learned, but was wondering what
    others might have to say or have experienced on this point.
    I'd appreciate any input. Thanks.

    gulp ... jumps right in with both feet ...
    I think you were taught wrong.
    this is not the official path as laid down by the gods of fcp
    conventional wisdom suggest that you should set your scratch disk location once and then let fcp organise everything else.
    re your questions:
    1. no idea ... not the end of the world but certainly a weird glitch tho.
    2. some do, some don't ... tiny files w. very low overhead, location shouldn't be a factor in the problem you noted

Maybe you are looking for

  • How to remove old Ipod from Itunes?

    Hi. Have bought a new Ipod Classic 80g as wanted more space. Used to have an old ipod mini 4g. How do I remove the association of the mini from itunes? Now when I buy music from istore it still thinks it is for the mini not my new classic so I have t

  • ESATA external and iMac

    Hello, I have the latest iMac 24", 3.06GHz Intel Core 2 Duo, 4GB memory. I'm looking for another external drive. Can this mac use eSATA drives? Sorry I don't much about them. Thanks.

  • My mac os x wont start

    I can turn on my MacBook and it goes to the gray start-up screen with the gray apple and spinning dial. It stays on this screen and then just shuts off. My battery says it has 3 out of 5 dots filled. I have a paper I need to print tonight on the Mac

  • Automatic batch determination - access sequence and search procedure

    Hello all, I would like to know how will the system automatically start a batch determination for TOs in warehouse. pl. post any documents related to it. I would like to know how to activate automatic batch determination in the system for transfer or

  • No business partner found

    Hi   I have been created key user in BP. I used Create Key Users Automatically and Create Key Users Manually two methods, i can find this key user in tcode bp. When i create message use tcode NOTIF_CREATE, i can select system/ibase,component, but rep