Trouble Outputting to MiniDV

I have been trying to output my FCP sequence to a mini DV via a firewire to my camcorder but about 8 minutes into the sequence, the audio and video goes out of sync. At first I thought maybe the frame rates for the timeline and output were different, but they were both the same. I am using FCP version 4.5HD.

Export your sequence as a QT Movie. Put the QT Movie in a new project and try that. Also close all other projects.

Similar Messages

  • Trouble outputting for web use

    I have had various problems outputting documents to Jpegs for use on a webpage. I am exporting at the standard res of 72 ppi but find the quality unacceptable when I import these into i-web. Could this have something to do with the resolution certain images were scanned or imported at? Also the text is not reproduced as crisp as expected.
    I am a bit of a novice in terms of Indesign so there may be an obvious solution that I haven't considered. Any help would be gratefully recieved.
    Thanks
    Angerman

    Hi Bob,
    Thanks for your help so far. I've tried exporting the PDF then converting to JPG in PS but the image quality appears to be worse than ever! Not sure if the settings I used for PDF where suitable for web use. Any ideas on how to maximise quality, maintaining crispness of fonts?
    Thanks
    Anton
    Date: Mon, 7 Sep 2009 06:21:59 -0600
    From: [email protected]
    To: [email protected]
    Subject: Trouble outputting for web use
    Export a PDF of the page you want to rasterize and open the PDF in Photoshop using the appropriate settings there. Save as JPG.
    Bob
    >

  • Having trouble outputing to tape via firewire

    I'm trying to output to tape via firewire. However I'm only recording audio and not video. Device control preset is Firewire NTSC. Video playback preset is Apple Firewire NTSC (720 x 480)
    Any suggestion?

    Make sure the your Video out is set to ALL FRAMES along with the firewire.
    I've no experience with the deck so can't offer any help with it's settings.
    As a trouble shooting measure, does the video show up if you use another DV/Analog converter (then on to a TV monitor to visually verify)?
    x

  • Trouble importing from miniDV cam

    I'm importing my old miniDV movies from my Panasonic NV-GS27 connected with a firewire400-firewire800-thunderbolt cables to a MacBookPro into iMovie.
    Until yesterday everything worked ok, today after 4 minutes the screen turn off (ok, it's the screensaver but before it keep always on while importing) and at the end of an 1 hour acquisition I've got only the first 10 minutes acquired (but iMovie showed all the images from start to end of miniDV). I haven't changed anything (well, I think so), suggestion on what can be happened?
    p.s. setting the monitor to always on doesn't change anything

    the capture stopped before the sleep, I've tried to keep always on also the disks but nothing happened
    I've also tried with my MacMini, after 37 min the capture stopped in the same way . I've noticed also that when the capture is stopped the movie showed in iMovie flash about every second

  • Trouble outputting all query results

    For some reason this code doesn`t output all the results only
    the first one. How can I can it working I did try a way that output
    all the results the same amount of times as there are Referer
    entries in the db which is obviously not what I want. What is the
    way to do thisso that it is cfoutput right? Thank you very much
    <cfquery name="qrysales">
    SELECT Referer
    FROM clientinfo
    </cfquery>
    <cfoutput><cfif len(qrysales.Referer)>
    <cfif find("?", qrysales.Referer)>
    <cfset paramList = "q,p,terms,search,query,qkw">
    <cfset strStart = find("?", qrysales.Referer)>
    <cfset referer_queryString =
    right(Referer,len(qrysales.Referer)-strStart)>
    <cfset referer_url =
    left(qrysales.Referer,(strStart-1))>
    <cfloop list="#referer_queryString#" delimiters="&"
    index="i">
    <cfif listfind(paramList,listfirst(i,"="))>
    <cfset variables.searchPhrase = listlast(i,"=")>
    </cfif>
    </cfloop>
    </cfif>
    </cfif>
    <cfif isdefined("variables.searchPhrase")>
    <cfoutput>#variables.searchPhrase#</cfoutput>
    </cfif>
    </cfoutput>

    The code works fine using the querynew values. When I use the
    db cfquery then I get the results output over and over again. Why
    is that?! Thanks
    <!---
    <cfquery name="qrysales">
    SELECT Referer
    FROM clientinfo
    </cfquery>--->
    <h3>QueryNew Example</h3>
    <cfset qrysales = QueryNew("referer")>
    <!--- make some rows in the query --->
    <cfset newRow = QueryAddRow(qrysales, 4)>
    <!--- set the cells in the query --->
    <cfset temp = QuerySetCell(qrysales, "referer", "
    http://search.live.com/results.aspx?q=environment+property+study&FORM=SSRE2
    ", 1)>
    <cfset temp = QuerySetCell(qrysales, "referer", "
    http://search.live.com/results.aspx?q=healthcare&mrt=en-us&FORM=LIVSOP",
    2)>
    <cfset temp = QuerySetCell(qrysales, "referer", "
    http://www.google.co.uk/search?q=grande+rio&sourceid=navclient-ff&ie=UTF-8&rlz=1B2GGFB_enG B251",
    3)>
    <cfset temp = QuerySetCell(qrysales, "referer", "
    http://www.google.de/search?q=Rio-Grande&ndsp=20&hl=de&ie=UTF-8&oe=ISO-8859-1&start=30&sa= N",
    4)>
    <cfoutput query="qrysales"><cfif len(#Referer#)>
    <cfif find("?", #Referer#)>
    <cfset paramList = "q,p,terms,search,query,qkw">
    <cfset strStart = find("?", #Referer#)>
    <cfset referer_queryString =
    right(Referer,len(#Referer#)-strStart)>
    <cfset referer_url = left(#Referer#,(strStart-1))>
    <cfloop list="#referer_queryString#" delimiters="&"
    index="i">
    <cfif listfind(paramList,listfirst(i,"="))>
    <cfset variables.searchPhrase = listlast(i,"=")>
    </cfif>
    </cfloop>
    </cfif>
    </cfif>
    <cfif isdefined("variables.searchPhrase")>
    #variables.searchPhrase#
    </cfif>
    </cfoutput>

  • Having trouble Output streams and text formatting???

    Salutaions!
    I'm trying to write a peice of code that takes input from a file and outputs it in the following way: (1)Any string of two or more blank space is replaced by a single space. (2)All sentences start with an uppercase letter. Define a sentence as beginning after a ".", "?","!"
    This is what I got: Please help!
    import java.io.*;
    import java.util.*;
    public class Empty
    private static boolean cap;
    private static DataInputStream input;
    private static DataOutputStream output;
    private static String inputFile, outputFile;
    public static void main(String[] args) throws Exception
         input = new DataInputStream(new FileInputStream("a://in.txt"));
         output = new DataOutputStream(new FileOutputStream("a://out.txt"));
         char thisChar, lastChar = ' ';
         while(input.read() != -1)
         thisChar = ((char)input.read());
         if(lastChar != ' ' && thisChar != ' ')
              if(thisChar == '.' || thisChar == '?' || thisChar == '!')
              {    cap = true;
              output.writeChar(thisChar);
              lastChar = thisChar;
              else
              cap = false;
              output.writeChar(thisChar);
              lastChar = thisChar;
         output.close();
         input.close();

    one clear mistake i can see in this method is that you r calling input.read() twice every time. once in the if(input.read()..) statement and then in the statement
    thisChar = ((char)input.read());
    the byte read the first time is not captured anywhere.
    do you have some specific motive behind doing this?
    luck!
    y

  • Trouble outputting digital waveform to single line

    i want to output to a single digital line a digital pulse. my current attempt is to generate a digital waveform and then provide this as data to a digital line output. the vi runs, and the waveform appears as i want, but the digital line doesn't output anything? any help would be greatly appreciated!
    Attachments:
    digital pulse out.vi ‏32 KB

    Hi
    In reference to my previous post, you can just leave the inner for-loop, but you have to extract the 4 channels.
    Just have a look at the picture.
    Hope this helps.
    Thomas
    Using LV8.0
    Don't be afraid to rate a good answer...
    Attachments:
    DigitalWaveform.png ‏6 KB

  • Question about outputting DVCPRO HD to MiniDV Tape

    Hi There,
    I have a DVCPRO HD 720p24 project that I need to output onto MiniDV and I have a few questions. I am running FCS2 with the latest updates.
    1) I have an older sony camera (DCR-PC100) that I am outputting to. I would like to maintain my 16x9 aspect ratio. Provided I have selected anamorphic in my sequence settings, will my camera record a 720x480 image with the aspect ration intact? The camera is just a 4:3 consumer camera and it's a bit older. Just don't want to lose any quality.
    2) As it states in my signature, I'm working on a MBP so my only video output for coloring monitoring and that type of thing is through firewire and out of my camera. This doesn't work correctly from my native 720p24 sequence - it just sticks on one frame. I am already in the process of rebuilding a 720x480 NTSC sequence. Is this the only way I can output properly to a monitor?
    Thank you for reading my post

    Hi Spiff,
    Well I mainly assumed so because the most practicle way to screen a selection of films in one session at a short film festival is to compile a tape with all the films set to one ratio (usually 4:3)and I thought you were specifically asked to send a tape.
    However it would be wise indeed to call them.
    Some festivals use/compile miniDV or DVDs some others BetaSP or DigiBeta.
    With regard to transferring the film onto your PC 100 (Mighty PC 100! It was very popular 4-5 years ago amongst domestic camcorders, so popular that Sony put a PC 12O in the market with enahanced features) providing it works fine, then you will be fine to use it. Renting a deck or using a pro camera with miniDV capability will not improve the quality of your video.
    If your anamorphic version looks fine then lay that one on the tape.
    Try to use Panasonic pro master 63 minutes miniDV tapes. THey are white tapes.
    Good luck with the festival!
    G

  • Trouble with output to tape in PrPro 14 with AJA Kona.  Win7pro64. Output to HDCam (HDW-F500), prerolls and parks until reference is cycled. Won't do an audio only insert edit.

    I have downloaded and installed the latest drivers from AJA, but am still having trouble outputting to tape.

    Well, this is admittedly making my head spin, but would it be possible, with that level of frame rate mismatch, for recording to even take place? The deck was definitely set for 23.98 and PsF (that's what both the indicators said).
    At a point of boiling frustration, I performed an Assemble Edit (instead of the typical Insert, after I blacked a tape). When doing that - just for the heck of it - the recording went on for 83 minutes, it gave me a Lost Lock with 1 minute left in our end credits. I then rewound the tape for about 60 minutes and played. Got a Lost Lock in 20 seconds with a picture dropout.
    Since you're familiar with the deck, does this seem at all plausible? Does this feed your theory about a frame rate/communication mismatch?

  • Output tree to file.

    I am having trouble outputing from a tree to a file. I can output the root and that is it. Any suggestions?
    class Node
    public int kData; // data item (key)
    public String dData; // data item (word)
    public int iData; // data item
    public Node leftChild; // this node's left child
    public Node rightChild; // this node's right child
    public String displayNoded() // display ourself
    return dData;
    public int displayNodei() // display ourself
    return iData;
    } // end class Node
    // this part in class tree
    public void traverse(String fileName)
    outFileName = fileName;
    inOrder(root);
    private void inOrder(Node localRoot)
    try
    FileWriter out = new FileWriter (outFileName);
    BufferedWriter bw = new BufferedWriter(out);
    PrintWriter outfile = new PrintWriter (bw);
    String token = "";
    int sum = 0;
    if(localRoot != null)
    inOrder(localRoot.leftChild);
    token = localRoot.displayNoded();
    sum = localRoot.displayNodei();
    outfile.println(token + "\t" + sum);
    inOrder(localRoot.rightChild);
    outfile.close();
    catch ( IOException iox )
    System.out.println();

    Are you possibly overwriting your file? Also, there might be an IOException being thrown... instead of just putting System.out.println(), maybe put System.out.println(iox.getMessage()) to see what's going on there.

  • Need help with output for D5

    Hi,
    I need some help getting my film in sync to a D5.
    The film was shot on MiniDV and edited drop frame (29.97).
    What we did first is output on miniDV and dubbed that to a D5 for color correction. Everything was in sync with the timeline. Then my friend color corrected. Since then several shots have been replaced, not effecting the timing at all. We checked that everything was hitting at the same timecodes and everything was cool.
    Now I've output another tape onto MiniDV and tried to dub it to D5 but the shots are not hitting at the same timecode. They assure me that everything is drop frame on their end. Not sure what might be causing the problem. Not sure what to try next?
    Need suggestions and ideas.
    thanks.

    if you had a downconvert from your "color corrected d5" you could place it in the timeline and see whats up.

  • Labview Synthesiser: Problem outputting sound via MacBook soundcard

    Hi all!
    First time posting here, hopefully i'm in the right section of the forum. Anyway, i'm a part time student and currently studying a module on Labview in university. As a mini project i decided to build a synth using Labview. I've it mostly built but i'm having a bit of trouble outputting sound to the soundcard. I'm also having a bit of trouble getting the waveforms to play for a longer time period.
    I was sort of copying the setup of one of the example VIs (generating sound vi i think) and another vi i found online but i can't seem to get mine to work using my synth design. I've two problems, one is that the waveform only plays for a very short time but the main problem is that i'm getting an error (error 4803) saying the soundcard cannot accomodate the specified configuration but as far as i can see my setup is more or less the same as the generating sound vi (which works on my fine macbook). Obviously i'm missing something so i decided to come on here and ask for help.
    I'm guessing the datatype connected to my sound output configure vi could be causing a problem since it has a red dot on the input terminal. Any suggestions on how i should fix this? 
    I've my vi attached. Any help would be appreciated!
    Cheers! 
    Edit: I've already fixed the error 4803 problem. Had to change the input to the sound output configure sub vi. Now i just have to figure out how to get the sound to play for longer. Any ideas anyone?
    Solved!
    Go to Solution.
    Attachments:
    LabVIEWSynth.vi ‏94 KB

    OK. You have several problems.
    The cluster order in your Format cluster is Rate, Bits, Channels while the order in the "sound format" cluster on Sound Output Configure.vi is sample rate (S/s), number of channels, bits per sample. LabVIEW connects clusters according to the cluster order. How to avoid this: Pop up on the sound format conpane terminal on the Sound Output Configure.vi icon on the block diagram and choose Create Control. That will put a control with the same names and cluster order on the front panel. You can edit the names if you wish as long as you do not change the cluster order. The alternate is to Unbundle the data from your cluster control and then bundle it to the input cluster. I show this in the modification of your VI attached.
    The VI does not respond to the Stop button until the event structure executes, which only happens when a key is pressed. Fix: Add an event case for the Stop Value Changed event. I show this in the modification of your VI attached.
    The VI does not recognize changes in Octave, Amplitude, Osc Select, or Filter Frequency until the second keypress after changing any of these controls. Why? Dataflow. Those controls are probably read within microseconds after an iteration of the for loop starts. They are not read again until the next iteration regardless of when or how many times they are changed. The loop will not iterate until the Event structure completes, which only happens when a key is pressed. The Fix: Event cases for Value Changes on those controls. Note that this does not work because now there is no defined frequency. So, you also need some shift registers. Because of the problems mentioned, I did not put this into the modified VI.
    Next, the event structure freezes the front panel until the code inside has completed. This becomes quite apparent when you set the duration to 2 seconds and press several keys quickly. The fix to this and the problem in the paragraph above is a parallel loop archtitecture, such as the Producer/Consumer Design Pattern.
    Not a problem but a different way of doing something: Use Scale by Power of 2 from the Numeric palette in place of the case structure connected to Octave.  I show this in the modification of your VI attached.
    Now to your question about tone duration: The duration of a signal generated by the Sine Waveform.vi and the others is determined by the sampling frequency and the number of samples. You are a student so you can do the math. You need to adjust the number of samples because the sampling frequency is fixed.
    The modified VI works fine on my iMac.
    Lynn
    Attachments:
    LabVIEWSynth.2.vi ‏89 KB

  • Is there some kind of text output area in forms ??

    OK - I am not talking about a text item field.
    I have a form containing project and allocated staff information via a project_staff table. I need to include a section on the form that summarises how many staff of a particular type are involved in that project.
    I want it to look like this:
    3 x programmer
    2 x Manager
    1 x Datacomms expert
    1 x analyst
    etc etc.
    Forum members kindly showed me the SQL I need to get this output but I am having trouble outputting the results in Forms (in SQL+ its fine).
    I want an overall summary not individual text item fields which prevent the COUNT function from working how I need it to. Is there such an item in Forms, an area that I can output results of an SQL query to ??
    Thanks
    Kevin.

    A multi record form block ?? Is that a "tabular" type form ?? I tried that but I couldn't get it to work.
    Here is the SQL :
    SELECT a.staff_type, b.proj_number,COUNT(a.staff_id)
    FROM staff a, project_staff b
    WHERE a.staff_id = b.staff_id
    GROUP BY a.staff_type, b.proj_number.
    This works perfectly in SQL+. I amended it because I did not want the project number being displayed:
    SELECT a.staff_type, COUNT(a.staff_id)
    FROM staff a, project_staff b
    WHERE a.staff_id = b.staff_id
    GROUP BY a.staff_type
    This is perfect in SQL+. I have 2 "5 row tabular" text items, one called "qty" the other called "description". The form is a Master Detail where the Master provides the Project number, the Detail I need to display the results of this SQL code.
    I tried amending the code using references to block and text item fields but at best I was able to get it to work but the count for each row returned was always 1 (returned to the "qty" text item).
    I know the code the code below is wrong for the Post Query trigger:
    begin
    select COUNT(staff_id)
    into :proj_staff.qty
    from proj_staff
    where staff.id = *** I forgot what I put in here now !!****
    and proj_number = :project.proj_num
    end;
    I had a 2nd piece of code in the Post Query trigger to populate the "description" text item which worked:
    begin
    select staff_type
    into :proj_staff.description
    from staff
    where staff.id = :proj_staff.staff_id
    end;
    Any idea how I can make the COUNT function work ???
    Cheers.
    PS - I take it I can't use the natural join code cos it kept coming up with errors when I tried to compile it ?!!!
    Message was edited by:
    MrVen

  • HDV workflow to output to DVD

    I'm having a lot of trouble outputting a decent-looking DVD from my HDV project.
    The project is 50-minute long, i.e. 8Gbytes, and the only solution I have found yet is to run it through the Compressor (which takes like 4 days to process). The quality in the end is very bad. The edges are not sharp, the surfaces are pixelated and the interlacing shows when the camera's moving.
    Someone please help me find a solution...
    Thanks

    A simple search for HDV workflow, which you could do yourself, would reveal this post:
    http://discussions.info.apple.com/webx?128@@.68bada77

  • Outputting to BetaSP - Various Questions

    Hi, I have a 10 minute segment of various clips that I plan to send out to various local/national broadcast companies. Since the universal broadcast format seems to be betasp, I am outputting to it.
    My first question is how much bar/tone do I need at the beginning and end of each tape?
    Secondly, as I am only equipped with DV firewire decks and a canopus ADVC300, would it be possible to output to miniDV tape and then from miniDV to BetaSP (by hooking up my miniDV deck to my betaSP deck). The video is standard NTSC.
    Any help would be appreciated. I hope I am supplying enough information.
    -Alexi

    My first question is how much bar/tone do I need at the beginning and end of each tape?
    1 min. Starting from 58:30:00 to 59:30:00. Program to start at 1:00:00:00 on the nose.
    Secondly, as I am only equipped with DV firewire decks and a canopus ADVC300, would it be possible to output to miniDV tape and then from miniDV to BetaSP (by hooking up my miniDV deck to my betaSP deck). The video is standard NTSC.
    Not if you want to deliver a show with the proper timecode. Either get a capture card, or have the dub done at a dub facility that can dub with the proper timecode...assuming you have the proper timing in the output.
    And you'd better make sure that the show is properly color corrected so that your whites don't exceed 100 IRE and your blacks don't go below 7.5 IRE...and that your colors are all within acceptable limits. And that your audio peaks a the proper levels.
    Shane

Maybe you are looking for

  • When i click on itunes store a message comes up with itunes stopped working

    when i click on itunes store a message comes up with itunes stopped working

  • Jcombobox as cell editor behaviour !

    1. on a normal combobox, when it got focus & i pressed up/down, the display will change depending on the selected item... but it's not when it used as jtable cell editor. is it possible to change that behaviour ? i want a normal combobox behaviour ev

  • GUI overlaping shapes - Java problem

    Hello! I've recently started learning about building GUI's in java, most things have gone well, however there's one thing I havn't managed to solve on my own. If you execute the program below (which at the moment is nothing but an empty GUI layout),

  • My screen resolution for iPod touch got out of spec.  Looks like iPad sized

    Tonight I was updating about 5 apps (not sure which ones) and all of sudden something changed my screen resolution on my iPod Touch. The icons look to now be sized for an iPad.  I can no longer actually access anything on my iPod as nothing fits on m

  • How to verify ucs uptime?

    Hi All, I observed UCS alert on my monitoring tool. Service : System Uptime  State : OK  Hostgroup: Switch  Time: Tue Apr 15 19:10:16 UTC 2014  Additional Info: OK: UPTIME=34 minutes, 11.37 But when I logged in and verified the system uptime, it was