Captured TC from BMD counts backwards inside PPro CC

Setup as following:
Epic SDI out (1080p25) through BMD DecklinkHD Extreme3D+ captured via PProCC. TC is TOD and shows the correct time on the outputmonitor (JVC-DTV24-G1) when capturewindow is activ.
But a captured file in projectwindow always shows mediastart at 08.06.40.00 and counts backward (i.E) 08.06.32.00
When capturing through the BMD Mediaexpress the correct TOD is shown (imported in PProCC.
Is there a setting what I´m missing or what else can I try?
thx
bg
alex
updated:
I just noticed that all captured files (with wrong TC) in the project window are interpreted as upper field first. But my capture settings are defintely  progressiv (not psf, real progressiv)
Is PPro not able to handle progressive capture ála Epic in a correct way?
btw:PCwin7/64

anyone? from Adobe?
I read all helpfiles, looked at tutorials regarding capturing, but there is no mention about TC via SDI, only capturing via rs232 or firewire, which is from the last century.
So a question to Adobe:
Is PPro able to live capture a correct TC over SDI with a BMD card in a professional way?
thx
bg
alex

Similar Messages

  • I need a buffer to capture audia from a microphone

    I need to save audio data, while recording, in a buffer, but i dont know what are the classe i have to use an where to put the necessary code. Here is some code i use for capturing audio from a microphone. I appreciate if you can help me.
    Vector deviceList = CaptureDeviceManager.getDeviceList(new AudioFormat("LINEAR", 48000, 16, 2));
    processor = Manager.createProcessor(device.getLocator());
    processor.setContentDescriptor(new ContentDescriptor(FileTypeDescriptor.MPEG_AUDIO));
    dataSource= processor.getDataOutput();
    path = System.getProperty ( "user.home" );
    String nombre="prueba";
    DatSink dest = new MediaLocator("file:"+path+File.separator+nombre);
    filewriter = Manager.createDataSink(dataSource, dest);
    filewriter.open();
    filewriter.start();
    processor.start();

    You do realize that JMF does not record MP3 files, right?
    And if you want to put a buffer in somewhere, you can put it anywhere you want...but the most logical spot would be inside of the DataSource that's capturing the audio.
    [http://wiki.java.net/bin/view/Javapedia/JavaSoundDataSourceSampleProgram]
    You could use that code, and just insert a buffer in the read function...

  • Is it possible to use "Delay Values" to create a frequency signal from digital "Count Edges" -task? (= are the results I'm getting correct?)

    Hello.
    I have a digital encoder from which I need freaquency information (to ultimately get rpm -infromation). The problem is that this task is inside a loop with 2 other DAQmx -tasks that are using "one sample on demand"-aquisition mode and if I configure this new counter task to be a freaquency task, it only updates once in ~ second which makes the whole loop lag.
    I thus created an "artificial" freaquency signal by using "Count Edges" -aquicition mode and the "Delay Values" -block so that I substract the delayed signal from original "Count Edges" -signal. There is a 0,01s delay in the loop and I figured out that if the history of the "Delay Values" -block is 100 samples I would thus get the real edge-freaquency.
    I tested this configuration and the results seem to be at least really close to correct but I have no idea if this idea is in any way correct...
    This explanation was probably quite confusing so please see the picture attached.
    Thanks a lot in advance! 
    Attachments:
    are_the_results_correct.jpg ‏200 KB

    First of all, thank you for quick reply. Unfortunately I don't have the acces to the vi. until tomorrow.
    And yes, I think you understood correctly: essentially this arragement measures how many edges have been counted during one iteration. This is how I figured out that this could then be used as a frequency measurement:
    1. From the "Edges - Delayed Edges" I get the information on how many edges have been counted during last iteration.
    2. I "know" (really I don't?) that one iteration lasts ~0,01s because of the delay in the loop.
    3. There is 2048 edges in one round of the encoder so I get the rpm as follows: rpm = (edges - delayed edges)/204,8*60(s)
    (If I was using history size of one as you suggested it would be: rpm = (edges-delayed edges)/2048 * 60) However using history size of 10 and taking it account in the multiplication smoothens the response nicely.
    But doesn't this arragement count on the fact that the vi runs smoothly and there is no additional lag?
    I quess using another loop and notifiers for a dedicated freaquency measurement as you suggested could be worth trying. I just have to first learn how to use them. 
    If I do use them will the main loop run smoothly and not wait for every update of the notifier? This would be essential since the freaquency output refresses only about once in a second if I use the continious aquisition mode.
    Attachments:
    are_the_results_correct.jpg ‏198 KB

  • Help To Count Backwards

    Hi,
    Im very new to Java, started two weeks ago at uni, i missed most of this semester due to illness, i was not looking forward to coming back having missed sooo much but found i quite like Java.
    We have been given our project to build a gui phone (point and click, basic stuff) which accepts various coin amounts, works out the time for the call by simple math.
    What i cannot do for the life of me, or even get my head around is counting backwards the time for the call. I have looked at sleep() count() and wait() but seen to get caught in the loop.
    Here is the code:
        private void jBtnCallMouseClicked(java.awt.event.MouseEvent evt) {                                     
            String tempTime;
            int time;
            tempTime = jLblCallDurationTime.getText();
            time = Integer.parseInt(tempTime);
            while (time > 0){
                try {
                    time = time - 1;
                    Thread.sleep(1000);               
                } catch (InterruptedException e) {
                    jLblCallDurationTime.setText(Integer.toString(time));
        } I do not quite understand the try & catch, im a noob, please go easy, we are doing all coding within the main class.
    Additionally, i would like to post the entire code for pointers on bad habits if anyone has time?
    Regards
    Doo

    Thanks for your replies guy's,
    I was trying to setText() in the catch??? is this not write.
    I want the gui to be responsive as users need to deposit more coins as the seconds timer gets below a certain amount.
    Here is the whole main class code.
    Ill check back later, im getting ear ache from my wife for spending too much time on this...lol Any help or advice is greatly apprieciated. (i have a lot of repeated code i know) but as i said my Java is only two weeks old!
    import java.util.concurrent.CountDownLatch;
    import javax.swing.filechooser.FileView;
    * PhoneProject.java
    * Created on 29 April 2007, 14:15
    * @author  Dooie & Rooney
    public class PhoneProject extends javax.swing.JFrame {
        /** Creates new form PhoneProject */
        public PhoneProject() {
            initComponents();
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        // <editor-fold defaultstate="collapsed" desc=" Generated Code ">//GEN-BEGIN:initComponents
        private void initComponents() {
            buttonGroupCallType = new javax.swing.ButtonGroup();
            jBtn5 = new javax.swing.JButton();
            jBtn10 = new javax.swing.JButton();
            jBtn20 = new javax.swing.JButton();
            jBtn50 = new javax.swing.JButton();
            jBtn100 = new javax.swing.JButton();
            jLblCredit = new javax.swing.JLabel();
            jLblCreditAmount = new javax.swing.JLabel();
            jRadBtnLocal = new javax.swing.JRadioButton();
            jRadBtnLong = new javax.swing.JRadioButton();
            jRadBtnInter = new javax.swing.JRadioButton();
            jLblCallDuration = new javax.swing.JLabel();
            jLblCallDurationTime = new javax.swing.JLabel();
            jLblCallDurationSeconds = new javax.swing.JLabel();
            jBtnCall = new javax.swing.JButton();
            jBtnNum1 = new javax.swing.JButton();
            jBtnNum2 = new javax.swing.JButton();
            jBtnNum3 = new javax.swing.JButton();
            jBtnNum4 = new javax.swing.JButton();
            jBtnNum5 = new javax.swing.JButton();
            jBtnNum6 = new javax.swing.JButton();
            jBtnNum7 = new javax.swing.JButton();
            jBtnNum8 = new javax.swing.JButton();
            jBtnNum9 = new javax.swing.JButton();
            jBtnNum0 = new javax.swing.JButton();
            jTxtDisplayScreen = new javax.swing.JTextField();
            jBtnClear = new javax.swing.JButton();
            jBtnCalls = new javax.swing.JButton();
            jLblInfo = new javax.swing.JLabel();
            jLblInfoTitle = new javax.swing.JLabel();
            jLblCoinType = new javax.swing.JLabel();
            jLblCoinType_1 = new javax.swing.JLabel();
            jLblSelectedCallType = new javax.swing.JLabel();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            setResizable(false);
            addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    formMouseClicked(evt);
            jBtn5.setFont(new java.awt.Font("Verdana", 0, 11));
            jBtn5.setText("5p");
            jBtn5.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    jBtn5MouseClicked(evt);
            jBtn10.setFont(new java.awt.Font("Verdana", 0, 11));
            jBtn10.setText("10p");
            jBtn10.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    jBtn10MouseClicked(evt);
            jBtn20.setFont(new java.awt.Font("Verdana", 0, 11));
            jBtn20.setText("20p");
            jBtn20.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    jBtn20MouseClicked(evt);
            jBtn50.setFont(new java.awt.Font("Verdana", 0, 11));
            jBtn50.setText("50p");
            jBtn50.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    jBtn50MouseClicked(evt);
            jBtn100.setFont(new java.awt.Font("Verdana", 0, 11));
            jBtn100.setText("\u00a31");
            jBtn100.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    jBtn100MouseClicked(evt);
            jLblCredit.setFont(new java.awt.Font("Verdana", 0, 14));
            jLblCredit.setText("Credit");
            jLblCreditAmount.setFont(new java.awt.Font("Verdana", 0, 14));
            jLblCreditAmount.setText("0");
            buttonGroupCallType.add(jRadBtnLocal);
            jRadBtnLocal.setText("Local");
            jRadBtnLocal.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0, 0));
            jRadBtnLocal.setMargin(new java.awt.Insets(0, 0, 0, 0));
            jRadBtnLocal.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    jRadBtnLocalMouseClicked(evt);
            jRadBtnLocal.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jRadBtnLocalActionPerformed(evt);
            buttonGroupCallType.add(jRadBtnLong);
            jRadBtnLong.setText("Long Distance");
            jRadBtnLong.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0, 0));
            jRadBtnLong.setMargin(new java.awt.Insets(0, 0, 0, 0));
            jRadBtnLong.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    jRadBtnLongMouseClicked(evt);
            buttonGroupCallType.add(jRadBtnInter);
            jRadBtnInter.setText("International");
            jRadBtnInter.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0, 0));
            jRadBtnInter.setMargin(new java.awt.Insets(0, 0, 0, 0));
            jRadBtnInter.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    jRadBtnInterMouseClicked(evt);
            jLblCallDuration.setBackground(new java.awt.Color(255, 255, 255));
            jLblCallDuration.setFont(new java.awt.Font("Verdana", 0, 14));
            jLblCallDuration.setText("Call Duration");
            jLblCallDurationTime.setFont(new java.awt.Font("Verdana", 0, 14));
            jLblCallDurationTime.setText("0");
            jLblCallDurationTime.addInputMethodListener(new java.awt.event.InputMethodListener() {
                public void caretPositionChanged(java.awt.event.InputMethodEvent evt) {
                public void inputMethodTextChanged(java.awt.event.InputMethodEvent evt) {
                    jLblCallDurationTimeInputMethodTextChanged(evt);
            jLblCallDurationSeconds.setFont(new java.awt.Font("Verdana", 0, 14));
            jLblCallDurationSeconds.setText("Seconds");
            jBtnCall.setFont(new java.awt.Font("Verdana", 0, 11));
            jBtnCall.setText("Call");
            jBtnCall.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    jBtnCallMouseClicked(evt);
            jBtnNum1.setFont(new java.awt.Font("Verdana", 0, 11));
            jBtnNum1.setText("1");
            jBtnNum1.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    jBtnNum1MouseClicked(evt);
            jBtnNum2.setFont(new java.awt.Font("Verdana", 0, 11));
            jBtnNum2.setText("2");
            jBtnNum2.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    jBtnNum2MouseClicked(evt);
            jBtnNum3.setFont(new java.awt.Font("Verdana", 0, 11));
            jBtnNum3.setText("3");
            jBtnNum3.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    jBtnNum3MouseClicked(evt);
            jBtnNum4.setFont(new java.awt.Font("Verdana", 0, 11));
            jBtnNum4.setText("4");
            jBtnNum4.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    jBtnNum4MouseClicked(evt);
            jBtnNum5.setFont(new java.awt.Font("Verdana", 0, 11));
            jBtnNum5.setText("5");
            jBtnNum5.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    jBtnNum5MouseClicked(evt);
            jBtnNum6.setFont(new java.awt.Font("Verdana", 0, 11));
            jBtnNum6.setText("6");
            jBtnNum6.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    jBtnNum6MouseClicked(evt);
            jBtnNum7.setFont(new java.awt.Font("Verdana", 0, 11));
            jBtnNum7.setText("7");
            jBtnNum7.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    jBtnNum7MouseClicked(evt);
            jBtnNum8.setFont(new java.awt.Font("Verdana", 0, 11));
            jBtnNum8.setText("8");
            jBtnNum8.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    jBtnNum8MouseClicked(evt);
            jBtnNum9.setFont(new java.awt.Font("Verdana", 0, 11));
            jBtnNum9.setText("9");
            jBtnNum9.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    jBtnNum9MouseClicked(evt);
            jBtnNum0.setFont(new java.awt.Font("Verdana", 0, 11));
            jBtnNum0.setText("0");
            jBtnNum0.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    jBtnNum0MouseClicked(evt);
            jTxtDisplayScreen.setFont(new java.awt.Font("Tahoma", 1, 12));
            jBtnClear.setFont(new java.awt.Font("Verdana", 0, 11));
            jBtnClear.setText("C");
            jBtnClear.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    jBtnClearMouseClicked(evt);
            jBtnCalls.setFont(new java.awt.Font("Verdana", 0, 11));
            jBtnCalls.setText("Reg");
            jBtnCalls.setActionCommand("Calls");
            jBtnCalls.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    jBtnCallsMouseClicked(evt);
            jLblInfo.setFont(new java.awt.Font("Verdana", 0, 14));
            jLblInfo.setForeground(new java.awt.Color(255, 0, 0));
            jLblInfo.setText("Please Select Call Type");
            jLblInfoTitle.setFont(new java.awt.Font("Verdana", 0, 14));
            jLblInfoTitle.setForeground(new java.awt.Color(255, 0, 0));
            jLblInfoTitle.setText("Infomation:");
            jLblCoinType.setFont(new java.awt.Font("Verdana", 0, 24));
            jLblCoinType_1.setFont(new java.awt.Font("Verdana", 0, 11));
            jLblSelectedCallType.setFont(new java.awt.Font("Verdana", 0, 14));
            jLblSelectedCallType.setText("Call Type:");
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(16, 16, 16)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addComponent(jLblSelectedCallType)
                        .addGroup(layout.createSequentialGroup()
                            .addComponent(jLblInfoTitle)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addComponent(jLblInfo))
                        .addGroup(layout.createSequentialGroup()
                            .addComponent(jLblCallDuration)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addComponent(jLblCallDurationTime)
                            .addGap(6, 6, 6)
                            .addComponent(jLblCallDurationSeconds))
                        .addGroup(layout.createSequentialGroup()
                            .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                                .addGroup(layout.createSequentialGroup()
                                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                                        .addComponent(jRadBtnLocal)
                                        .addComponent(jRadBtnLong)
                                        .addComponent(jRadBtnInter)
                                        .addGroup(layout.createSequentialGroup()
                                            .addComponent(jLblCoinType)
                                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                                            .addComponent(jLblCoinType_1)))
                                    .addGap(18, 18, 18)
                                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
                                        .addComponent(jBtn50, javax.swing.GroupLayout.DEFAULT_SIZE, 60, Short.MAX_VALUE)
                                        .addComponent(jBtn20, javax.swing.GroupLayout.DEFAULT_SIZE, 60, Short.MAX_VALUE)
                                        .addComponent(jBtn10, javax.swing.GroupLayout.DEFAULT_SIZE, 60, Short.MAX_VALUE)
                                        .addComponent(jBtn5, javax.swing.GroupLayout.DEFAULT_SIZE, 50, Short.MAX_VALUE)
                                        .addComponent(jBtn100, javax.swing.GroupLayout.PREFERRED_SIZE, 60, javax.swing.GroupLayout.PREFERRED_SIZE)))
                                .addGroup(layout.createSequentialGroup()
                                    .addComponent(jLblCredit)
                                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                                    .addComponent(jLblCreditAmount, javax.swing.GroupLayout.PREFERRED_SIZE, 60, javax.swing.GroupLayout.PREFERRED_SIZE)))
                            .addGap(6, 6, 6)
                            .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
                                .addComponent(jTxtDisplayScreen)
                                .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
                                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                                        .addComponent(jBtnNum1, javax.swing.GroupLayout.DEFAULT_SIZE, 60, Short.MAX_VALUE)
                                        .addComponent(jBtnNum4, javax.swing.GroupLayout.DEFAULT_SIZE, 60, Short.MAX_VALUE)
                                        .addComponent(jBtnNum7, javax.swing.GroupLayout.DEFAULT_SIZE, 60, Short.MAX_VALUE)
                                        .addComponent(jBtnCall, javax.swing.GroupLayout.DEFAULT_SIZE, 60, Short.MAX_VALUE))
                                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                                        .addComponent(jBtnNum5, javax.swing.GroupLayout.DEFAULT_SIZE, 60, Short.MAX_VALUE)
                                        .addComponent(jBtnNum8, javax.swing.GroupLayout.DEFAULT_SIZE, 60, Short.MAX_VALUE)
                                        .addComponent(jBtnNum2, javax.swing.GroupLayout.DEFAULT_SIZE, 60, Short.MAX_VALUE)
                                        .addComponent(jBtnCalls, javax.swing.GroupLayout.PREFERRED_SIZE, 60, javax.swing.GroupLayout.PREFERRED_SIZE)
                                        .addComponent(jBtnNum0, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, 60, Short.MAX_VALUE))
                                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
                                        .addComponent(jBtnClear, javax.swing.GroupLayout.PREFERRED_SIZE, 60, javax.swing.GroupLayout.PREFERRED_SIZE)
                                        .addComponent(jBtnNum3, javax.swing.GroupLayout.DEFAULT_SIZE, 60, Short.MAX_VALUE)
                                        .addComponent(jBtnNum9, javax.swing.GroupLayout.DEFAULT_SIZE, 60, Short.MAX_VALUE)
                                        .addComponent(jBtnNum6, javax.swing.GroupLayout.PREFERRED_SIZE, 60, javax.swing.GroupLayout.PREFERRED_SIZE))))))
                    .addContainerGap(19, Short.MAX_VALUE))
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(layout.createSequentialGroup()
                            .addGap(22, 22, 22)
                            .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                                .addGroup(layout.createSequentialGroup()
                                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                                        .addComponent(jRadBtnLocal)
                                        .addComponent(jBtn5)
                                        .addComponent(jTxtDisplayScreen, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                                        .addComponent(jRadBtnLong)
                                        .addComponent(jBtn10))
                                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                                        .addComponent(jBtn20)
                                        .addComponent(jRadBtnInter))
                                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                                        .addComponent(jBtn50)
                                        .addComponent(jBtnNum4)
                                        .addComponent(jBtnNum5)
                                        .addComponent(jBtnNum6))
                                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                                        .addComponent(jBtn100)
                                        .addComponent(jBtnNum7)
                                        .addComponent(jBtnNum8)
                                        .addComponent(jBtnNum9)))
                                .addGroup(layout.createSequentialGroup()
                                    .addGap(29, 29, 29)
                                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                                        .addComponent(jBtnClear)
                                        .addComponent(jBtnCall)
                                        .addComponent(jBtnCalls))
                                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                                        .addComponent(jBtnNum1)
                                        .addComponent(jBtnNum3)
                                        .addComponent(jBtnNum2))))
                            .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                                .addGroup(layout.createSequentialGroup()
                                    .addGap(21, 21, 21)
                                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                                        .addComponent(jLblCreditAmount)
                                        .addComponent(jLblCredit))
                                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                                        .addComponent(jLblCallDuration)
                                        .addComponent(jLblCallDurationTime)
                                        .addComponent(jLblCallDurationSeconds)))
                                .addGroup(layout.createSequentialGroup()
                                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                                    .addComponent(jBtnNum0)))
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED))
                        .addGroup(layout.createSequentialGroup()
                            .addContainerGap(146, Short.MAX_VALUE)
                            .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                                .addComponent(jLblCoinType)
                                .addComponent(jLblCoinType_1))
                            .addGap(84, 84, 84)))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addComponent(jLblSelectedCallType)
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jLblInfoTitle)
                        .addComponent(jLblInfo))
                    .addGap(28, 28, 28))
            pack();
        }// </editor-fold>//GEN-END:initComponents
        private void jBtnCallMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_jBtnCallMouseClicked
            String tempTime;
            int time;
            tempTime = jLblCallDurationTime.getText();
            time = Integer.parseInt(tempTime);
            while (time > 0){
                try {
                    time = time - 1;
                    Thread.sleep(1000);               
                } catch (InterruptedException e) {
                    jLblCallDurationTime.setText(Integer.toString(time));
        }//GEN-LAST:event_jBtnCallMouseClicked
        private void jBtnClearMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_jBtnClearMouseClicked
            jTxtDisplayScreen.setText("");
        }//GEN-LAST:event_jBtnClearMouseClicked
        private void jRadBtnInterMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_jRadBtnInterMouseClicked
            jLblInfo.setText("Please Deposit Coins, 30p Minimum...");
            jLblSelectedCallType.setText("You are making an International");
        }//GEN-LAST:event_jRadBtnInterMouseClicked
        private void jRadBtnLongMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_jRadBtnLongMouseClicked
            jLblInfo.setText("Please Deposit Coins, 30p Minimum...");
            jLblSelectedCallType.setText("You are making a Long Distance Call");
        }//GEN-LAST:event_jRadBtnLongMouseClicked
        private void jBtnCallsMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_jBtnCallsMouseClicked
        }//GEN-LAST:event_jBtnCallsMouseClicked
        private void jBtnNum0MouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_jBtnNum0MouseClicked
            String oldNumber;                           //set oldNumber to String
            String newNumber;                           //set newNumber as a String
            String tempCreditAmount;
            int coinAmount;
            boolean selectionLocal;                             //set boolean call type
            boolean selectionLong;                              //set boolean call type
            boolean selectionInter;                             //set boolean call type
            tempCreditAmount = jLblCreditAmount.getText();
            coinAmount = Integer.parseInt(tempCreditAmount);
            selectionLocal = jRadBtnLocal.isSelected();         //get selected
            selectionLong = jRadBtnLong.isSelected();           //get selected
            selectionInter = jRadBtnInter.isSelected();         //get selected
    //        if ((selectionLocal == false) || (selectionLong == false) || (selectionLong == false)){
    //            jLblInfo.setText("You have not selected a call type");
            if (coinAmount == 0) {                              //check coins are deposited
                jLblInfo.setText("Select call-type & add money...");
            } else if (coinAmount < 30) {                       //checks minimum coins amount
                jLblInfo.setText("You need to deposit more coins...");
            } else {
                jLblInfo.setText("");
                oldNumber = jTxtDisplayScreen.getText();    //get txt, if any, assign to oldNumber
                newNumber = oldNumber + "0";                //set newNumber as oldNumber adding String to end
                jTxtDisplayScreen.setText(newNumber);       //Display newNumber
        }//GEN-LAST:event_jBtnNum0MouseClicked
        private void jBtnNum9MouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_jBtnNum9MouseClicked
            String oldNumber;                           //set oldNumber to String
            String newNumber;                           //set newNumber as a String
            String tempCreditAmount;
            int coinAmount;
            boolean selectionLocal;                             //set boolean call type
            boolean selectionLong;                              //set boolean call type
            boolean selectionInter;                             //set boolean call type
            tempCreditAmount = jLblCreditAmount.getText();
            coinAmount = Integer.parseInt(tempCreditAmount);
            selectionLocal = jRadBtnLocal.isSelected();         //get selected
            selectionLong = jRadBtnLong.isSelected();           //get selected
            selectionInter = jRadBtnInter.isSelected();         //get selected
    //        if ((selectionLocal == false) || (selectionLong == false) || (selectionLong == false)){
    //            jLblInfo.setText("You have not selected a call type");
            if (coinAmount == 0) {                              //check coins are deposited
                jLblInfo.setText("Select call-type & add money...");
            } else if (coinAmount < 30) {                       //checks minimum coins amount
                jLblInfo.setText("You need to deposit more coins...");
            } else {
                jLblInfo.setText("");
                oldNumber = jTxtDisplayScreen.getText();    //get txt, if any, assign to oldNumber
                newNumber = oldNumber + "9";                //set newNumber as oldNumber adding String to end
                jTxtDisplayScreen.setText(newNumber);       //Display newNumber
        }//GEN-LAST:event_jBtnNum9MouseClicked
        private void jBtnNum8MouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_jBtnNum8MouseClicked
            String oldNumber;                           //set oldNumber to String
            String newNumber;                           //set newNumber as a String
            String tempCreditAmount;
            int coinAmount;
            boolean selectionLocal;                             //set boolean call type
            boolean selectionLong;                              //set boolean call type
            boolean selectionInter;                             //set boolean call type
            tempCreditAmount = jLblCreditAmount.getText();
            coinAmount = Integer.parseInt(tempCreditAmount);
            selectionLocal = jRadBtnLocal.isSelected();         //get selected
            selectionLong = jRadBtnLong.isSelected();           //get selected
            selectionInter = jRadBtnInter.isSelected();         //get selected
    //        if ((selectionLocal == false) || (selectionLong == false) || (selectionLong == false)){
    //            jLblInfo.setText("You have not selected a call type");
            if (coinAmount == 0) {                              //check coins are deposited
                jLblInfo.setText("Select call-type & add money...");
            } else if (coinAmount < 30) {                       //checks minimum coins amount
                jLblInfo.setText("You need to deposit more coins...");
            } else {
                jLblInfo.setText("");
                oldNumber = jTxtDispla                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         

  • Months:  Counting backwards

    To create a rolling display in a report I would like to allocate sequence numbers to months (in this case counting backwards).
    For example, if the current month is November, then 200611 would be 01, 200610 would be 02, 200609 would be 03, etc.
    I can supply a number (neg or pos) to command ADD_MONTHS to calculate months in the future or in the past but is there a way to do the oposite: To declare two months and return the number of months difference between these? For example if the two months are 200603 and 200511, the code would return '4' (Nov 2005 is four months before Mar 2006).
    I hope that someone out there has a trick (a snippet of syntax) to do this? That would be a great help to us.
    Many thanks,
    Alan Searle

    select months_between(to_date('200603', 'YYYYMM'), to_date('200511', 'YYYYMM')) from dual
    4Regards
    Dmytro

  • Unable to capture video from VHS through DAC-200

    (Running Final Cut Pro 5.1.4)
    I have a DAC-200 to hook up my VCR to my G5 in order to capture video from VHS tapes into Final Cut. I had this set-up working a few months ago, but it was disconnected to rearrange equipment and now I can't get it working again. I have followed the advice from the DAC-200 installation instructions and advice from other forum topics but can't seem to get it to work. I finally was able to get something in the log and capture window besides "preview disabled" and "cannot capture because there is no video." I now can get Final Cut to capture video, however it only captures a blank black screen (and this is all I can see in the preview window).
    I've triple-checked every cable hook-up, the G5 recognizes the converter box, the video tape plays fine to a tv. I've even had our IT-guy here at work come check out my set-up for help and he can't figure out what is wrong either. (He did get my log&capture window to get white fuzz in the black screen at one point though. Does that mean anything?)
    Any help is greatly appreciated! (I'm happy to answer any other questions too.) Thanks!

    I had difficullty with the X.4.10 plus QT7.2 and put my info on the Forum as well as sending feedback to Apple. Shortly afterwards, Apple brought out a short security update which I downloaded and, hey presto, I was then able to use QT7.2 with OSX.4.10. It may be that you missed out on the later small update to QT7.2..... ? Another factor I found was that some little while later I again had a problem so I again installed QT7.2 and over-installed FCP5.1.4 which has resolved my problems for the time being. Worth a try if you still can't get through on the DAC.
    Ron.

  • Unable to capture data from drop down list in custom added field in migo tcode at item level

    Hi guys,
    need bit help in resolving query related to custom added field in Tcode migo.
    i have added a field in migo at item level ,in this i have used drop down list
    to get data but unable to capture data from drop down list.gown through
    many blogs in scn but unable to resolve.
    Please help me out in this.
    Thanks,
    Umakant.

    Hi,
    U can use following code to fill the list box
    write this code in PBO
    In layout editor please select listbox in dropdown attribute of input field and put some fctcode attribute
    TYPE-POOLS vrm.
      DATA values TYPE vrm_values WITH HEADER LINE.
      TABLES: <ur custom Database table>.
      clear values, values[].
      SELECT * FROM <ur custom Database table>.
        values-text = <TABLE FIELD TO DISPLAY IN DROPDOWN> .
        values-key = <TABLE KEY FIELD TO DISPLAY IN DROPDOWN>.
        APPEND values.
      ENDSELECT.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id              = '<SCREEN INPUT FIELD NAME>'
          values          = values[]
        EXCEPTIONS
          id_illegal_name = 1
          OTHERS          = 2.
    Also please define the following before accessing the listbox value
    data: <listbox input field name> type <table field name>,
            <inputfield name where text to display> type string  in top include
    In PAI, select the text from the table into <inputfield name where text to display>  depending on value selected which will be called when enter key is pressed or any vale is selected

  • Unable to capture video from webcam in JMF in xlet

    hi
    I am unable to capture video from webcam in an Xlet. I am using Xletview to run Xlet. The method CaptureDeviceManager.getDeviceList(vidformat) returns empty array. Which videoformat should I use and why do I get empty array?
    Thanks
    Rajesh

    MHP and OCAP only use JMF 1.0, which does not include support for capturing video. You will not be able to do this in any current MHP/OCAP imlementation that I know of.
    Steve.

  • Unable to capture video from webcam in JMF

    hi
    I am unable to capture video from webcam in an Xlet. I am using Xletview to run Xlet. The method CaptureDeviceManager.getDeviceList(vidformat) returns empty array. Which videoformat should I use and why do I get empty array?

    MHP and OCAP only use JMF 1.0, which does not include support for capturing video. You will not be able to do this in any current MHP/OCAP imlementation that I know of.
    Steve.

  • Capturing data from ALV grid

    Dear experts.
    Can anyone help me to capture data from ALV grid to pass to a BAPI FM.
    My ALV grid has the check box as first column and I want to capture only the rows in the grid with these checkboxes checked. I would prefer to do it without OO.
    Regards
    Sathar

    Loop at the table used for ALV data where <checkbox-field> = 'X'.
    Best,
    Jim

  • Capture contents from an editable alv

    I'm trying to capture fields from an editable alv. I have an update button in the application toolbar. So when i press this button, whatever changes I have done on the screen, the internal table should get updated. I'm using the function module    REUSE_ALV_GRID_DISPLAY.
    Can anybody help me out??

    Yes you can,
    If you have access to the element in the context that is bound to the row in the ALV then you can connect the message. Marking a * is not possible by default with the WD message manager and you willl need to do it manually. Use the element method of the message manager API for this purpose.

  • What are the settings for capturing video from Canon HV20

    Hi All,
    I want to capture video from Canon HV20 with Premiere Elements 11. What kind of settings should I use to capture the video with full information?
    Here is what I did:
    1) According the manual, I went to Capture settings panel (Edit > Project Settings > Capture) and selected HDV as capture format, because my video is at high definition.
    2) In addition, I checked "Capture to Timeline" and "Split Scenes by cotent".
    Are these settings enough?
    Thanks.

    HV20user
    Sounds reasonable, using Add Media/HDV Camcorder, but....
    Have you reviewed the Adobe write up on Premiere Elements 11 DV and HDV capture firewire into it.
    http://help.adobe.com/fr_FR/premiereelements/using/WS5CDA0F91-60F1-4b79-ABF6-E9E75F498DB2. html#WS2AF26FB5-4C63-4c46-9DB3-7249558F6528
    The mention of Get Media instead of Add Media makes me wonder if the video's instructor was demo'ing from Premiere Elements 10, but...
    Major factors have always included having Premiere Elements project preset set correctly to correspond to your camera settings...For HDV data capture firewire...
    NTSC HDV HDV 1080p30 or PAL HDV HDV 1080p25 depending on if you are targeting a NTSC or PAL area where frame rates are typically a consideration.
    I had not done any DV or HDV data capture firewire into Premiere Elements. But, Premiere Elements 11's take over of the project preset setting would encourage me to encourage you to verify your project settings before the capture.
    There are probably many more, but the following is online discussion of one Canon HV20 issue
    http://forum.videohelp.com/threads/316970-video-capture-problems-HV20-camcorder-is-control led-but-no-video-capture
    If you experience difficulty with the HDV capture fireware into Premiere Elements 11, you might consider what some others have done in this regard, that is, use HDVSplit for the capture firewire and then import the split (.m2t) clips "Add Media" into Premiere Elements 11 with the appropriate HDV HDV 1080p (1440 x 1080 HD anamorphic 16:9) project preset.
    Please update us on your progress when you get a chance.
    Thanks.
    ATR

  • Capturing Video from a Camera that only has a USB port

    I have read a number of posts from people who have been frustrated because they can not 'capture' video from a video camera that only has a USB port on it.  Unfortunately, Premier wants to see a Firewire connection; otherwise, it won't connect to a camera.   However, it is still very easy to import your video clips from such a camera into Premier Pro:
    1. Turn on your video camera and connect it to your computer via the USB connections.
    2. In Premier, go to the Media Browser.
    3. In the Media Browser, you will see all the drives on your computer. Amongst those drives will be a drive that was created for your camera. (It will be identified as X: (Removable).  Double click on that drive and you will see all your recorded video clips in the column just to the right.
    4. Highlight any/all clips that you want to import. Then, simply drag those clips/files up into your Project Organizer (normally, in the upper left corner of the page)
    That's it.
    You'll probably find this method of importing your clips/files off of your camera easier than if you did have a Firewire and utilized the 'Capture' function.

    And a bigger problem will be that that camera (with its card or HDD) will have to be connected, whenever one wishes to edit, and it cannot be overwritten to).
    As has been mentioned, the Project file does NOT contain any Assets, with the exception of Titles created in PrPro's Titler. This ARTICLE will give a bit more background on what is in the Project file, plus a bit more.
    The same sort of problem can arise if one Imports a VOB from a DVD-Video disc, without Copying the VOB's over to the HDD. First, that DVD must be inserted for each editing session, and things will be horribly slow.
    Good luck,
    Hunt

  • Capturing dv from camcorder on powerbook internal drive then moving to exte

    I plan on installing FCE HD in an OS 10.4.6 Sandbox partition on my 667MHz Powerbook G4 Ti DVI w/ a 60 GB 7200 rpm HD w/ a 13GB Scratch partition.
    Since the PB has a single Firewire port, can I capture video from my camera through that FW port to the internal drive Scratch partition and then transfer that file (or files: I have a bunch of footage) to an external FW drive for further work, again using the single FW port for the initial transfer and then editing, etc.? Can I use USB 2.0 for the transfers after capture?
    Any special considerations in doing this? Things I haven’t thought of? :–)
    Powerbook G4 Ti DVI 667 MHz   Mac OS X (10.4.6)   60 GB 7200 rpm internal HD, 1 GB ram, Dell 24" monitor

    A Sandbox partition is one generated by SuperDuper! to allow an independent, second OS on a drive. Mine has been working fine and allows me to run new software, including OS updates without affecting the Main partition with it's 'master' set of 'original' applications (the Sandbox uses aliases of the apps on Main). If the new OS or app works, then it can be installed on the Main partition with less danger of unexpected problems. By running from the Sandbox, corruption of the Main partition is less likely.
    Why is a scratch partition on the internal drive 'not really a good plan'? Is your caveat for real time capture only, as here or with audio capture, where the disk may be given other, higher priority, tasks by the OS, dropping frames? Hadn't thought of that. The Scratch volume appears to work fine for Photoshop, etc. And I would think it would for post-capture editing in FCE.
    'You can daisy chain the camera through the FW drive to the computer. This works with most cameras'. Perhaps I am crying before I am bitten. I have seen posts elsewhere (places I can't recover now!) that recommend using 2 separate FW busses (i.e., adding a FW cardbus to my PB) for the camcorder and the capturing disk, saying that chaining the 2 is likely to cause dropped frames. (My camcorder is an original Optura so it may not play anyway. But that is something else again.)
    'USB is not supported by Apple for use with video applications'. Does this include USB 2.0? And I have not seen eSATA mentioned anywhere. ???
    Powerbook G4 Ti DVI 667 MHz Mac OS X (10.4.6) 60 GB 7200 rpm internal HD, 1 GB ram, Dell 24" monitor
    Powerbook G4 Ti DVI 667 MHz Mac OS X (10.4.6) 60 GB 7200 rpm internal HD, 1 GB ram, Dell 24" monitor
    Powerbook G4 Ti DVI 667 MHz Mac OS X (10.4.6) 60 GB 7200 rpm internal HD, 1 GB ram, Dell 24" monitor
    Powerbook G4 Ti DVI 667 MHz Mac OS X (10.4.6) 60 GB 7200 rpm internal HD, 1 GB ram, Dell 24" monitor
    Powerbook G4 Ti DVI 667 MHz Mac OS X (10.4.6) 60 GB 7200 rpm internal HD, 1 GB ram, Dell 24" monitor
    Powerbook G4 Ti DVI 667 MHz Mac OS X (10.4.6) 60 GB 7200 rpm internal HD, 1 GB ram, Dell 24" monitor

  • Capturing Audio from DAT

    Hello,
    I'm trying to capture audio from a DAT deck (Tascam DA-20) into FCP HD by routing it through my JVC BR-DV600U DV deck (RCA output from DAT, RCA input to DV deck, Firewire into FCP).
    The DV deck's input is set to line-in, and the audio is being routed through (audio meters on DV deck mimic those on DAT deck, and I can hear the audio through the headphones jacked into my DV deck).
    However, when I try to capture the audio on FCP, I am unsuccessful, prompting the following window from FCP: "Error: Final Cut Pro HD was unable to read the movie file just captured."
    Now, I use the same set up I described above to capture footage from my Beta deck into FCP with no problems (route Beta signal through DV deck and firewire it into FCP). This leads me to believe that perhaps the glitch lies within my Capture Presets.
    At first, I tried to capture the signal as an Audio-Only DV NTSC 48 Khz/Non-controllable device. After that failed, I tried to create my own capture preset, but am not sure it will make a difference, as the only input choices I am given are DV Audio, Built-In Audio, and None.
    Any suggestions?
    Thanks.

    Why not capture the audio content outside of FCP, check the sample rate for 48Khz/16-bit, convert if necessary, save as an AIFF file, and then import that resulting sound file into FCP?
    Any good audio app, including STP will do captures.
    You are probably going to need to do some cleanup on the audio anyway before you use it, so why not just use an audio app to do it beforehand?
    Besides, if you have an audio device (PCI card or Firewire device) in your Mac, you can use the S/PDIF port for your connection to the DAT and do a digital transfer when you import.
    As I understand the way you are doing it now, you are taking digital content from the DAT, converting it to analog for the connection into your deck, and then re-converting it into digital when you capture it back into FCP.
    One big advantage of digital audio (and video) is to avoid generation loss and added noise during transfer if you go D-to-D.
    If you don't have an audio card or Firewire A/D audio I/O device with S/PDIF ports in your Mac, then see if you can find a friend who has one and can do the transfer for you. Then he can give you the file on a CD-ROM.
    That's what I'd do.

Maybe you are looking for

  • Display doesn't work anymore on my Encore WT8-A

    Hey everyone, I have an Encore WT8-A-102 with Windows 8.1 One morning, when I tried to start it (not from standby/hibernation but normal start) nothing happend anymore. the display stayed black. only when I touched the windows button sometimes it vib

  • Oracle Text Manager

    I can't find the Oracle Text Manager within Oracle Enterprise Manger 10g (Web based). Can anybody tell me where I can find OTM ? thx in advance

  • How to call an HTML page from a JSP

    Hi, I am getting problem in calling an html page from a jsp The Sample code is int rowsAffected = stm.executeQuery("Select * From Table"); if (rowsAffected == 1) {   %> <jsp:forward page="xyz.html" /> <%

  • Having difficuty registering my product - please help.

    The number on my disk sleeve is not 20 characters long.  It is 8 characters.  I need the need to obtain the serial number to use my product.  Please help.  Really, this process is not very user friendly.  :-(

  • Calls from blocked and unsolicaed people to my mob...

    After the latest update I have started to get calls from unsavoury ( profane and swear words)  to my mobile.  No request to join,nothing, but a open line call.  Why is this happening. How can I block a call that I have not invited to be a contact? Th