Conforming in HDV:can I save on hd the m2t file instead to send to camera ?

Hello!
I use a Sony HVR V1 and FCP 6 to edit HDV footage.
My Sony PlayStation 3 handles mpeg 2 files very well.
I acquire with FCP by firewire, I edit and after conforming I use print to video to export to camera.
After I use Apple DVHSCap to get from camera the m2t file , I rename it to m2v and I put it on the PS3.
Can I avoid to export to camera and to re-acquire from camera ?? Can I save the file m2t that creates FCP after conforming on Hard Disk instead to send it to the camcorder ?
For me is important to get native m2t file to obtain higher quality.
A question: why a m2v file on Mac with VLC is not very smooth like on PS3 ?? On PS3 is true smooth, on Mac is choppy and I see the artifacts of interlacing.
Excuse me if my english is not too good
Thank you in advance
Ciao
Cino
Italy

your workflow is little confusing...
m2t is a transport stream, which contains both video and audio multiplexed into one file. m2v is an elementary stream, containing video only. You are not accomplishing anything by changing the extension to m2v.
The quality of the video is not in the extension, it is in the encoding. When you export to the camera in HDV mode, you are letting the camera encode back to mpeg2. Don't know how much control you have over the encoding process there. YOu are most likely bound by the presets the camera has. If you use Compressor you can encode to mpeg2 m2v, mpeg2 m2t, mpeg2 with layer1 audio program stream, and many others.
I would read up on video compression both in your manuals and on the web. There is a lot to know about it to get good results.
Don't judge the quality of the video on your computer screen. You should plug your computer into the television if you don't have an external video monitor, and compare the two then...

Similar Messages

  • How to make the Open/Save dialogue download the text file instead of JSP

    I am currently coding on a JSP program, which searches the database and writes the resultset into a file on the server, and then allows the client to download this tab delimited text file onto their local machine. But I met a problem, when the default Open or Save dialogue appears, it shows that it's trying to download the running JSP file from my local host instead of the newly-created text file. Despite this, when I click OK to either Open or Save the file, a warning dialogue will appear saying: The explorer cann't download this file, it's unable to find this internet site or something like that. I get no error message from the server but I was always told that Javax.servlet.ServletException: getWriter() was already called. What does this mean?
    I guess maybe this is caused by the mix use of outputStreams in my program. I don't know if there is a way to directly read the resultset from the database and then send it through outputStream to the client. My solution is: first create a file on the server to hold the resultset, and then output this file to the client. I did all these in one JSP program: Create file on the server, search database, and then read file and output the contents to client. Is this correct? I attached my code, please feel free to correct any of my mistake? Thanks!
    //global.class is a class dealing with database connection
    <%@ page language="java" import="java.sql.*,java.util.*,java.math.*,java.io.*,ises.*,frmselection.*" %>
    <jsp:useBean id="global" scope="session" class="ises.Global" />
    />
    <!--start to process data-->
    <%
    //get query statement from the session
    String sQuery = "";
    if (session.getAttribute("sQuery")!=null && !(session.getAttribute("sQuery").toString()).equals(""))
    sQuery = session.getAttribute("sQuery").toString();
    String path = "c:/temp";
    String fileName = "temp.TXT";
    File file= null;
    FileOutputStream fo = null;
    PrintStream ps = null;
    try {
         file = new File(path,fileName);
         if(file.exists()) {
         file.delete();
         file.createNewFile();
         fo = new FileOutputStream(file);
         ps = new PrintStream(fo);
    }catch(IOException exp){
         System.out.println("IO Exception: " +exp.toString() );
    java.sql.ResultSet recResults     = null;
    java.sql.Statement STrecResults = null;
    STrecResults = global.getConnection().createStatement();
    recResults = STrecResults.executeQuery(sQuery);
    ResultSetMetaData meta = recResults.getMetaData();
    int columns = meta.getColumnCount();
    String [] tempColumnName = new String[columns];
    String [] ColumnName =null;
    int DisColumns = 0;
    int unDisCol = 0;
    String sLine = "";
    if(recResults.next()) {     //if_1
    for(int n=0;n<columns;n++) {
    String temp = meta.getColumnName(n+1);
    if(!temp.equals("PROJECTID")&&!temp.equals("BUILDINGID")&&!temp.equals("HAZMATPROFILEID")) {
    sLine = sLine + "'" + temp + "'" + " ";
    tempColumnName[DisColumns] = temp;
    DisColumns ++;
    ColumnName = new String[DisColumns];
    }else {
    unDisCol ++;
    }//end for
    for(int i=0;i<(columns-unDisCol);i++) {
    ColumnName[i] = tempColumnName;
    ps.println(sLine);
    do{
    sLine = "";
    for(int n=0;n<(columns-unDisCol);n++) {
    String tempColName = recResults.getString(ColumnName[n]);
    if(tempColName==null) {
    sLine = sLine + "" + " ";
    } else {
         sLine = sLine + "'"+tempColName+"'" + " ";
    ps.println(sLine);
    }while(recResults.next());
    }     //end if_1
    recResults.close();
    recResults = null;
    STrecResults.close();
    STrecResults = null;
    %>
    <!--end of processing data-->
    <!--start of download.jsp-->
    <%
    //set the content type to text
    response.setContentType ("plain/text");
    //set the header and also the Name by which user will be prompted to save
    response.setHeader ("Content-Disposition", "attachment;filename=temp.TXT");
    //Open an input stream to the file and post the file contents thru the servlet output stream to the client
    InputStream in = new FileInputStream(file);
    ServletOutputStream outs = response.getOutputStream();
    int bit = 256;
    try {
         while ((bit) >= 0) {
         bit = in.read();
    outs.write(bit);
    } catch (IOException ioe) {
    ioe.printStackTrace(System.out);
    outs.flush();
    outs.close();
    in.close();     
    %>
    <!--end of download -->

    Thanks. I believe something wrong with this statement
    in my program:
    You are correct there is something wrong with this statement. Seeing how you are doing this in a jsp, not really what they're made for but thats another topic, the output stream has already been called. When a jsp gets compiled it creates a few implicit objects, one of them being the outputstream out, and it does this by calling the response.getWriter(). getWriter or getOutputStream can only be called once, other wise you will get the exception you are experiencing. This is for both methods as well, seeing how the jsp compiles and calls getWriter means that you cannot call getOutputStream. Calling one makes the other throw the exception if called as well. As far as the filename problem in the browser goes I'm guessing that it's in IE. I've had some problems before when I had to send files to the browser through a servlet and remember having to set an inline attribute of some sort in the content-dis header inorder to get IE to see the real filename. The best way to solve this is to get the orielly file package and use that. It is very easy to use and understand and does all of this for you already. Plus it's free. Cant beat that.
    ServletOutputStream outs =
    response.getOutputStream();
    because I put a lot of printout statement within my
    code, and the program stops to print out exactly
    before the above statement. And then I get the
    following message, which repeats several times:
    ServletExec: caught exception -
    javax.servlet.ServletException: getWriter() was
    already called.

  • I deleted my desktop icon - now I can't save things to the desktop!

    After a complete meltdown of my computer (and thank GOD I backed everything up!!) ... I'm transferring everything back to my iMac from an external drive ... BUT, I deleted the little "desktop" icon from my finder folder - or more like, I dragged a desktop folder from the external hard drive and "replaced" the desktop icon.
    Now I can't save anything to the desktop. When I drag something to the desktop it says "The item cannot be moved because the 'desktop' cannot be modified."
    Is there a way to get this back???

    No ...
    Under "Ownership & Permission" is says "You can - Read & Write", so that's not the issue.
    What I did was:
    When you open the finder window, there are several icons that appear in the window - usually the Desktop icon, the Home icon, the Applications icon, the Documents icon, the Movies icon, the Music icon and the Pictures icon.
    What I did was, I dragged a "Desktop FOLDER" over from an external hard drive and it asked me if I wanted to replace the Desktop. I said "Yes" and now I no longer have the DESKTOP ICON on the left side of the finder window and I can no longer drag and drop things to the desktop.
    The desktop icon no longer exists, so I can't access my desktop VIA the finder window.
    Does this make sense?

  • How can I save a Photoshop Elements 12 file as HTML?

    How can I save a Photoshop Elements 12 file as HTML?

    Sorry, not possible in PSE itself. You'd need to put your photo into the web creation software you use. If you are using an older version of PSE some versions created web albums/galleries which included an index.html page, but that's as much as PSE does. There's nothing like that in PSE 12 since Adobe wants you to use Revel for photo sharing now.

  • How can I save a Flash or .swf file in AVI format without losing quality?

    How can I save a Flash or .swf file in AVI (or another video) format without losing quality?

    As long as you don't have code in your animation then just hit File->Export->Export Movie, then configure the options.
    Here's an article on exporting sound, images and video. Just skip on down to exporting AVI and it explains the process. The codec is in the Video Compression section. When you click Settings for Video Compression, the codec is in the drop-down at the top. There's various kinds but to get lossless quality AVI you'll have to choose Uncompressed / None for full quality. Again, the file will be huge and you'll need to use another program (like Adobe Media Encoder) or Microsoft Windows Media Encoder, etc, depending on what format you intend to compress it ultimately.
    http://helpx.adobe.com/flash/using/exporting.html#exporting_video_and_sound

  • I want to save and load the swf-file to a local disk of any user. Possible?

    Hi, It's good to see you.
    I am a developer in Web Flash Game.( I use AS3.0 )
    I want to save and load the swf-file to a local disk of any user,
    Because I want to decrease the time for loading a flash movie from site.
    Is it possible?
    If it is possible, I hope the swf-file has only one loading from site and
    it will be loaded from a local disk of any user after that.
    (I know a concept of Internet temporary file.
    I want to know the other techniques of only using AS3.0.)

    Hi,
    I have similar problem. We are producing a 70 meg browser based game and would like the user to be able to cache the game to avoid reloading the game the next time. Can this be done if the user authorise the save? If, so how? We don't care where the game is cached .
    Can we prompt the user to download the file by providing a link from within the SWF application?

  • Trying to delete file from trash but get this: The operation can't be completed because the item "File name" is in use. All other files delete except this one. Please help

    Trying to delete file from trash but get this: The operation can’t be completed because the item “File name” is in use. All other files delete except this one. Please help

    Maybe some help here:
    http://osxdaily.com/2012/07/19/force-empty-trash-in-mac-os-x-when-file-is-locked -or-in-use//

  • Iomega UltraMax 4Q PLUS the following message appears: The operation can not be completed because the item "FILE NAME" is in use. "

    Help, I need to solve. No speculation please bomas or attempts to restart, confirm that the HD is formatted for MAC and etc. .....
    Whenever I try to copy my files from my HDD Western Digital 2T for my new Iomega UltraMax 4Q PLUS the following message appears: The operation can not be completed because the item "FILE NAME" is in use. "
    I can not stand it anymore ...
    I need to work and not temnho more space on my machine.
    Scenario - iMac11, 10.6.8 + WD + 2 + 2T 4T Iomega UltraMax Plus, formatted for both Mac and connected via Firewire 800
    Trying to copy the message aborts the copy - "The operation can not be completed because the item" FILE NAME "is in use."

    Hello,
    As I said earlier, properly formatted for Mac.
    Mac OS Extended (Journaled)
    This HD is formatted for MAC factory, but I even did a few times in my attempts I can say that this is entirely correct formattingwith it - Mac OS Extended (Journaled)

  • Problems copying iTunes folder to an external hard drive - "The operation can't be completed because the item FILE NAME is in use"

    Hi,
    I have been trying to back up my iTunes folder from my MacBook hard drive over to a new LaCie external hard drive.  However, whenever I try to do it at some point during the copying I keep getting the warning "The operation can’t be completed because the item FILE NAME is in use".  Each time I have tried it, it is always a different file name that comes up and at different points of the copying.  Following the warning, the copying stops and cannot be restarted.
    I tried copying the iTunes folder to another Lacie external hard drive that I have, and it worked fine so I am guessing that it maybe something wrong with the hard drive.
    I've been trying various approaches all day and can't seem to get anywhere with it - all very frustrating, so any help would be much appreciated!
    Thanks.

    If you don't have other backup data on it, reformatting external drive could solve the problem.

  • How to change the default save encoding of the dvm files when create dvm???

    When I creating a DVM(domain-value mapping) in Chinese on the ESB control and confirm it, then restarted the SOA service, the DVM that I created in Chinese disappeared from ESB control. All the maps(both English and Chinese ) are in DVM Repository.
    After I updated the encoding from ‘UTF-8’ to ‘GB2312’ in the three files below, and restarted the SOA service, the DVM in Chinese appeared on ESB control.
    But when I adding the second row in Chinese and save it, then restart the SOA service, the DVM in Chinese disappeared from ESB Control once again. Because the encoding in the three files below is updated from ‘GB2312’ to ‘UTF-8’ .
    Files:
    C:\product\10.1.3.1\OracleAS_1\integration\esb\oraesb\artifacts\store\metadata\files\dvm.def.xml
    C:\product\10.1.3.1\OracleAS_1\integration\esb\oraesb\artifacts\store\metadata\files\dvm\Chinese.xml.def.xml
    C:\product\10.1.3.1\OracleAS_1\integration\esb\oraesb\artifacts\store\content\files\dvm\Chinese.xml_1.0
    How to change the default save encoding of the dvm files when create dvm in ESB control ???

    I have the same problem.  When I updated to Mavericks now the bookmarks bar font is huge.  I liked it the way it was before.  I liked the smaller font.  Also wish I could change the color of the sidebar and font/folders too.
    I tried to see in preferences if there was anyway to change it, but I don't see anything there.

  • When Syncing, got error msg "iphone4 can not be synced as the required file can not be found", When Syncing, got error msg "iphone4 can not be synced as the required file can not be found"

    i've upgraded to IOS5 and also my iMac to latest iTunes.
    i now found Itunes frequently issued a error during syncing "iphone4 can not be synced as the required file can not be found".   i have connected the iphone4 to my iMac using USB (i.e., wired).   but without doing any thing further, i go to iTunes and just hit the button to "SYNC" the iphone4 again, it will work.
    so, why am i getting that error usually first time around when i connect the iphone?

    Hi folks. Am REALLY struggling here and hoping for some help. I too am constantly getting the 'iPhone can not be synced' message since upgrading to a new MacBook and trying to sync my iPhone 3GS. Have tried updating to latest iPhone software and hasn't helped. Have tried all the stuff mentioned above (dumping that file etc) and no luck. When I go to my sync page for photos, even if i un-tick the sync photos option altogether, this error keeps appearing. Very odd and very frustrating. Can't sync - seems to stall at last step of the process every time.
    I'm guessing it is photo related as the pics on my iPhone are now all lowres and blurry, and it is asking for sync to iTunes to get high res images onto the phone.
    Also have problem going the 'other way'! WHen I go to iPhoto on Mac and try to download new photos taken on iPhone.. I keep getting the message 'The following file could not be imported. The file is an unrecognized format."
    help please
    Nick

  • In Windows 8, how can I see an image of the psd file instead of the Photoshop icon?

    In Windows 8, how can I see an image of the psd file instead of the Photoshop icon?

    There are a number of third party solutions for this.  I just use Bridge, so can't recommend one in particular.

  • IPhoto: After I've changed the file name/format in Finder iPhoto can't load/relink to the referenced file.

    After I've changed the file name/format in Finder iPhoto can't load/relink to the referenced file anymore. For some reasons I don't like to reimport the file.

    Hmm the advice has been not to use referenced libraries - you ignored and did it anyway and you find the advise not helpful
    Furthermore the advice is that if you choose to use a referenced library that you assure that the path never changes - you also choose to ignore that advice and do it anyway - and you blame the peopson trying to help you
    once again - you have one choice - change the file names back and put the files back in the exact same place - and again you are totally ignoring the advice and instead name calling and attacking the person giving you advice
    Maybe life would be easier if you followed advice rather than ignoring it and then complaining that things no longer work
    change the name back and you will be fine until the next problem you hit that is caused by choosing a referenced library
    Have a nice day
    LN

  • No printing :I can't print anymore, printing the same file with another programs is ok, printing form LR: Preparing  and Printing indicatorbar in the left hand upper corner are running, but no output at all rom my printer. I have been printing before. I u

    No printing :I can't print anymore, printing the same file with another program is ok, printing form LR (in the same system and printer of course :-) ): Preparing  and Printing indicatorbar in the left hand upper corner are running and completing, but no output at all to my printer. I have been printing before. Next I upgraded to LR5.7.1 but the problem stays. Perhaps some adjustment is changed by me unintentionally, but I have no idea. Does anybody know what to check? Printing to file is also strange,the canvas only seems to accept A4, and crops any image relative to that size, so a 10x15 cm print on 10 x 15 cm paper is cropped to 10x15/2. Anybody any idea? (system win 8.1 64, printer HP B8550)

    I accidentally solved my mystery.  For some reason it was set to "print to file".  I changed it to "printer" and now I am able to print.

  • IPhone can not be synced. The required file can not be found

    I got the message that "iPhone can not be synced. The required file could not be found." I suspected it had to do with photos because it was always in the middle of that when the error message came up. Re started everything. Unchecked photo sync and it synced except I would like to have the photos sync. Any ideas on why it won't sync when I check the option to sync photos to phone?

    Hi folks. Am REALLY struggling here and hoping for some help. I too am constantly getting the 'iPhone can not be synced' message since upgrading to a new MacBook and trying to sync my iPhone 3GS. Have tried updating to latest iPhone software and hasn't helped. Have tried all the stuff mentioned above (dumping that file etc) and no luck. When I go to my sync page for photos, even if i un-tick the sync photos option altogether, this error keeps appearing. Very odd and very frustrating. Can't sync - seems to stall at last step of the process every time.
    I'm guessing it is photo related as the pics on my iPhone are now all lowres and blurry, and it is asking for sync to iTunes to get high res images onto the phone.
    Also have problem going the 'other way'! WHen I go to iPhoto on Mac and try to download new photos taken on iPhone.. I keep getting the message 'The following file could not be imported. The file is an unrecognized format."
    help please
    Nick

Maybe you are looking for

  • My 2011 MacBook Air suddenly takes a long time to shutdown!

    My 13-inch Mid 2011 MacBook Air running OS X 10.7.2 used to take less than 2 seconds to shut down. Recently it's been taking a lot longer time to shut down. Usually it takes 15-20 seconds, but occassionally never shuts down even after waiting for ove

  • Need a way to track the Demand/Supply in MRP

    Hi We have this scenario: Business is using a third party system to book the Orders which are practically the Forecast in Oracle. These orders are linked to a unique tracking number in the third party system (similar to Project /Task in Oracle). We a

  • Custom File Info Panel Multi select options

    Hi, I have created a custom file info panel and working on simple properties. it does not have options for provisioning a multi select list box. Say for example, I want to select multiple values from the dropdown values. How should i do it? Any help

  • How to call method in another swf file

    Hi. I am at the moment making a website in Flash 8. The website consists of a main file with the buttons and then additional files for each page. Each of the buttons uses code similar to this: content.loadMovie("home page.swf"); where content is the

  • Folio download file size in Folio Producer possible to view?

    Is there a way to see how large in MBs a folio is inside of Folio Producer without or before you actually download it to the iPad? Thanks.