How to import correctly  with good configurations a AVCHD video ?

Hello ! I want to import a video turned with my Sony Nex-VG 20 to adobe premiere pro but there is not the sound. Can someone explain it ? I didn't do the right configurations, so what i have to do ? Thanks.
Fred

Metadata contained in folder http://forums.adobe.com/thread/1015001?tstart=0
-and http://helpx.adobe.com/premiere-pro/using/transferring-importing-files.html
-http://helpx.adobe.com/premiere-pro/using/importing-assets-tapeless-formats.html

Similar Messages

  • How to import missing content for my music and video files from Itune online

    how to import missing content for my music and video files from I tune online.

    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • When I set up my email address on my new IPad, I keyed it in worng.  How do I correct with the right email address

    When I keyed in my email address on my new IPad, I keyed it in wrong.  How can I correct it with the right email address?

    Start from scratch again with the correct Apple ID (email address)
    Settings>General>Reset>Erase all content and settings

  • How to import correctly into audacity

    I have a .mov file that i want to use noise removal on and i've been told audacity can do it. I've been told how to import it and I can import it in but it when you hit play it goes through the whole thing in fast forward or something. how do i import it in so it doesn't do that?

    HI,
    Not sure how to do that with Audacity but QuickTimePro I believe can do this also. Check out the QuickTime forum here http://discussions.apple.com/forum.jspa?forumID=932 perhaps someone can offer some help there also.
    Carolyn

  • Some basic questions how to handle Exceptions with good style

    Ok I have two really basic Exception questions at once:
    1. Until now I always threw all exceptions back all the way to my main method and it always worked well for me but now I am sitting at a big project where this method would explode the programm with throwings of very many exceptions in very many methods. So I would like to know if there is a more elegant solution.
    2. What do I do with exceptions that will never occur?
    Lets say I have a method like this:
    void main() {calculate();}
    void calculate()
    sum(3,5);
    void sum(int a,int b)
    MathematicsA.initialise("SUM"); // throws AlgorithmNotFoundException, will never occur but has to be handled
    }So what is the most elegant way?:
    h4. 1. Ignore because it will not happen
    void sum(int a,int b)
    try {MathematicsA.initialise("SUM");}
    catch(AlgorithmNotFoundException) {}
    }h4. 2. Print stacktrace and exit
    void sum(int a,int b)
    try {MathematicsA.initialise("SUM");}
    catch(AlgorithmNotFoundException e)
    e.printStackTrace();
    System.exit();
    }h4. 3. throw it everywhere
    void main() throws AlgorithmNotFoundException, throws ThousandsOfOtherExceptions  {}
    void calculate()  throws AlgorithmNotFoundException, throws HundretsOfOtherExceptions
    sum(3,5);
    void sum(int a,int b) throws AlgorithmNotFoundException
    MathematicsA.initialise("SUM");
    }h4. 4. Create special exceptions for every stage
    void main() throws MainParametersWrongException
    try {calculate();}
    catch(Exception e)
      throw new MainParametersWrongException();
    void calculate()  throws SumInternalErrorException
    try {sum(3,5);}
    catch (SumInternalErrorException)    {throw new CalculateException();}
    void sum(int a,int b) throws SumInternalErrorException
    try
    MathematicsA.initialise("SUM");
    } catch (AlgorithmNotFoundException e) {
    throw new SumInternalErrorException();
    }P.S.: Another problem for me is when a method called in a constructor causes an Exception. I don't want to do try/catch everytime I instantiate an object..
    Example:
    public class MySummation()
         Mathematics mathematics;
         public MySummation()
                 mathematics.initialise("SUM"); // throws AlgorithmNotFoundException
         void sum(int x,int y)
              return mathematics.doIt(x,y);
    }(sorry for editing all the time, I was not really sure what I really wanted to ask until i realised that I had in fact 2 questions at the same time, and still it is hard to explain what I really want to say with it but now the post is relatively final and I will only add small things)
    Edited by: kirdie on Jul 7, 2008 2:21 AM
    Edited by: kirdie on Jul 7, 2008 2:25 AM
    Edited by: kirdie on Jul 7, 2008 2:33 AM
    Edited by: kirdie on Jul 7, 2008 2:34 AM

    sphinks wrote:
    I`m not a guru, but give my point of view. First of all, the first way is rude. You shouldn`t use try with empty catch. "rude" isn't the word I'd use to describe it. Think about what happens if an exception is thrown. How will you know? Your app fails, and you have NO indication as to why. "stupid" or "suicidal" are better descriptions.
    Then for the second way, I`ll reccomend for you use not printStackTrace(); , but use special method for it:
    public void outputError (Exception e) {
    e.printStackTrace();
    }It`ll be better just because if in future you`d like to output error message instead of stack of print it on GUI, you`ll need change only one method, but not all 'try' 'catch' statements for changing e.printStackTrace(); with the call of new output method.I disagree with this. Far be it from me to argue against the DRY principle, but I wouldn't code it this way.
    I would not recommend exiting from a catch block like that. It's not a strategy for recovery. Just throw the exception.
    Then, the third way also good, but I suppose you should use throws only if the caller method should know that called method have a problem (for example, when you read parametrs from gui, so if params are inccorect, main method of programm should know about it and for example show alert window)."throw it everywhere"? No, throw it until you get to an appropriate handler.
    If you're writing layered applications - and you should be - you want to identify the layer that will handle the exception. For example, if I'm writing a web app with a view layer, a service layer, and a persistence layer, and there's a problem in the persistence tier, I'd let the service layer know what the persistence exception was. The service layer might translate that into some other exception with some business meaning. The view layer would translate the business exception into something that would be actionable by the user.
    And in all other cases I suppose you should use the fourth way. So I suppose it`s better to combine 2,3,4 ways as I have mentioned above.I don't know that I'd recommend special exceptions for every layer. I'd reuse existing classes where I could (e.g., IllegalArgumentException)
    Sorry, I can give you advice how to avoid problem with try-catch in constructor. :-(You shouldn't catch anything that you can't handle. If an exception occurs in a constructor that will compromise the object you're trying to create, by all means just throw the exception. No try/catch needed.
    You sound like you're looking for a single cookie cutter approach. I'd recommend thinking instead.
    %

  • How to import files with static variables into a block with methods?

    i have a problem. is it possible to import files with static variables into tags like
    <%!
    //here i want to import a file named settings.inc
    //whitch is used to set jdbc constants like url,driver,...
    private void method() {
    private void method2() {
    %>
    <%@include file="xy"%>//dosn�t work above
    //only in <%%>tag

    This should be done using either the Properties class or ResourceBundle. Ex.
    <%
    ResourceBundle resBun = ResourceBundle.getBundle(String resource);
    String username = resBun.getString("username");
    String password = resBun.getString("password");
    // etc
    %>

  • Import error with MPEG-2 files: Brorsoft Video Converter to Apple Prores.

    Hi,
    The Brorsoft Video Converter software gives me an 'import error' message when I attempt to import files from a folder on my desktop. That folder contains many mpg files (MPEG-2 Video, AC3). Those files in the folder on my desktop came from a Sony video camera.
    I need to convert those mpg files to Apple Prores 422 HQ so I can then edit them in Apple Final Cut Pro X.
    But when I go to import those mpg files into the Brorsoft Video Converter software, it comes up with a message saying: 'import error', indicating that the Brorsoft Video Converter software does not understand the type of file.
    I am on Mac OS X Version 10.6.8.
    I've emailed Brorsoft support but I don't think English is their first language – they've emailed back to me asking for clarification of the problem. And I need the problem fixed as I have to edit this video for someone that has many waiting customers.
    Could something have changed in the files when I copied them from the video camera to the desktop?
    Thanks in advance.
    Cheers,
    Paul

    Hi Tom,
    Thanks for your prompt reply. I was using a friend's video camera – I've just texted him for the exact model of Sony video camera. I didn't yet have the Brorsoft Video Converter software when I had to give the video camera back to my friend. So, I copied the files off the video camera to my desktop.
    It records onto an internal hard drive. And yes you're right, I don't need to go HQ. I also tried plain Apple Pro Res. That didn't work either. It comes up with 'Import error' message, so it seems like it just doesn't understand the file type.
    When I go 'Get Info' on one of the files off the camera, it tells me it is an 'MPEG-2 video, AC3' file.
    I'll try and get MPEG Streamclip like you suggested and see if that works.
    Thanks again.
    Cheers,
    Paul

  • Flash Pro, How can preview sound with the vidio on embedded video on the timeline

    I am using a windows 7 based machine Flash Pro CC.  I embedded the video on the timeline, basically a person talking. Want to put pictures in and out during certain times of the discussion but when I press play on the preview these is no sound.  When I test publish the project I get sound.  How do I get the sound on the embedded video to play on the preview?

    Make sure that you have the latest version of > Safari 4.1 for Tiger
    Then check and update your >  Adobe - Flash Player

  • How to import corrections in to DEV system ?

    Hi All,
    I have to apply the corrections for FI module to my DEV system.
    FI Consultant has downloaded that SAP NOTE in to DEV system thru SNOTE, and its status = can be implemented.
    NOTE = 1015410 has SAR files as attachements and I have downloaded the corrections [SAR files].
    The correctin is for = "Additional Field added for withholding tax codes"
    It has 3 SAR files which contains some new Screens and Screen Elements introduced in the Program = J_1IEWT_PROVISIONS.
    In the Note = 1015410, it is mentioned that " to apply SAR files, refer to Related notes=  480180,13719. "
    Note 480180 says that if it is a correction, " you must follow the installation instructions in the long text of the
    respective SAP note in order to implement the correction in your system ".
    In the NOTE - 13719, it says we need to open the ftp connection to sapservX [userid/pswd=sapservX] and download the data,
    cofiles ?
    Iam not sure how we can do this.
    And i have Uncared the 3 SAR files and i got the following files :
    k003805.CVD - cofile
    R003805.CVD - datafile
    K087494.P7D
    R087494.P7D
    K906169.Q3A
    R906169.Q3A
    In the R/3 DEV server, in /usr/sap/trans,i have a old SAR file = TDS_SAPScript_470.SAR. It had 2 files in it =
    K209581.P6B - cofile
    R209581.P6B - data file
    And K209581.P6B is found in /usr/sap/trans/cofiles/
    But R209581.P6B is not found.
    Does this means that i have to copy the files of the SAR files to /usr/sap/trans/cofiles/ and /usr/sap/trans/data/ ???
    Do i have to copy these files to /usr/sap/trans, and then " tp ADDTOBUFFER ","tp Import ".
    And if i go to correction instruction in the SAP NOTE, i have a Transport Request = CVDK003805 in it. Now what do i have to
    do with that ?
    I have access to OS [hp unix] as root user and also i got access SAP in 000 client.
    Please guide me how i can apply these corrections.
    sap - mySAP ERP ECC 5.0
    Kernal - 640 patch # - 155
    Basis - Package level - 19.
    db - ora 10.2g
    os - hp ux 11.23b ia64
    FI component = SAP_APPL
    LEVEL - 14
    RELEASE - 500
    Regards,
    Shyamsundar G C

    Hi Hariprasad,
    i copied the files to cofiles and data files in my DEV system.
    i tried to do this, iam getting err msg...wht shud i check now.
    tp ADDTOBUFFER K087494.CVD GRD pf=/usr/sap/trans/bin/TP_DOMAIN_GRD.PFL
    ERROR: Parameter for transport request (K003805.CVD) is invalid.
           Either use "ALL" as transport request or
           make sure the fourth character of the transport request is a 'K'.
    ERROR: : transport request parameter is invalid [tp.c,10528]
    tp returncode summary:
    TOOLS: Highest return code of single steps was: 0
    ERRORS: Highest tp internal error was: 0203
    tp finished with return code: 203
    meaning:
      wrong syntax in tp call
    tp ADDTOBUFFER ALL GRD pf=/usr/sap/trans/bin/TP_DOMAIN_GRD.PFL
    ERRORS: Highest tp internal error was: 0247
    tp finished with return code: 247
    meaning:
      addtobuffer has problems with data- and/or cofile
    If i go the STMS_IMPORT in my DEV system, i can see that there is  TR - P6DK105630 which has been imported to my DEV system from a system = P6D. Plz let me know how it is done ?
    Also i have a cofile which i got after UNCAR, which has the same number as that of an existing one....how to copy it now with out overwriting ?

  • How to import MP3 with file name into library, rather than tag?

    I've been given a CD with about 200 MP3s of lectures. They are to be listened to in order, and the file names reflect the order number, like "lecture 1", "lecture 2", etc. However, when I drag them all into iTunes, the names in the iTunes library don't include the file names - they are simply "lecture", which I guess must come from a tag in the MP3 file. So iTunes is ignoring the file name and thus I end up with 200 entries in my iTunes library that can't be ordered properly. How can I get it to use the file name when importing?
    Mike

    If you have your iTunes preferences set to keep your iTunes Music folder organized, it's possible that even the file names have changed according to the files' tags. In that case, you'll need to (at least temporarily) disable this option and import the files from your CD again.
    Once you're sure the files have been successfully added to your iTunes library and the file names kept intact, you can use the Filenames to Song Names script from Doug's AppleScripts for iTunes.
    This should get everything sorted out.

  • How to import images with path embedded in XML tag

    I have a website that has blogs with embedded images. I need to design an XML that can be imported in Indesign. I am able to import XML and lay it out in Indesign if I have only text. But I am not able to include or show the intermittent, embedded images in Indesign. Can this be done? -Thanks

    I can drag an image from, for example, the desktop, but if I delete that file on the desktop I won't be able to open that image in iPhoto, even if I've imported it
    That's an indication that you may have your library set up as a referenced library:
    Check the Advanced preferences in iPhoto to see if that checkbox is selected or not.  If it isn't checkec, check it and try importing agan. 
    To make sure all Photo Stream photos are automatically imported into your library set up iPhoto's PS preferences like this:
    You should read this User Tip by Terence Devlin which is the best treatise on how to access photos (for use outside of iPhoto):  How to Access Files in iPhoto
    OT

  • How to import xml with data?

    Excel 2013
    i got an XML file generated by the GPinventory tool. when i import it into Excel, i only get the headers.
    how can i import the data as well?

    Hi,
    As far as I know, the GPinventory tool Supported Operating System :Windows 2000, Windows Server 2003, Windows XP, I suppose it generated XML file with Excel 2003 schema, but Excel 2013 have a new XML schema. This issue usually caused by the XML scheme.
    Please create a Excel 2013 schema XML file
    to test with Excel 2013, if the file could be import well. We'd better check the generated XML file.
    As a workaround, we'd better save the results as
    a tab-delimited text file and then import to Excel 2013.
    If this issue still exists, please upload the XML file through OneDrive. I want to test it.
    Regards,
    George Zhao
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help. If you have any feedback on our support, please click "[email protected]"

  • How to import DVD with TC error to FCE?

    I try to import the DVD to FCE, but it has some problems with the time code. I use the Streamclip. But after few minutes it shows me error as below:
    All DVD players shows the DVD corect - I can watch it without any problem. The problem is when I try to import it to FCE.  Do you have any ideas, how to solve the problem?

    Please tell us more about the DVD, and the settings you are using in MPEG Streamclip.
    Is it a commercial DVD?
    What file type/codec are you trying to convert the DVD to?
    Are you selecting a specific VOB file to convert or just letting MPEG Streamclip convert the entire DVD?

  • How to import Lion Server VPN Configuration Profile into Profile Manager

    Greetings All,
    I'm working on configuring a Lion Server VPN (10.7.2) and I hit the following road block. I succesfully started the VPN server and profile manager. In fact, if I download the built-in "everyone" profile that has the pre-configured VPN to device such as an iPad things work just fine. However, I'd like to create other profiles with the same VPN configuration info so I can delegate more specifically to different groups and users. I was hoping I could simply import the VPN configuration profile that I saved in the Server dashboard when I setup the VPN service into profile manager somehow. The reason I'm going this route is because every time I try to just re-make the VPN profile it doesn't want to work. I'm not sure why, but I figure why re-invent the wheel if I don't have too. Any suggestions?

    After a lot of investigating I haven't found a way to do this, I'm assuming it cannot be done.

  • How to import files with the extension Lotus Notes nsf in OSx Maveriks Mail

    I have a large archive of electronic mail produced with Lotus Notes, then nsf file, recently I purchased (November 2013) a Retina Macbook 15 "with OS Mavericks, I need to import all my mail format nsf program Mail this at Mavericks, I ask for help for this operation
    thanks

    Hello,
    From what I understand through your problem is that you are updating the database tables with the values obtained from the *.msg file, which may also include Asian characters. If you debug and check your internal table I'm certain you would find your Asian characters as they are. But once you upload them on to the database they get distorted. The problem is probably arising because your system is not unicode enabled, Please confirm with your basis person whether the system is Unicode enabled.
    Regards,
    Manish.

Maybe you are looking for