How to capture Sony Hvr Z7 m2t Files FCPX 10.1.1

Can any one help me there.
I have a Sony Hvr Z7 - I can capture it with log and transfer with FCP7 or convert it with many programs out there. But
I wanto to know how to capture straight from the Memory Recording Unit  connected by fire wire.
Any Help there would much preciated
Thanks

First of all thanks for your answering. I know that.  But somewhere I came acros a way to do it
but I have lost the link of it. I know, or think I know, there is a way. Kind a of archive or something like that.
What I remember is that I had to import all the cf at once - and not been able to import file by file.
I'll keep looking for it. If I find I'll post it here.
Thanks any way!

Similar Messages

  • Can anyone explain how I go from a Sony HD camcorder .m2ts file to viewing the video in HD on either DVD or Blu-Ray?

    I have recently started to edit footage taken on a Sony HD Camcorder using iMove 11.
    Uploading the .m2ts file was no problem straight from the camera to iMovie, but I (stupidly) assumed that I could burn an HD DVD from iMovie/iDVD to view on a DVD player. I've done a bit of internet research to find out why the quality of the DVD is so bad i.e. SD rather than HD and I think I understand it. Just.
    Further searching to find out our to convert AVCHD/.m2ts to either HD DVD or Blu-ray has boiled my brain. So much stuff I read was a couple of years old so I wasn't sure what is possible.
    Can anyone tell me how I get to the point where I can upload the .m2ts to the iMac, edit the footage and burn a Blu-Ray or HD DVD?
    Cheers!

    Booted the Mac this morning and it now works. I tried Alchroma's solution but whether the stereo is Plain or Matrix, it works both ways. I don't think that this was the solution as a result, but thanks for the suggestion. To confirm, my Easy set up is HD / AVCHD Apple 1920 x1080i60, the only thing I can think I did differently compared to yesterday is that I shut my Mac down having changed the Easy setup. Previously, I only changed the easy setup then closed FCE4 down.

  • PP CS4 won't capture HDV or import m2t files

    MacbookPro, OSX 10.6.4
    I haven't done a video project for a couple of months, and everything was working then.
    But now, I can't import HDV footage captured by OnLocation (.m2t) ("format not supported"), or capture it directly from my video camera (Sony HVR-A1U). There are also no sequence presets for HDV video.
    When I try capturing from the camera, my MacbookPro's webcam shows in the previewer, although the controls in the capture window do control the camera (play, stop, rewind etc.). If I go into the capture Settings, no firewire sources are shown.
    I can capture HDV from the camera using iMovie (to Quicktime format). In some respects, that is better, since it does HDV scene detection (unlike PP CS4), saving me a little work. But iMovie won't import m2t either so I'll have to find some other way to convert if for use by PP.
    I tried reinstalling PP from disks but to no effect. Before I try full unininstall and reinstall , I thought I'd check here to see if anyone has ideas about what is going on with PP.

    >no sequence presets for HDV
    I don't know if this applys to Mac or not, but I have seen messages saying that PPro will, for some unknown reason, sometimes revert to demo status... which only supports SD video, and nothing that requires any flavor of MPEG

  • How to capture errors records in flat file in BDC

    hi ,
        i would like to know how to capture error records while  uploading a flat file to screen through BDC .
    appreciatable solutions are rewarded.
    thanks,
    shan

    Hi shan,
    write this code, it will solve your problem.
    DATA : BDCTAB LIKE BDCDATA OCCURS 0 WITH HEADER LINE.
    DATA : I_MSG LIKE BDCMSGCOLL OCCURS 0 WITH HEADER LINE.
    DATA : BEGIN OF I_ERR OCCURS 0,
              MATNR(18),
              FLAG(1),
              MSG(100),
           END OF I_ERR.
    DATA :V_LINES TYPE I.
    LOOP AT ITAB.
    REFRESH BDCTAB.
    PERFORM SCREEN USING: 'SAPLMGMM' '0060'.
    PERFORM FIELD USING: 'RMMG1-MATNR'  ITAB-MATNR,
                          'RMMG1-MBRSH' ITAB-MBRSH ,
                          'RMMG1-MTART' ITAB-MTART,
                          'BDC_OKCODE' '/00'.
    PERFORM SCREEN USING: 'SAPLMGMM' '0070'.
    PERFORM FIELD USING: 'MSICHTAUSW-KZSEL(01)' 'X' ,
                         'MSICHTAUSW-KZSEL(02)' 'X' ,
                         'MSICHTAUSW-KZSEL(09)' 'X' ,
                         'BDC_OKCODE' '=ENTR'.
    PERFORM SCREEN USING: 'SAPLMGMM' '0080'.
    PERFORM FIELD USING: 'RMMG1-WERKS' ITAB-WERKS,
                         'BDC_OKCODE' '=ENTR'.
    PERFORM SCREEN USING: 'SAPLMGMM' '4004'.
    PERFORM FIELD USING:  'MAKT-MAKTX' ITAB-MAKTX,
                          'MARA-MEINS' 'EA' ,
                          'MARA-MATKL' '001',
                          'BDC_OKCODE' '/00'.
    PERFORM SCREEN USING: 'SAPLMGMM' '4004'.
    PERFORM FIELD USING:  'BDC_OKCODE' '/00'.
    PERFORM SCREEN USING: 'SAPLMGMM' '4000'.
    PERFORM FIELD USING:  'MAKT-MAKTX' ITAB-MAKTX,
                          'MARA-MEINS' 'EA',
                          'MARC-EKGRP' '001',
                          'MARA-MATKL' '001',
                          'BDC_OKCODE' '=BU'.
    CALL TRANSACTION 'MM01' USING BDCTAB
                            MODE 'A'
                            MESSAGES INTO I_MSG.
    FINDING LAST MESSAGE IN THE I_MSG TABLE*****
    DESCRIBE TABLE I_MSG LINES V_LINES.
    ACCORDING TO THE V_LINES NUMBER TABLE WILL BE READ****
    READ TABLE I_MSG INDEX V_LINES.
    CALL FUNCTION 'FORMAT_MESSAGE'
    EXPORTING
       ID              = I_MSG-MSGID
       LANG            = '-D'
       NO              = I_MSG-MSGNR
       V1              = I_MSG-MSGV1
       V2              = I_MSG-MSGV2
       V3              = I_MSG-MSGV3
       V4              = I_MSG-MSGV4
    IMPORTING
       MSG             = I_ERR-MSG
    EXCEPTIONS
       NOT_FOUND       = 1
       OTHERS          = 2
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    IF I_MSG-MSGID EQ 'M3' AND I_MSG-MSGNR EQ '800'.
    I_ERR-FLAG = 'S'.
    ELSE.
    I_ERR-FLAG = 'E'.
    ENDIF.
    I_ERR-MATNR = ITAB-MATNR.
    APPEND I_ERR.
    CLEAR I_ERR.
    ENDLOOP.
    WRITE:/ 'SUCCESS RECORDS' COLOR COL_POSITIVE.
    SKIP.
    WRITE:/ 'MATERIAL' COLOR COL_HEADING, 20 'MESSAGE' COLOR COL_HEADING.
    LOOP AT I_ERR WHERE FLAG EQ 'S'.
    WRITE:/ I_ERR-MATNR, 20 I_ERR-MSG.
    ENDLOOP.
    SKIP 2.
    WRITE:/ 'ERROR RECORDS' COLOR COL_NEGATIVE.
    SKIP.
    WRITE:/ 'MATERIAL' COLOR COL_HEADING, 20 'MESSAGE' COLOR COL_HEADING.
    LOOP AT I_ERR WHERE FLAG EQ 'E'.
    WRITE:/ I_ERR-MATNR, 20 I_ERR-MSG.
    ENDLOOP.
    *&      Form  SCREEN
         SCREEN
    form SCREEN  using P_PROG P_SCREEN.
    BDCTAB-PROGRAM = P_PROG.
    BDCTAB-DYNPRO = P_SCREEN.
    BDCTAB-DYNBEGIN = 'X'.
    APPEND BDCTAB.
    CLEAR  BDCTAB.
    endform.                    " SCREEN
    *&      Form  FIELD
       FIELD
    form FIELD  using  FNAME FVAL .
    BDCTAB-FNAM = FNAME.
    BDCTAB-FVAL = FVAL.
    APPEND BDCTAB.
    CLEAR BDCTAB.
    endform.                    " FIELD
    Thanks,
    Murali

  • How to import the subtitles from m2ts file ?

    Hello !!
    I have a problem with subtitles. Some time ago I did Blue Ray, including subs (using import from txt file). Unfortunatelly after I deleted all project I recognized that my BD DL disc is not working, only part written on first layer can be play .
    Now, I copied m2ts files directly from BD and wanted to make BD again (maybe 2 x discs). Those m2ts files has embedded subtitles -some players show it in the file properities and they can display it.
    Question is:
    How to import them to Adobe Encore CS5 ? Why AE are not recognize them ?
    BR
    Marcin

    It's a multiplexed transport stream, not something editable.
    To get the subtitles out, you need an (illegal) ripper that will demux the transport streams.

  • How to capture sound into an mp3 file

    Hi all,
    I have a program to capture sound into a wav file . and it's wrkng.
    but in my site i have an mp3 player. can i capture the sound directly to an mp3 file?
    I use classes like AudioSystem, TargetDataLine, AudioFormat etc.
    For the file format i specify like
    AudioFileFormat.Type.WAVE
    like this can i do for mp3??
    Please help me...
    Thanx and Regards,
    sand...

    try with spool or UTL_FILE...
    Re: CSV into Oracle and Oracle into CSV
    SQL> spool c:\test1.csv
    SQL> select substr(str,2,length(str)-3) from (select regexp_replace(column_value,'\s*<[^>]*>[^>]*>',',') str from table(xmlsequence(cursor(select * from test_emp))));
    SUBSTR(STR,2,LENGTH(STR)-3)
    9999,fredi&apos;s,CLERK,2345,10-OCT-06,1250,123,20
    4567,STEWART,ANALYST,3456,02-APR-07,3200,215,30
    2345,Cockrel,CLERK,7566,23-JAN-82,800,30
    3 rows selected.
    SQL> spool off;

  • How to capture the video in a file using JMF-RTP?

    Please someone help in capturing the live streaming in a file using JMF......
    Thanks..

    Hi, I have a problem with RTPExport output video files. One side streams H263/RTP(AVTransmit2.java) and other write this steam to a file by RTPExport.java. When network conditions are ideal, output video file has same fps and same number of frames like original file. Problem occures, when theres packet lost in network, then output file has different fps,and also has less frames like original video(because it didnt write missing frames to file, and thats why it get shorter). Pls how can I achieve output file that will have the same fps like original one? How to write to file an identical copy of what I can see while receiveing video with AVReceive2.java? Its there a way to modifi rtpexport or avreceiver to do this? Thanks!

  • How to capture Java Exceptions in batch file

    I have a batch file that calls java class. When the java class throws exception, how do I capture the exception as an error message in batch file.
    This is the java program
    import java.io.*;
    public class Test{
           public static void main(String []args) {
         String wantThisToFail=null;
              try {
                   if (wantThisToFail.equals("SomeString") ) {
                        System.out.println("Testing");     
              }catch (Exception e){
                   System.out.println("Exception " + e);
    This is the batch file
    @echo off
    echo Testing
    REM execute the java class
    java Test
    set deployError=%ERRORLEVEL%
    echo %deployError%
    IF NOT %deployError% == 0 (
    echo failed
    )else (
    echo succeeded
    )Since the java class throws NullPointerException, i want the batch file to show "Failed" Message.
    Please Help!!

    Try capturing the return value of the command "java Test". If it succeeds, you should get a '0', otherwise you'll get something else. I admit it's been years since I had to do that, but it rings a bell. If it works, and you're on Java 5 or later, you can use the method Thread.setDefaultUncaughtExeptionHandler ( look at the docs ) and from there use System.exit(<your integer value return code here>) for more control over the return value

  • How do I import .mts or .m2ts files?

    imovie sees them cut I can't select them! They are AVCHD files!

    iMovie ’08 and Sony HDR-SR1 and HDR-SR7 compatibility
    iMovie ’08 and the Sony HDR-SR1 and HDR-SR7 camera support AVCHD (high-definition) and MPEG-2 (standard definition) content when the following guidelines are followed:
    Sony HDR-SR1 & HDR-SR7 Content Power Mac G51 Intel-based Mac
    AVCHD Only No Yes
    MPEG-2 Only Yes Yes
    When the Sony HDR-SR1 and HDR-SR7 cameras contain both AVCHD and MPEG-2 content, iMovie ’08 will be able to import the MPEG-2 content. However, to import the AVCHD content to an Intel Mac, you must first erase the MPEG-2 content on the camera

  • SONY m2ts file format

    Enyone know how convert from SONY HD camera
    m2ts files for Premiere Pro CS3 HD editing?
    Thanks!

    >output as AVCHD H264! if it will not import same
    From everything I have read about Premiere, starting with version 6, it preferes non-compressed files for editing... but then does create compressed files for delivery
    Note that a DV AVI file is "somewhat" compressed (I think this is the DV25 specification) but that compression (when the file is created in the camera) results in individual frames that are complete in and of themselves... not the type of compressed file with a complete frame every so many frames, and partial frames of change information between those full frames
    I am still reading on HiDef files and codecs, but my general impression is there are MAJOR differences in the files created by the various HD codecs and cameras... with some being suitable for Premiere editing, and other still only being suitable for output

  • Import .m2ts files to imovie11

    I have a sony HDR-SR1. I used PC and sony picture utility to save the .m2ts file in the external hard disk. Now I have a new macbook air and imovie11. How can I directly import the .m2ts files into imovie11?? I don't want to convert the .m2ts files to other format for importing. Thank you.

    Why are AVCHD files copied and re-wrapped?
    Because they're .mts files and are complete crap for editing. Try to edit them in Premiere. It is truly awful. It's a camera manufacturer's solution with total disregard for the production process. What's so bad about rewrapping?
    To where?
    To your Final Cut Events folder.
    If I already have a external drive with those files on it why would I make yet another copy of those files?
    See 1.
    Still calling it "Optinize" really isn't what's happening is it?
    Seems like it to me. It's taking a truly horrible video format and making it into something useable for production in very high quality. What's not optimization about that?
    I guess the users should read the manual or get a good book or training DVD.

  • How to import Sony XDCam material to FCPX in Yosemite?

    HI!
    I know there is already this link : http://www.fcp.co/final-cut-pro/news/454-apple-post-how-to-import-sony-xdcam-med ia-into-fcpx
    Having tried it, it doesn't seem to be up to date with Yosemite. Any suggestions?

    Did you download version 1.2?
    Russ

  • How to capture HD/SD in Premiere Pro 2.0 using Sony HVR-M15U?

    I have mini dv tapes.Some are HDs and SDs. How to capture these tapes in Premiere Pro 2.0 using Sony HVR-M15U deck?
    Please help
    Mark

    Hi Jim,
    Thank you for the respond.
    Yes, I tried already that way but it didn't work. The deck plays. I saw also in the monitor I connected to the deck has display. But it's not in Premiere Pro 2.0. I only saw the timecode running but it has no display. And I tried to save what I'm capturing but it says no frame captured if I not mistaken.
    Fortunately, I did captured the video by "passthrough" - I mean by using the videocamera. I connected the videocamera to INPUT ports of the deck. And the firewire connected to my PC and the deck. I played the tape of course in the videocamera and begun capturing with no problem. But I think I lost the quality of the video, did I?
    Jim, if you have some tips can you share it to me. I will appreciate it so much.
    Thanks again.
    Mark

  • Capture from Sony HVR-A1E

    Hi
    I have Final Cut Pro 5.1.4. I recently acquired a Sony HVR-A1E. It shoots in HDV 1080i.
    I'm trying to work out how I can capture the video using FCP?
    Is there an appropriate capture preset and device control preset?
    For capture preset various things are listed such as HDV, DVCPRO HD 1080i50 48KHz, DVCPRO HD 1080i60 48KHz and others.
    The camera connects to my Intel iMac by USB. I notice that FCP seems to list Firewire throughout its device control preset menu. Is it possible to have device control for USB?
    Thank you for any assistance you can give

    Hi
    I've found the FireWire port
    They've called it "iLink".
    A bit of "googling" with "iLink" has shown me that this is commonly used on Sony Camcorders.
    I have used Sony Camcorders before and but they've been hired ones and I think it has always been that the person hiring it out has pointed at the "iLink" port and called it the "FireWire" port, so I've never caught on that this different name exists.
    I'm buying the right cable next...
    When it is plugged in and working (touch wood) I will come back and do this "helpful" and "solved" thing.

  • Sony HVR-HD1000E capture setting in FCP 6.0.6

    One of my clients has a Sony HVR-HD1000E mini-dv camera & contacted me when they were having trouble capturing video.
    The camera captures at HDV 1080i50, so set FCP to this but says it cannot communicate with the camera. If I set FCP to DVCPRO HD-1080i50 then it communicates with the camera but when I try to capture, Preview is disabled. With the capture window open I then change the setting to DV PAL Anamorphic & apply the setting the preview window becomes active. I then change it back to DVCPRO HD-1080i50 & apply, the preview window is active & I can capture without any problems.
    I spoke to Sony & they agree with me that FCP should be set to HDV 1080i50 & cannot explain why there is a problem other than FCP is having a bit of a wobble & needs reloading/updating etc.
    I have connected the camera to three different machines with FCP 6 & all do the same, also tried different firewire cables but no difference.
    I can tell you that it worked fine for about 6 months but no one knows on what settings so I'm hoping that someone with the same camera reads this & can tell me what settings they use.
    Thanks in advance for any help.
    Bob

    Hello there,
    I am owner of HVR HD1000E and I am working with FCP 6.05. Here is the setup you should have in FCP and everything will work just perfect:
    OPEN - File - Audio/video settings:
    Summary: Seq.present - HDV 1080i50
                    Capture preset - HDV
                    Device control preset  - Sony HDV 1080i50 Firewire
                    Video Playback (if use) - Digital cinema desktop Prewiew
                    Audio Playback - Default  
    Sequence preset: HDV 1080i50
    Capture preset: HDV
    Device control preset: Sony HDV 1080i50 Firewire
    Thats it!
    Open Sequence in FCP and check Settings:
    General: Frame size: 1440x1080 (16:9)
                 Pixel aspect ratio: HD 1440x1080
                 Field dominance: None
                 Compressor: HDV 1080i50
                 Audio: 48kHz, 16bit, stereo
    For export use: Quicktime movie, CURRENT Settings! If you want small file size and very quick export, than unchecked "make movie self contained". But if you wish your mov file transport to other computer..., than you must check "make movie self contained". In booth cases you're movie will be 1920x1080 HD crystal picture!
    I hope my help isn't too late!
    Best regards from Slovenia

Maybe you are looking for

  • Dashboard is not working, HELP ME!

    Hi, I am running OS X 10.5.2 and dashboard isn't working, It opens and the X appears, I can click on the X and the widget dock pops up but when a click on one dashboard closes. The only widget that opens is the one called "Widgets". Can anyone help m

  • Two icons in taskbar?

    This problem just started today, I don't know if Skype updated and caused this but anyway: Skype is creating a second icon in the taskbar (Windows . If I'm logged out, the original icon is there, so I click on it to log in, and a "signing in" window

  • HTTP 401 error while connecting SAP PI 7.1 with SOAPAdapter

    Hello, I am trying to call webservice on R/3 system using SAP PI 7.1 but I am getting HTTP 401 error. Following is the error for more detail: Message: Server returned error code = 401 for URI : http://sapxx03x:50000/XISOAPAdapter/MessageServlet?chann

  • IDVD burning

    I have a Keynote presentation with 50 slides and music that was exported to iDVD. The problem is that when I go to burn a dvd, i get the following error, "Error During Track Initialization" I am new to mac's love all the software but not if it isn't

  • How well does final cut pro 7 run on the new iMac i7?

    I have the Mac Pro 1,1 - 2x3 GHz Dual-Core Xeon and I'm wondering if I would notice a better performance upgrading the computer. I do have the AJA Kona 2 for video output to HD screen but am willing to lose it for the nice 27" screen and a faster sys