I need more help importing Z1 HDV footage

I'm trying to import HDV footage that was filed on a Z1
I tried to log and capture the footage from a tape reader with the HDV 1080i50 Easy Setup preset, but the screen was blank. I could see the footage on the tape reader screen but not in Final Cut.
I tried using different fire wires and different MACS but still no joy. As a final resort I tried a different MAC without changing the Easy Setup and leaving the project on the DV Pal preset, and it worked.
Any suggestions as to what I'm doing wrong? If I captured the project using the DV Pal preset, wouldn't the footage be overly-compressed? Or Am I thinking about this all wrong? The footage is definitely HDV!
And while I'm here does anyone know of any material that I could 'study' to help me understand the setups/compressions etc. I find it really confusing!
Thanks again
Ian

Most likely the camera is set to downconvert to PAL and iLink is switched on.

Similar Messages

  • Need more help importing single songs from CDs...please

    Okay, I put the CD in, deselected the songs that I do not want to import, the ones I want are checked, then what do I do next? If I go to file and click import it takes me to a window to select iTunes, Playlist and so on. So, any help would be appreciated. Thanks.

    I put the CD in, deselected the songs that I do not want to import, the ones I want are checked, then what do I do next?
    Click on the "import" button in the bottom right corner.
    You could've kept all your questions in the same thread you know!!

  • Need more help with a GUI

    It's the ever popular Inventory program again! I'm creating a GUI to display the information contained within an array of objects which, in this case, represent compact discs. I've received some good help from other's posts on this project since it seems there's a few of us working on the same one but now, since each person working on this project has programmed theirs differently, I'm stuck. I'm not sure how to proceed with my ActionListeners for the buttons I've created.
    Here's my code:
    // GUICDInventory.java
    // uses CD class
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    public class GUICDInventory extends JFrame
         protected JPanel panel; //panel to hold buttons
         protected JPanel cdImage; // panel to hold image
         int displayElement = 0;
         public String display(int element)
                   return CD2[element].toString();
              }//end method
         public static void main( String args[] )
              new GUICDInventory();
         }// end main
         public GUICDInventory()
              CD completeCDInventory[] = new CD2[ 5 ]; // creates a new 5 element array
             // populates array with objects that implement CD
             completeCDInventory[ 0 ] = new CD2( "Sixpence None the Richer" , "D121401" , 12 , 11.99, 1990 );
             completeCDInventory[ 1 ] = new CD2( "Clear" , "D126413" , 10 , 10.99, 1998 );
             completeCDInventory[ 2 ] = new CD2( "NewsBoys: Love Liberty Disco" , "2438-51720-2" , 10 , 12.99, 1999 );
             completeCDInventory[ 3 ] = new CD2( "Skillet: Hey You, I Love Your Soul" , "D122966" , 9 , 9.99, 1998 );
             completeCDInventory[ 4 ] = new CD2( "Michael Sweet: Real" , "020831-1376-204" , 15 , 12.99, 1995 );
             //declares totalInventoryValue variable
                 double totalInventoryValue = CD.calculateTotalInventory( completeCDInventory );
              final JTextArea textArea = new JTextArea(display(displayElement));
              final JButton prevBtn = new JButton("Previous");
              final JButton nextBtn = new JButton("Next");
              final JButton lastBtn = new JButton("Last");
              final JButton firstBtn = new JButton("First");
              prevBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                        displayElement = (//what goe here? ) % //what goes here?
                        textArea.setText(display(displayElement));// <--is this right?
              nextBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                          displayElement = (//what goes here? ) % //what goes here?
                        textArea.setText(display(displayElement));// <--is this right?
              firstBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                        displayElement = 0;
                        textArea.setText(display(displayElement));// <--is this right?
              lastBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                        displayElement = //what goes here?;
                        textArea.setText(display(displayElement));// <--is this right?
              JPanel panel = new JPanel(new GridLayout(1,2));
              panel.add(firstBtn); panel.add(nextBtn); panel.add(prevBtn); panel.add(lastBtn);
              JPanel cdImage = new JPanel(new BorderLayout());
              cdImage.setPreferredSize(new Dimension(600,400));
              JFrame      cdFrame = new JFrame();
              cdFrame.getContentPane().add(new JScrollPane(textArea),BorderLayout.CENTER);
              cdFrame.getContentPane().add(panel,BorderLayout.SOUTH);
              cdFrame.getContentPane().add(new JLabel("",new ImageIcon("cd.gif"),JLabel.CENTER),BorderLayout.NORTH);
              cdFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              cdFrame.pack();
              cdFrame.setSize(500,200);
              cdFrame.setTitle("Compact Disc Inventory");
              cdFrame.setLocationRelativeTo(null);
              cdFrame.setVisible(true);
         }//end GUICDInventory constructor
    } // end class GUICDInventory
    // CD2.java
    // subclass of CD
    public class CD2 extends CD
         protected int copyrightDate; // CDs copyright date variable declaration
         private double price2;
         // constructor
         public CD2( String title, String prodNumber, double numStock, double price, int copyrightDate )
              // explicit call to superclass CD constructor
              super( title, prodNumber, numStock, price );
              this.copyrightDate = copyrightDate;
         }// end constructor
         public double getInventoryValue() // modified subclass method to add restocking fee
            price2 = price + price * 0.05;
            return numStock * price2;
        } //end getInventoryValue
        // Returns a formated String contains the information about any particular item of inventory
        public String displayInventory() // modified subclass display method
              return String.format("\n%-22s%s\n%-22s%d\n%-22s%s\n%-22s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n  \n" ,
                                       "CD Title:", title, "Copyright Date:", copyrightDate, "Product Number:", prodNumber , "Number in Stock:",
                                       numStock , "CD Price:" , "$" , price , "Restocking fee (5%):", "$", price*0.05, "Inventory Value:" , "$" ,
                                       getInventoryValue() );
         } // end method
    }//end class CD2
    // CD.java
    // Represents a compact disc object
    import java.util.Arrays;
    class CD implements Comparable
        protected String title; // CD title (name of product)
        protected String prodNumber; // CD product number
        protected double numStock; // CD stock number
        protected double price; // price of CD
        protected double inventoryValue; //number of units in stock times price of each unit
        // constructor initializes CD information
        public CD( String title, String prodNumber, double numStock, double price )
            this.title = title; // Artist: album name
            this.prodNumber = prodNumber; //product number
            this.numStock = numStock; // number of CDs in stock
            this.price = price; //price per CD
        } // end constructor
        public double getInventoryValue()
            return numStock * price;
        } //end getInventoryValue
        //Returns a formated String contains the information about any particular item of inventory
        public String displayInventory()
              //return the formated String containing the complete information about CD
            return String.format("\n%-22s%s\n%-22s%s\n%-22s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n  \n" ,
                                       "CD Title:", title, "Product Number:", prodNumber , "Number in Stock:",
                                       numStock , "CD Price:" , "$" , price , "Restocking fee (5%):", "$", price*0.05, "Inventory Value:" , "$" ,
                                       getInventoryValue() );
        } // end method
        //method to calculate the total inventory of the array of objects
        public static double calculateTotalInventory( CD completeCDInventory[] )
            double totalInventoryValue = 0;
            for ( int count = 0; count < completeCDInventory.length; count++ )
                 totalInventoryValue += completeCDInventory[count].getInventoryValue();
            } // end for
            return totalInventoryValue;
        } // end calculateTotalInventory
         // Method to return the String containing the Information about Inventory's Item
         //as appear in array (non-sorted)
        public static String displayTotalInventory( CD completeCDInventory[] )
              //string which is to be returned from the method containing the complete inventory's information
              String retInfo = "\nInventory of CDs (unsorted):\n";
              //loop to go through complete array
              for ( int count = 0; count < completeCDInventory.length; count++ )
                   retInfo = retInfo + "Item# " + (count + 1);          //add the item number in String
                   retInfo = retInfo + completeCDInventory[count].displayInventory();     //add the inventory detail in String
              }// end for
              return retInfo;          //return the String containing complete detail of Inventory
        }// end displayTotalInventory
         public int compareTo( Object obj ) //overlaod compareTo method
              CD tmp = ( CD )obj;
              if( this.title.compareTo( tmp.title ) < 0 )
                   return -1; //instance lt received
              else if( this.title.compareTo( tmp.title ) > 0 )
                   return 1; //instance gt received
              return 0; //instance == received
              }// end compareTo method
         //Method to return the String containing the Information about Inventory's Item
         // in sorted order (sorted by title)
         public static String sortedCDInventory( CD completeCDInventory[] )
              //string which is to be returned from the method containing the complete inventory's information
              String retInfo = "\nInventory of CDs (sorted by title):\n";
              Arrays.sort( completeCDInventory ); // sort array
              //loop to go through complete array
              for( int count = 0; count < completeCDInventory.length; count++ )
                   retInfo = retInfo + "Item# " + (count + 1);     //add the item number in String
                   retInfo = retInfo + completeCDInventory[count].displayInventory(); //add the inventory detail in String
              return retInfo;     //return the String containing complete detail of Inventory
         } // end method sortedCDInventory
    } // end class CD

    nextBtn.addActionListener(new ActionListener()
         public void actionPerformed(ActionEvent ae)
                   displayElement = (//what goes here? ) % //what goes here?
                   textArea.setText(display(displayElement));// <--is this right?
    });Above is your code for the "Next" button.
    You ask the question "What goes here"? Well what do you think goes there?
    If you are looking at item 1 and you press the "Next" button do you not want to look at item 2?
    So the obvious solution would be to add 1 to the previous item value. Does that not make sense? What problem do you have when you try that code?????
    Next you say "Is this right"? Well how are we supposed to know? You wrote the code. We don't know what the code is supposed to do. Again you try it. If it doesn't work then describe the problem you are having. I for one can't execute your code because I don't use JDK5. So looking at the code it looks reasonable, but I can't tell by looking at it what is wrong. Only you can add debug statements in the code to see whats happening.
    If you want help learn to as a proper question and doen't expect us to spoon feed the code to you. This is your assignment, not ours. We are under no obligation to debug and write the code for you. The sooner you learn that, the more help you will receive.

  • Need to make dailies of HDV footage

    I have 3 hours of HDV footage that I need to put to tape, DVD, or whatever.
    everything I try is telling me it's going to take 20 hours.
    I tried exporting 3 1 hour sequences using compressor. i've tried just going back to tape. why is everything taking so long. I need this to work overnight. I am.
    The latest thing I tried was copying the footage to a DV sequence. now I'm rendering that and it's saying 10 hours. If that works I can dump it onto a 184 minute DVCAM tape and everything will be fine. but this seems like a lot of work. am I doing something wrong?

    Jake,
    20 hours does seem like an awful lot. Are you trying to render in the timeline, and its taking hours, or are you rendering inside compressor?
    When I need to get something off fast, I just edit to tape on a miniDV. Is there a reason you can't do this? If that won't do, I use File>Export>Using Quicktime Conversion and burn it onto a DVD. It's the fastest method I know of.
    I'm guessing since these are dailies that they don't need to be of superior quality, that said the above Quicktime process isn't exactly great in terms of quality. But some footage to show is better than no footage to show. Anyway I'm just guessing you are looking for solutions ASAP and I'm sure someone else will have better solutions, but until then, maybe this will suffice for you?
    Power Mac G5   Mac OS X (10.4)   Final Cut Pro v 5.0.1 Academic, AirPort Extreme

  • HT4061 I AM ASKING THAT I TRIED TO UPDATE MY iPHONE 4 BUT NOT RESPONDING PLEASE I NEED MORE HELPING

    I AM ASKING THAT I TRIED TO UPDATE MY iPHONE 4 BUT NOT RESPONDING PLEASE I NEED MORE HELPING

    If you are rying to update an iPhone 4 that now has iOS 4.3, you must connect to a computer with iTunes, start iTunes and select the iPhone from the list of Devices on the left side of the window.  Then in the main Summary window select Software Update.  The process will take a rather long time, up to half an hour depending on the speed of your internet connection.

  • Need change preset if adding HDV footage to SD project?

    How  do you accomplish that and what are the results to the new HDV  and the old SD footage?

    Though of no help in PrE, PrPro CS4 allows one to mix footage through different Presets for different Sequences (think mini-Projects in one major Project). Even earlier versions of PrPro could not do this, and one had to do separate Projects, as the Presets were Project-based, and not Sequence-based, though earlier versions did have Sequences.
    Good luck,
    Hunt

  • Need More Help!

    Hi
    Sorry to be such a pain but I always have problems with this.
    This isn't related to my other project.
    I'm saving video from Fraps at 1920 by 1200, in AVI format, the resolution of my monitor.
    I want to import it into PE10, crop it to a wide screen format and export it at  1600 by 900 frames size as an AVI file.
    The clip coming in is 1.0 PAR.
    In the options to export AVI files I can't find any options to export it at anything other then 720 by 480.
    It doesn't matter if I pick Standard NTSC Wide Screen NTSC or Microsoft AVI the only options are 720 by 480.
    It won't let me change the size in the advanced menu on any of the formats.
    I could export it at anything I want as a WMV file but I have to have an AVI file to import it into the program I want to use it in.
    Is there any way to do this?
    And last even when I do export it as an AVI file at 720 by 480, and the image is bigger then the preview window, what I get is a much smaller image that doesn't fill the frame.
    I thought I finally had the PAR thing figured out, it's 1.0 PAR going in, and 1.0 PAR going out but it still doesn't come out right.
    I just tried importing it at Full HD 30 and outputting it at Standard NTSC and I get a small frame in a bigger window.
    Any help welcome.
    Mike

    tep one: Visit http://www.giganews.com/line_info.html and post up the Traceroute the page shows, if you wish. Be aware that your non-bogan public IP Address will show up.  It might shown up as the final hop (bottom-most line of the trace)  might contain a hop with your IP address in it. Either remove that line or show only the first two octets. What I'm looking for is a line that mentions "ERX" in it's name towards the end. If for some reason the trace does not complete (two lines full of Stars), keep the trace route intact.
    For example this what I see
        news.giganews.com
        traceroute to 71.242.*.* (71.242.*.*), 30 hops max, 60 byte packets
        1 gw1-g-vlan201.dca.giganews.com (216.196.98.4) 13 ms 13 ms 13 ms
        2 ash-bb1-link.telia.net (213.248.70.241) 39 ms 7 ms 7 ms
        3 TenGigE0-2-0-0.GW1.IAD8.ALTER.NET (63.125.125.41) 4 ms 4 ms GigabitEthernet2-0-0.GW8.IAD8.ALTER.NET (63.65.76.189) 4 ms
        4 so-7-1-0-0.PHIL-CORE-RTR1.verizon-gni.net (130.81.20.137) 6 ms 6 ms 6 ms
        5 P3-0-0.PHIL-DSL-RTR11.verizon-gni.net (130.81.13.170) 6 ms 6 ms 6 ms
        6 static-71-242-*-*.phlapa.east.verizon.net (71.242.*.*) 32 ms 32 ms 33 ms
    Step two: Can you provide the Transceiver Statistics from your modem?
    #3 If you don't know how to get that info:
    a) What is the brand and model of your modem?
    b) If you have a RJ-45 WAN port router connected to it: What is the brand and model of the RJ-45 WAN port router?
    #4 If you have a RJ-45 WAN port router connected to the modem, even if you know how to get the Transceiver Statistics from the modem: What is the brand and model of the RJ-45 WAN port router?
    If you are the original poster (OP) and your issue is solved, please remember to click the "Solution?" button so that others can more easily find it. If anyone has been helpful to you, please show your appreciation by clicking the "Kudos" button.

  • Need some help clearing up the footage

    ok, after 5 days straight of staying up all night and day to figure this program out (i dont have much prior experience with such a complicated program) i finally made my first dvd complete with a menu and all... only 1 problem, why is my video so choppy on the tv? is there some setting i can change to fix this? i am not to familiar with some of the terminology used in the books that came with the program and to be honest i don't really know what I am looking for sometimes when i have a question for the book... anyone have any advice on how to un chop this footage?

    hmmm, i compressed the footage at like 4 this morning so bare with me a sec... ok, i think by preview i mean the preview i see in dvd studio pro when i preview my menu, i clicked on one of the videos and watched a bit of it and it was kinda choppy... i dont think i veiwed the video before i compressed it... when i was done cutting up teh films i exported to compressor and compressed all the videos ina batch. about 14 short videos... i used the setting Best Quality: 120 minutes 4:3 MPEG-2 5.0Mbs 2-pass 4:3 .... dont know exactly why i chose this one but i know that i needed to burn in MPEG-2 format in order to play it on a dvd player.... is this helping? sorry guys if i am not clear about this...

  • BRAND NEW APPLE USER IN DESPERATE NEED OF HELP IMPORTING VIDEOS FROM JVC!!!

    I have an older JVC Everio. I have probably had it for 3 or 4 years. I don't exactly remember. Anyway, I have always used Dell products and they were tough to download videos to as well. What my issue is is that I have a Free Agent External Hard Drive with all my video files saved in the JVC .MOD format. When I open iMovie (version 7.1.1) and try to import the files from the external hard drive it doesn't even recognize these files as video files. I am no computer wizard (maybe that is obvious) and I could really use some basic help. I want to love this machine. I bought it for the video/photo capabilities. I shoot a Canon XTi 10.2 Rebel and have about 10,000 photos saved on the same external hard drive. I am looking forward to learning how to do this, but could use some much needed advice!!
    Thanks!
    Hoov

    I believe this is what you want.
    And, here's another: MPEG Streamclip .
    The Cyberlink Prodirector software that came with the CamCorder or is available from JVC will also convert to other formats, but it isn't a Mac compatible program.
    And, this site outlines how to import the files into iMovie.
    Message was edited by: Kappy

  • Converted DVD files, Now I Need More Help

    I converted my DVD files so that my video iPod can read them, but now I have another problem. It would seem that a DVD has 8 or more seperate files that contains different portions of the actual movie.
    How can I get all of those different chapter files into one streaming video?

    You need to install itunes (the actual program) on your C: drive. The program and preference files don't take up that much space.
    Then put the actual music, podcasts, videos, etc on the exHD. Use itunes to do this, not Win Explorer, so itunes will be able to find the files after the move.
    Directions on moving the music to an exHD:
    http://support.apple.com/kb/HT1364

  • Sorry but I need more help to set up AE as bridge

    Hi, I had some advise on how to set up airport Extreme as a bridge (? - I need to extend my network without confusing two or more IP addresses or something like that). I have tried a few thing but really do not know how to connect to the device for the setup. I think the LAN connection from the ISP Modem should go into the "circle" port and the MAC should plug into one of the three <-.-> ports.
    In running through AE utility, I end up with it telling me that I do not have an IP address and I should contact my ISP.
    If there is someone out there that has the knowledge and patience to give me a step by step guide to connect and configure this setup so that I end up with a reliable network extension that does not clash with the ISP modem Router. I would be very grateful. Thanks!

    I will check. I it possible that that was not the model number. I have hooked up the laptop so I can communicate again. and hmmm, sorry it is a 2701 model.
    Here's what I have done in the mean time and the information you requested Bob:
    Switched everything off again, disconnected the apple TV and 2Wire modem, connected modem, connected AE, waited 3 minutes, switched on Mac Pro then connected to <-.-> port on AE, waited 2 minutes, started up Airport Utility and tried to connect (after upgrading to latest firmware).
    Resulting in Error message:
    "An error occurred while updating the configuration.
    Make sure your Apple wireless device is plugged in and in range of your computer or connected via Ethernet and try again. (-6737)"
    I can report the connections settings prior to changing them:
    Connect using: Ethernet (I left this as was)
    Configure IPv4: Using DHCP (I set to manually)
    Ethernet WANPort: Automatic I l left this as was)
    Connection sharing: Share a public IP address (I set to "OFF (Bridge Mode)")
    resulting in the error mentioned above..
    Does this tel you anything? Should I disconnect my MacBook which is using wifi to 2Wire?
    I am going to try to set the AE with the MacBook while I wait for your advice.
    Thanks again! Floor

  • Badly in need of help: Importing asf-files to iTunes

    Hi all,
    I have a truely oldfashioned problem. I work as a teacher and some of the materials I use are on cd-rom using asf-format. I'd really like to import the files to iTunes (and then to my iPad, 3rd gen.) so that it's easier to handle when I don't have access to a cd-rom/dvd drive.
    Do you have any suggestions?
    Best
    The Danish teacher

    http://en.wikipedia.org/wiki/Advanced_Systems_Format
    It might be very, very difficult to work with the files.  It is strange that a CD would use a streaming format since that is usually a web page format.  If it is in a proprietary format you will need a player specifically designed to accommodate that.  then too they may be in WMA format instide that stream which means proprietary format inside proprietary format.  That format is designed primarily for Windos systems so add on a third hurdle.
    You can check out VLC media player and see if it will play them.  You can likely copy the CD to your computer and use if from there.  I don't know if you can find anything to convert though.

  • Playing H.264 content using NetStream (got it to work; need more help though PLEASE)

    hey everyone,
    by going on here
    http://www.adobe.com/devnet/flashplayer/articles/hd_video_flash_player_03.html
    i've been able to stream a h.264 video.
    below is the code i used to make the .mp4 stream (which is in
    the link above).
    everything works great when i publish the swf.
    it plays perfectly and everything, but..it's just a little
    screen.
    what i have to do is create a little video player for it so
    you can hit PLAY and STOP, but my creative director also wants it
    to be able to SCRUB so you can scrub through it if you want.
    i'm not the best flash person in the world, so every little
    bit anyone can help me is highly appreciated.
    i need to have something to show the creative director by
    tomorrow...and i'm really stressing it.
    i just need to be able to make what i've set up to PLAY,
    STOP, and SCRUB...
    and i'm not really sure how to do this.
    when i asked my creative director about the scrubbing, he
    said u can do that by using netObjects.
    whats the most efficient way to make my video play, stop, and
    be able to scrub?
    please help =D
    i'd really really appreaciate it.
    thank you so very much.
    _Tobes

    anyone?
    anyone?

  • I need more help

    I have to install an new hard my main run of room on it and I transfer everything over to the new hard drive will Itunes will play the list is gone. I have try going to the download page to reinstall it that doesn't work could I please have the link for the the installer and I can itunes be used from the external hard drive I have the library on the external hard drive it just it won't play so I was trying to reinstall it so that maybe I can get it working I got bigger external hard than what is in my computer I only had an 80 GB Internal Hard Drive Now I have 250GB Exteranl Hard Drive now I have still room on both hard drives But I want use itunes from the external on instead of the internal hard drive now that way that itunes is always is on the main hard drive

    You need to install itunes (the actual program) on your C: drive. The program and preference files don't take up that much space.
    Then put the actual music, podcasts, videos, etc on the exHD. Use itunes to do this, not Win Explorer, so itunes will be able to find the files after the move.
    Directions on moving the music to an exHD:
    http://support.apple.com/kb/HT1364

  • Grandma needs more help

    My grandkids have been going to their proms. My daughter-in-laws have been sending me the photos via e-mail. I use AOL. One daughter-in-law is on Comcast and has a Mac, the other on ATTYahoo and uses a PC. In both cases the photos appear in the message area of the e-mail, not as an attachment, so I can’t download them. They both use digital cameras and the photos are huge, I can’t even see the whole picture on my 17” screen. HOW can I save these photos and put them in iPhoto? Nothing I have tried seems to work. Even tried taking a Snapshot, but no luck. Anybody have any ideas for me, I would really like to have these photos.
    Grandma Sylvia

    Grandma Sylvia,
    What happens if you Right-Click (same as Control-Click) the picture in the email? You may get a pop-up menu with the option to save the image. If you can save it to your desktop, do so, then import into iPhoto and delete the desktop copy.
    Edit:
    If clicking and dragging to the desktop doesn't seem to work, keep the mouse button depressed (after you click on the photo) and hold it over the desktop for a minute. When the curser shows you a green plus sign, you can release and the photo will be saved on your desktop. Sometimes my computer takes a while with large files, and I have learned to be patient.

Maybe you are looking for

  • ITunes can't recognize songs on my external hard drive

    Hi, I moved my iTunes folder onto another external, and then redirected the iTunes to my new drive. It updated all my songs. Then I found that randomly a lot of the songs (about 20%) did not sync up. They all have a "?" icon next to the songs. Now 20

  • AC 5.3 RAR and Organizational rules

    Hi all, we are implementing risks based on organizational rules. It is not clear in my mind how the system manages actions that do not have authorizations objects activated (at permission levels) or have authorization object activated but without org

  • How to force refresh in iOS 7 Calendar app?

    Is there any way to manually initiate a refresh in the Calendar app in iOS 7? (I'm using iCloud to sync my personal and shared calendars with two Macs and two other users.) In the iOS Calendar app, at least between the introduction of iCloud and iOS

  • Encore 1.5 can't import assets

    Hi, I have been an Encore 1.51 user for years with no problems.  Now suddenly, half of my projects won't open at all, and I can't import any assets.  I use Premiere Pro 1.5 to edit video and have tried to export different types.  I get a message that

  • Connecting to DB2 Database using JDBC for select/Insert

    Hi, I am trying to connect to an DB2 Database using  JDBC adapter, I have build an UDF for the same. The UDF will try to query the database in the form of Select and INSERT.I am using the LOOKUP API provided by SAP.When I try to execute the UDF I hav