Newbie - getting started

Hi,
Hopefully someone can help me here.  I'm looking to place either simulated or camera raw output (and here I mean a matrix of 8 or 10 bit values without debayering) into a RAW format so that I can experiment with the debayering, white balance, colour profiles, linearization or LUTs that I need to shift my camera output into a useable image.  I was thinking about using the Adobe DNG format - but I'm struggling to understand where to start with this.
What I'd like to do to start with is simply create a DNG file with, say, a 10x10 image size, 8 bit data with a ramp profile: e.g.
0 20 40 60 80 100 120 140 160 180
0 20 40 60 80 100 120 140 160 180
0 20 40 60 80 100 120 140 160 180
I've been looking at using the dng_validate example and creating a new function:
static 
dng_error_code dng_createsim (const char *filenameOut){
After several attempts at this, I've sort of guessed that I need to access the data buffer in negative->Stage1Image(), but I've not succeeded in this.
Thanks for any help.
Simon

Following is the code I put together based on Sandy's comments.  I'm a bit sketchy on most of it, but it 'almost' compiles.  I'm a bit stuck with the raw_ifd part - I don't think I'm getting the idea about the dng_image.  I'm also unclear about defining the thumbnail - blank is fine with me.
Thanks,
Simon
static 
dng_error_code dng_createsim (const char *filename){
int sz=10;    // size of image 
dng_memory_allocator alloc(gDefaultDNGMemoryAllocator);
dng_host host;
dng_memory_block * mem_block = host.Allocate(sz*sz);
alloc=host.Allocator();
dng_memory_stream mem_stream(alloc);
mem_stream.SetWritePosition(0);
for (int i=0;i<sz;i++) 
  for (int j=0;j<sz;j++)    mem_stream.Put_uint8(j*sz);
//dng_rect rect(sz,sz);
dng_image Rimage();
dng_ifd rawifd;
rawifd.ReadImage(host,mem_stream,Rimage);
dng_negative *negative=host.Make_dng_negative();
dng_image_preview thumbnail;
dng_file_stream streamout(
"out.dng",true);dng_image_writer writer;
writer.WriteDNG(host,streamout,*negative,thumbnail);
return dng_error_none;}

Similar Messages

  • Ops Centre Newbie - Getting Started.

    Hi experts,
    We’ve recently made the decision to utilize Ops Centre to patch, provision OS and firmware throughout our UNIX (Solaris & Linux) estate. Whilst I understand the importance to undertake the relevant training, at this point, it’s looking unlikely as the current asking price for such tuition is too expensive.
    I’ve managed to install and configure Ops Centre using the available online Oracle documentation onto a Solaris 10 - SPARC (Oracle VM) platform taking extra care that all pre-requisites outlined in the site preparation guide were met. I opted for the limited configuration during the install (no asset discovery, proxy deployment, storage library etc) but did decide on connected mode and it seems to be working fine. I’ve deployed the co hosted proxy controller and have managed to perform a custom asset discovery on a particular subnet.
    To help us further reach our goals, I’d appreciate if the following questions could be answered in detail (were possible).
    1. In order to apply patches to assets, it’s my understanding that each asset needs to be managed hence each asset must have the agent installed?
    2. What purpose do storage libraries serve and based on our requirements (as above), do we require any?
    3. We have many servers on many different subnets. From my understanding, a proxy controller is required per subnet. Is that the case? Or can the amount of proxy controllers be limited by DHCP or alike for example?
    4. If a proxy controller is required per subnet, then it’ll be far more advantageous for us to deploy proxy controllers into virtual platforms (preferably Oracle Linux). Would this be possible?
    Thanks,
    D.

    1. In order to apply patches to assets, it’s my understanding that each asset needs to be managed hence each asset must have the agent installed?Correct.
    2. What purpose do storage libraries serve and based on our requirements (as above), do we require any?Storage Libraries are primarily for virtual guest storage. zones, ldoms underlying storage.
    Not to be confused with the Software Libraries, which can store the patches, firmware images, OS isos, flash archives, etc.
    You can always add both Storage and Software libraries later if you want.
    http://docs.oracle.com/cd/E18440_01/doc.111/e18416/chapter_softwarelib.htm#BABBDJFH
    http://docs.oracle.com/cd/E18440_01/doc.111/e18416/chapter_storagelib.htm#sthref42
    3. We have many servers on many different subnets. From my understanding, a proxy controller is required per subnet. Is that the case? Or can the amount of proxy controllers be limited by DHCP or alike for example?For OS Provisioning, yes. Or a proxy may be connected to and server multiple subnets for OS provisioning, too. For patch and firmware, not required, as long as ports are open between the proxy and managed assets.
    http://docs.oracle.com/cd/E24628_01/doc.121/e21484/network_reference.htm#autoId5
    4. If a proxy controller is required per subnet, then it’ll be far more advantageous for us to deploy proxy controllers into virtual platforms (preferably Oracle Linux). Would this be possible?Yes. Only restriction (not listed in your requirements though) is that Linux proxies cannot OS Provision OVM Server for Sparc systems (LDOM Control Domains), and in general Solaris OS Provisioning is a little bit limited because the Linux proxies don't have the JET framework built in.
    http://docs.oracle.com/cd/E18440_01/index.htm

  • Some Help to get started needed for a newbie

    I am attempting to add some simple email functionality to a small utility
    program I am writing in Delphi for my school. We have used Groupwise for
    many years and I have programmed a bit in Delphi but mainly database work.
    Can anyone tell me where to find some documentation that will help me to
    get started in using the GW Tokens API with Delphi?
    How do I install it?
    Do I need a Type Library for it to use it effectively with Delphi?
    Is there some sort of basic skeleton code that I can refer to?
    I would greatly appreciate any help that anyone might offer here.
    Thanks
    Alan Humphries

    freemat2 wrote:
    Ooops putting some info would have helped.
    It will be a long hard road but..
    for VB (so you will need to translate for Delphi)
    Add references to Groupwise.exe to your project and Groupware type library
    GWCMA1.DLL
    Then this will create a new email and drop in a few addresses if supplied
    (eg from your CRM)
    Public Sub SendEmail(ByVal lsEmailAddress As String, ByVal lsDomain As
    String, lblProgress As Label)
    Dim vCommander As Object
    Dim rc As Long
    Dim sResult As String
    Dim lsOperation As String
    Dim i As Integer
    Dim sUserName As String
    Dim sEmailTo As String
    Dim nPtr As String
    Dim lsMsg As String
    On Error GoTo Error_Trap
    lsMsg = ""
    If lsEmailAddress = "" Then
    lsMsg = lsMsg & "Please supply a recipients email address" & vbCrLf
    End If
    If lsMsg > "" Then
    lblProgress.Caption = lsMsg
    MsgBox lsMsg
    Exit Sub
    End If
    If lsDomain > "" Then
    lsEmailAddress = lsEmailAddress & "@" & lsDomain
    End If
    Set vCommander = CreateObject("GroupwiseCommander")
    DoEvents
    lblProgress.Caption = "Create email"
    rc = vCommander.Execute("NewMail()", sResult)
    sEmailTo = lsEmailAddress
    While sEmailTo > ""
    nPtr = InStr(sEmailTo, ";")
    If nPtr = 0 Then
    sUserName = sEmailTo
    sEmailTo = ""
    Else
    If nPtr > 1 Then
    sUserName = left$(sEmailTo, nPtr - 1)
    End If
    If nPtr < Len(sEmailTo) Then
    sEmailTo = Mid$(sEmailTo, nPtr + 1)
    End If
    End If
    lblProgress.Caption = "Add " & sUserName
    lsOperation = "TextSetTo(" & vbDoubleQuotes & sUserName &
    vbDoubleQuotes & "; True) "
    rc = vCommander.Execute(lsOperation, sResult)
    If sResult > "" Then
    MsgBox "Error adding " & sEmailTo & " ,because " & vbCrLf &
    sResult
    End If
    Wend
    lblProgress.Caption = ""
    DoEvents
    Exit_Proc:
    Exit Sub
    Error_Trap:
    MsgBox "Error creating email " & vbCrLf & Err.Description
    lblProgress.Caption = "Error: " & Err.Description
    Resume Exit_Proc
    End Sub
    > Michael Risch wrote:
    > > DId you look at the Groupwise developer PDF or the sample code on the
    > > website? Both should be helpful.
    > > [email protected] wrote in news:KSlQh.218$7e7.73@prv-
    > > forum2.provo.novell.com:
    > > > Thanks - this is starting to look like a long, hard road
    > > >
    > > > Alan Humphries
    > > >
    > > >> Since you are using Delphi, all I can suggest is the PDF :-(
    > > >>
    > > >> Never ever had any luck with early binding and Delphi
    > > >>
    > > >> No need to install anything besides the GW Client though
    > > >>
    > > >>
    > > >> --
    > > >> Best Regards
    > > >>
    > > >> Tommy Mikkelsen
    > > >>
    > > >> IT Quality A/S
    > > >> Denmark
    > > >>
    > > >> Novell Developer Forums SYSOP
    > > >>
    > > >> Please Report back any success or failure, That way we all learn
    > > >>
    > > >> Sorry, but no support through email
    > > >>
    > > >> "I hate bugs".......Tommy Lee Jones, MIB
    > > >>
    > > >> Be a GroupWiseR, go http://www.groupwiser.net
    > > >
    > > >

  • Getting Started (newbie, student)

    I would like to get started learning the BI module but am a little unsure exactly which things I need installed. Of course, I already have the Enterprise Edition with OLAP option installed.
    I am confused as to whether the BI package is separate and distinct from the application server or if BI requires an active application server instance in order to be installed.
    Thx

    BI requires an install of an application server. THe app servers comes in 3 flavors viz. Webcache and J2ee, Business Intelligence and Forms, AND Portal and Wireless. You should install the BI flavor.
    Hope this helps.
    Swapan.

  • Newbie looking to get started in Mac programming

    Hi,
    I have a handful of ksh scripts written for Leopard, I would like to create an interface/wrapper in C++, ref existing system prefs, to bring everything together under a suite of commands and eventually rewrite the shell scripts into C++. Is there a preferred C++ application and help resources, samples, etc to get started?

    On macintosh, the preferred language is Objective-C, and the preferred framework is Cocoa. The tools to develop in Objective-C/Cocoa (and also other languages) are installable using your Leopard install disk, or you can download them on the [ADC website|http://developer.apple.com>.
    You also have the documentations that go with it, and a lot of courses about Cocoa and Objective-C programming.

  • I'm a Newbie - Hi!: what is the best way to get started?

    Hi,
    I'm retired but used to be a Senior Design Engineer with an aerospace components manufacturer.  The questionnaire didn't ask if I was retired!
    I have a basic working knowledge of computers and applications but I struggle with jargon, (i.e. I prefer the simple approach).
    My copy of Photoshop Elements 12 arrived yesterday.  I've just finished installing it!
    The instructions were quite clear as far as the installation went but I got a bit lost when the booklet started with the "Create an Adobe ID"
    It didn't seem to give any direction.  Any way somehow I managed to get here in the end having registered my product (twice - because I didn't see any activity after I hit the button the first time!).
    I own a Sony Alpha SLT A57 camera and also a Casio Exilim FH100 although the Sony is my weapon of choice for the most part.
    I'm on a basic photography course which leads to an intermediate and then ultimately an advanced course.  I also hope to follow on with courses that have been set up for Photoshop Elements too which are also available.
    I will be feeling my way for a while yet and I would appreciate some help (which will be needed inevitably).
    First of all, what is the best way for a guy with only basic skills to get started?
    Is there a page I can go to for help from first principles?
    I look forward to being a part of this community!

    Help> Getting Started is a good starting point, as is Adobe TV - Quick Links to Elements Adobe TV Tutorials.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • Need help getting started - I am a newbie and am royally confused

    I have Crystal Reports XI and VB.Net 2005 with CR functionality built in. I created reports directly in CRXI and now need to be able to use them in .Net.
    Here is where I get lost. When I created my RPT file it had me connect to a database (Access 2002) and then add a table and fields. It works great except now that I am porting to my .Net app the database it needs to connect to will always be changing (dynamic). The table and field names will always be the same. It is just the file name that changes, based on user inputs.
    So are there any tutorials, literature, help that anyone can point me to so I can get on with my steep learning curve? I started programming in VB.net and developing CR's just a short time ago and would appreciate a 'dumbed' down explanation so I can get a handle on this.
    Thanks for any help or advice offered.
    Regards
    TMA

    Here are various resources for .NET development with Business Objects products.
    Check out the developer library tutorials under the Crystal Reports section for help as well as the Crystal Reports samples in the application packages and additional code sample.
    Developer Getting Started
    [https://boc.sdn.sap.com/developer/gettingstarted]
    .NET Developer Resources
    [https://boc.sdn.sap.com/dotnet]
    Developer Library
    [http://devlibrary.businessobjects.com/]
    Links to our sample application packages:
    [http://support.businessobjects.com/communityCS/FilesAndUpdates/sample_applications_for_.NET_developers.pdf.asp]
    Additional Code samples
    [https://boc.sdn.sap.com/codesamples]
    Good luck,
    Jason

  • Newbie here getting started

    Hi everyone, I'm just getting started to record my piano pieces to my computer. I have an old Technics SX-PR700 digital ensemble. I want to record music from the piano to my macbook. Here i have some doubts.
    I want to record good audio sound as well as able to save the music notation to my computer. So I would need a midi cable right? A midi cable is able to record what notes can be played, but does it able to play actual recorded audio sound from my piano on the midi notes that is displayed on the program Audacity or Garage Band?
    If not, I would need a LINE IN cable and a MIDI to do both work..?

    Ok thanks for the helpful reply....I'm still a bit of confuse..been to many stores today to look for MIDI to USB cable Most of them are out of stock. However some sales promoters mention that, the common way to get MIDI out to computer is through another device which is the Interface. So i suppose there are direct ways from MIDI to MAC without an Interface right?
    I did a google search mention that Interface are used as electronic equipment to Communicate to laptops. So what makes MIDI to MAC without an Interface workable? Same goes to audio recording from piano to mac directly without any interface....
    My Old Technics has a Floppy Drive that records MIDI, If i can use a Floppy to record MIDI...then i do not need any cables at all....just need an external floppy drive to my mac possible?

  • Problems getting started with templates

    I am just getting started with the dreamweaver 30 day trial.
    I am trying to create my first file. When I try to open a new
    template file I get the message below-
    "Dreamweaver stores templates in the root folder of a site,
    but there are no sites defined. Please add a site"
    What does this mean? How do I find the templates? I am a
    total dreamweaver newbie trying to learn the program.
    Thanks

    ntmunger wrote:
    > I am just getting started with the dreamweaver 30 day
    trial. I am
    > trying to create my first file. When I try to open a new
    template
    > file I get the message below-
    >
    > "Dreamweaver stores templates in the root folder of a
    site, but there
    > are no sites defined. Please add a site"
    >
    > What does this mean? How do I find the templates? I am a
    total
    > dreamweaver newbie trying to learn the program.
    >
    > Thanks
    It's not a problem with templates.
    You have to create a site for your website - F1 will show you
    how to do
    that. Once you have a site created, you will be able to
    create new template
    files, and they can write themselves to the correct part of
    the site.
    HTH,
    Pete.
    Peter Connolly
    http://www.acutecomputing.co.uk
    Derby
    UK
    Skype ID: acutecomputing

  • Getting started question

    I'm sure I'll have fewer questions as times moves on, but here is another newbie question.
    I've gone through the initial getting started chapter on the 'Calculator' stateless session bean J2EE project.
    At the step:
    <i>Deploying and Running the Calculator Application</i>
    I think I successfully deploy my EAR.
    The page won't load in my browser.
    I've tried many flavors of localhost, localhost.corp.adobe.com, AHAMILTO1-XP and AHAMILTO1-XP.corp.adobe.com to port 50418/Calculator/Calculator.jsp.
    For example:
    http://localhost:50418/Calculator/Calculator.jsp
    Am I using the wrong port?  Is the port 50418 not an http port?  I guess I'm asking how do I determine my http port number?  I also tried 50000.
    I get the response during deployment:
    <i>Jan 11, 2005 2:27:57 PM /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Deploy Thread] INFO:
    CalculatorEar.ear -> Successfully deployed file:/C:/DOCUME1/ahamilto/LOCALS1/Temp/temp54088CalculatorEar.ear
    DEPLOYMENT ...
    ==> SDM host : AHAMILTO1-XP
    ==> SDM port : 50418
    ==> URL : file:/C:/DOCUME1/ahamilto/LOCALS1/Temp/temp54088CalculatorEar.ear
    ... FINISHED SUCCESSFULLY</i>

    Hello,
    1. Does your browser show the startpage of your local WAS if you try URL http://localhost:50000
    2. Where does your port 50418 come from? It seams that you have several instances on your computer, maybe you should try http://localhost:50400/Calculator/Calculator.jsp to reach your application. XXX18 is normally the sdm port through which you deploy your application to j2ee engine.
    Maybe that helps,
    André
    Message was edited by: Andre Siegling

  • Getting started porting Linux driver

    Hello,
    If this question has been posted somewhere else please point me in the right direction.
    I'm new to solaris and my goal is to port a Linux driver (vmebus pci device on Redhat) to Solaris (X86 v5.11). The Linux driver is all written in straight C. I've installed Solaris Express Dev Edition 2/07. I see that gcc is there (under /usr/sfw/bin) but it seems like a bare-bones development environment (no enviroment variables set up , etc).
    My question is is this the right set of development tools to proceed forward with or should I be downloading something else ? Is there some easier to use graphical 'IDE like' set of tools that is more appropriate for a Solaris newbie like me ? I know Forte is a commercial product, what is the best freeware for graphical C development ?
    Regards,
    Brent
    Message was edited by:
    bbartson

    Here's what I would do... go to this website and download an ISO of a live CD. You can burn it, stick it in your CD drive, and start your PC. It will boot to Linux without ever having to format anything, that way you can tinker around with how it feels. After you are happy with that, you can download and install a distro...
    http://www.kubuntu.org/special-cds.php
    As far as disrtos go, I would choose one of the following for a first time user:
    Kubuntu (because it's easy to get started) http://www.kubuntu.org/ or
    Fedora Core 5 (because it's easy to download and add packages -- most in the Add/Remove Programs app) http://fedora.redhat.com/
    Both of these distributions have a lot of help and howtos when it comes to Oracle as well. If you don't like KDE (I do but that's personal preference) then FC5 gives you the option of Gnome or KDE and Ubuntu is the non-KDE version of Kubuntu.
    ~Jer

  • Getting started with Java and XML

    Hi,
    Although I am pretty familiar with Java, I am a total newbie with using it to parse XML. I have been reading quite a few tutorials so am getting a good understanding of it and am thinking of using the DOM model for my purposes.
    What I haven't been able to find, however, is how I can actually get started with this. I have tried compiling a few examples and have been getting errors such as:
    xmltest.java package javax.xml.parsers does not exist
    xmltest.java package org.w3c.dom does not existetc etc...
    It looks like these packages don't come with J2SE. Can anyone confirm this? Do I need to download and install the Java Web Services Developer Pack to solve this problem?
    Finally, I know I will need an XML parser but have read that JDK 1.4 has it's own parser (Crimson). Is this adequate for parsing XML files or will I also need a parser such as Xerces?
    Thanks so much for any help!

    Hi DrClap,
    Thanks for the reply. I have JDK 1.4.1_02 installed on my server but the following error keeps coming up when I try to run my example:
    Exception in thread "main" java.lang.NoClassDefFoundError: org/w3c/dom/NodeAre there any further packages I need to download in order to run Java with XML? I have read some people install JAXP and XERCES... are these necessary for parsing an XML document or should J2SE 1.4.1 be sufficient?
    Thanks for your help!
    Jill

  • Getting started with ATG and Eclipse

    Hi,
    I am newbie in ATG web commerce. I am doing some R&D how to integrate ATG with eclipse JBoss and oracle. I searched on Google, there is one very interesting topic about getting started with atg, jboss, oracle :
    http://atgdeveloper.wordpress.com/2009/04/19/getting-started-with-atg-jboss-and-oracle
    It is very helpful to me but there is one problem what are the requirements of eclipse to integrate it with ATG. Is there any ATG plugin, which I can download all the plugin for eclipse and please can anyone help me if there is any ATG configuration documentation available, please share link or document(if there is complete step-by-step documentation available).
    I will greatly thankful to you. Very very thanks in advance.
    Thanks,
    Manveer
    Edited by: msingh on Nov 9, 2011 3:37 AM
    Edited by: msingh on Nov 9, 2011 3:38 AM

    Hi GarethR,
    I have a looked on ATGInstallationGuide.pdf, which url it shows is not working http://www.atg.com/eclipse. I think the url for ATG plugin has been changed now but I didn't found that url on google. Can you please help me to get correct url.
    When I try to use this url using eclipse update manager. It shows me no features available for this site.
    Thanks,
    Manveer

  • Getting started with oracle and jdbc

    i have downloaded ojdbc14.zip from oracle.com
    it's documentation only tells you about the api and the packages and nothing about how to configure it.
    how do i get started? where do i unzip those files and what to do next?
    please help

    "The Old oracle.jdbc.driver Package Will Go Away Soon
    If you still have existing applications that use the
    old oracle.jdbc.driver
    package, now is the time to convert your code."
    And who is so foolish as to use concrete types
    instead of java.sql and javax.sql interfaces or embed
    driver class names in their code? Well, anybody who's more interested in optimal performance than being generic, and willing to put up with the headaches of that, such as providers of high-performance OR mapping tools or someone tuning a very heavily used bit. Or anybody working in a committed Oracle-only shop. It's not a one-size-fits-all world...
    Again, Oracle is evolving the standard. No, the standard is Sun's java.sql interface.Yea, Sun evolved Java, and Oracle is recommending the use of Datasources to keep step with that evolution...
    This still
    works, but Oracle is shifting away from <sid> and
    using <service name> instead. The alternate syntax
    for the URL is:
    String url=jdbc:oracle:thin:@<host>:<port>/<database>
    This has been true for as long as Oracle has had a
    thin, type IV JDBC driver. The URL syntax hasn't
    changed.
    Yes it has and Oracle says it has, here:
    http://download-west.oracle.com/docs/cd/B14117_01/java.101/b10979/urls.htm#BEIJFHHB
    Wherein it is written, in Section 3.2.1 of the Oracle� Database JDBC Developer's Guide and Reference, the sesction on the several supported URL formats for Oracle 10.1
    Notes:
    * Oracle Service IDs are no longer supported at 10g Release 1 (10.1).
    They go on to list three URL styles supported:
    Oracle Net connection descriptor - like an entry in tnsnames.ora (ick!)
    Thin-style service name - the most common, what was quoted above.
    LDAP syntax - for having an LDAP service resolve the database for you
    However, in the old 8.1.7 JDBC documentation, here:
    http://download-east.oracle.com/docs/cd/A87860_01/doc/java.817/a83724/basic1.htm#1006213
    Oracle lists support for:
    Net8 connection descriptor - Net8 is the old name for Oracle Net
    Thin-style sid name - what was quoted in the post to which I first responded.
    Thin-style sid name syntax has a colon between the port and the sid; thin-style service name syntax has a forward slash between the port and the service name. SIDs and service names are not the same thing, although they serve the same purpose in a URL (connecting you to the right instance) and often have the same value. However, a SID for a database is set at DB creation time, is unique to the DB, and cannot be changed easily. Multiple service names can be configured for a database, and they can easily be changed (if you're the DBA). Oracle is providing an additional leval of abstraction by moving to service names, to support additional features and choices. While many installations don't need all that and have in essence ignored the distinction bewteen SID and service name, some multi-database projects can benefit from it.
    >
    StuDerby, I think you should look into this a bit
    more. Your advice is far from optimal, IMO.
    Yeah, I could've taken the time to write a more generic, newbie friendly repsonse; instead, I lifted directly from the Oracle documentation that was cited earlier since newbies seem to have an aversion to reading documentation.

  • Getting Started with FCP

    I'm a newbie with Mac's even though I used them in the early 90's. I'm currently looking for the best way to learn FCP and eventually other programs in Final Cut Studio 2. My immediate goal is to shoot and edit local events and put them in DVD format. I would like to the same for home movies.
    So far, I've read the first two chapters in the FCP user manual and looked ahead to later chapters. After previewing I believe what I really need is a tutorial rather than a manual. Thus, I'm looking for suggestions to help me learn.
    Below I listed some training courses I could possibly try out: (Feel free to offer your opinion.)
    1. Apple offers 'Basic Training In Final Cut Studio' for $149 and 'Complete Training for FCP' for $129. Tom Wolsky is the instructor in both. One gets about 4 hours of training in these sessions. They did get good reviews from the three posters on Amazon.com. That's not a big enough sample to base a decision on. Anyone here try these videos? If so, did you feel they were worth it?
    2. Apple also offers in store individual lessons and group workshops with certified trainers. Unfortunately, the nearest Apple Store is about 15 miles away. I'd prefer not to drive. Although I would consider it if only to get started. Has anyone in this group tried this training and did you find it worthwhile?
    3. I've also considered buying a subscription to Lynda.com. Thus, I'd have an endless number of software tutorials to choose from for an entire year. Might this be a better choice?
    4. In the past I've tried learning software from books. I found it difficult. I'd prefer to work with someone or follow a video sequence. I do have access to individuals who could help me, but for extensive training I would have to hire someone.
    Any other suggestions or preferences would be appreciated.

    1. Apple offers 'Basic Training In Final Cut Studio' for $149 and 'Complete Training for FCP' for $129. Tom Wolsky is the instructor in both. One gets about 4 hours of training in these sessions. They did get good reviews from the three posters on Amazon.com. That's not a big enough sample to base a decision on. Anyone here try these videos? If so, did you feel they were worth it?
    Any tutorial or book by Tom Wolsky will go you good. His stuff is the best.
    2. Apple also offers in store individual lessons and group workshops with certified trainers. Unfortunately, the nearest Apple Store is about 15 miles away. I'd prefer not to drive. Although I would consider it if only to get started. Has anyone in this group tried this training and did you find it worthwhile?
    Face to face instruction is always better. There are several places that do this, and really, this will be the fastest way to go, as you can ask questions and have the insturctor go into greater detail on areas you aren't clear with.
    Shane

Maybe you are looking for

  • How can i change the color of an entire row of a JTable ?

    Hi all, I have a JTable with 4 columns; I have to change the background color of the rows which have a certain value contained on the fourth column. So, if a row has, on its fourth column, a particular value...this row must change background color. A

  • Can 1 iPrint manager manage printers across subnets

    Hello, I built a new server SLES 11 SP3/OES 11 SP2 and I have iPrint installed on this server. I have 3 elementary schools that each have their...

  • Same disk permissions problem

    Can anyone figure this one out? I am getting an alert from Drive Genius each day that I must repair permissions or else something terrible will happen The thing is I have noticed it is the same permissions that need repairing here they are below. Wha

  • Can't re-install Premier trial after deleting it...

    Hi, last week I decided to trial Premier - I downloaded the Application Manager and hit "TRY" downloaded Premier. Then, my mac screen  went all weird (long story) so I trashed everything (thinking that the download had somehow caused issues). Since t

  • Scheduling PI Interface

    Hi All, We want to schedule PI interface every 1 hour but with a condition that interface should not run between 6:00 PM to 11:59 PM. We were checking ATP for this but were not able to achieve the same. Please suggest how this can be done. Reg, NJ