Output sequence to dvcam using sony z1

hey folks~
im having problems getting a sequence to tape - i am connected via firewire to z1 camcorder
have tried both print to tape and edit to tape - i do have control of the cam when using edit to tape...
have not even seen a signal on the z1 tho
i have changed several of the in/out settings on the cam as well
anyone have any suggestions or have this prob?
thx
rm

What are the sequence settings?

Similar Messages

  • Best sequence setting for Sony HXR-NX5U (1920x1080)? Also, why use Sony Content Browser?

    Hello,
    I'm using Premiere CS 5.0 and I am hoping to find a sequence setting that doesn't require me to render footage from my new camera, a Sony HXR-NX5U. 
    Can anyone help me out?  Also, does anyone use Sony's Content Browser?  If so, why?  It seems like a wasted extra step in the workflow.

    Try this...
    See 2nd post for picture of NEW ITEM process http://forums.adobe.com/message/3776153
    -and a FAQ on sequence setting http://forums.adobe.com/message/3804341

  • Convert the output sequence of complex FFT

    I am using complex FFT to do IQ demodulation.
    the input X of complex FFT  is  cos(x)+i*sin(x). abs(FFT(X)) is the frequency response of input X. I need to convert the output sequence the format
    FROM: DC f....Nyquist Frequency...–f
    TO: -Fre_nyquist ...DC... Fre_nyquist
    Is there any function I can use to do this convertion? thanks

    Just use "rotate array" from the array palette (LabVIEW 7.1 or lower) and rotate by n/2.
    If you have LabVIEW 8.0, simply wire a TRUE to the "shift?" input for a DC centered spectrum.
    LabVIEW Champion . Do more with less code and in less time .

  • Unexpected output sequence and NPE

    Compile given code under Eclipse (tested on Eclipse 3.1.0, WebsphereStudio6) and then run on IBM JVM (tested on 1.4.1, 1.4.2)
    Under WSAD6 after few seconds I got output sequence:
    Leaving try1;0
    In finally1;0
    Leaving try1;0
    In finally1;0
    Leaving try1;0
    In finally1;0
    but it's imposiible if you look on the code... (or I'am ignorant in java)
    If program is runned under Eclipse or standalone IBM JVM (only runned, compiled under Eclipse!!!), porogram throws NPE after few seconds and JVM is terminated.
    Could anybody explain this ??
    Is this bug??
    For me, this is a problem, beacuse I'm working now under application, that is runnign on Websphere Application Server, and of course I'm using WSAD as IDE. And in this program I have found place, where my code hangs'up - it's going in infinite loop without any reason.
    import java.io.File;
    import java.io.FileOutputStream;
    import java.io.PrintStream;
    import org.apache.log4j.Logger;
    public class FinallyTest {
         private static IMyLogger log = new MyLogger(FinallyTest.class);
         public static void someMethod(String text){
                   int count = 0;
                   int code = -1;
                   while (count < 2 && (code == -1 || code == 2)) {
                        count++;
                        try {
                                  System.out.println("Entering try:"+count+";"+code);
                                  System.out.println("Do something"+count+";"+code);
                                  if (log.isDebugEnabled()) {
                                       System.out.println("Leaving try"+count+";"+code);
                             code = 0;
                        } finally {
                             if (log.isDebugEnabled()) {
                                  System.out.println("In finally"+count+";"+code);
                   if (log.isDebugEnabled()) {
                        System.out.println("Outering");
                   if (code == 0) {
                        if (log.isDebugEnabled()) {
                             System.out.println("Before return:"+count+";"+code);
                        return;
                   throw new RuntimeException(null+"a");
         public static void main(String[] args) throws Exception {
              File f = new File("out.txt");
              PrintStream ps = new PrintStream(new FileOutputStream(f));
              System.setOut(ps);
              for (;;){
                   someMethod("any text");
    interface IMyLogger {
         public boolean isDebugEnabled();
    class MyLogger  implements IMyLogger{
         private Logger logger;
         MyLogger(Class clazz) {
              this.logger = Logger.getLogger(clazz.getName());
         public boolean isDebugEnabled() {
              return logger.isDebugEnabled();
    }btw: log4j is needed, tested on 1.2.6 and 1.2.8

    for (;;){
        someMethod("any text");
    }is not source of problem!!! Infinite loops is created in method someMethod, You can change for (;;) with for (int x=1; x<10000; x++) if You wish.
    Here is another simplified version (without log4j. Run this code please:
    public class FinallyTest {
         private static IMyLogger log = new MyLogger(FinallyTest.class);
         public static void someMethod(String text){
                   int count = 0;
                   int code = -1;
                   while (count < 2 && (code == -1 || code == 2)) {
                        count++;
                        try {
                                  System.out.println("Entering try:"+count+";"+code);
                                  System.out.println("Do something"+count+";"+code);
                                  if (log.isDebugEnabled()) {
                                       System.out.println("Leaving try"+count+";"+code);
                             code = 0;
                        } finally {
                             if (log.isDebugEnabled()) {
                                  System.out.println("In finally"+count+";"+code);
                   if (log.isDebugEnabled()) {
                        System.out.println("Outering");
                   if (code == 0) {
                        if (log.isDebugEnabled()) {
                             System.out.println("Before return:"+count+";"+code);
                        return;
                   throw new RuntimeException(null+"a");
         public static void main(String[] args) throws Exception {
              for (int x=1; x<10000; x++){
                   someMethod("any text");
    interface IMyLogger {
         public boolean isDebugEnabled();
    class MyLogger  implements IMyLogger{
         MyLogger(Class clazz) {
         public boolean isDebugEnabled() {
              return Priority.DEBUG.isGreaterOrEqual(Priority.DEBUG);
    class Priority {
      int level;
      public final static int DEBUG_INT = 10000;
      final static public Priority DEBUG = new Priority(DEBUG_INT);
      protected  Priority(int level) {
        this.level = level;
      public boolean isGreaterOrEqual(Priority r) {
        return level >= r.level;
    }

  • Convert smartform output in to PDF using CONVERT_OTF function  how to do it

    Hi Anil , and  Hi All
             I am trying to display smartforms output in java webdynpro
             for that i have got the following code in sdn.
               can anybody please clarify these doubts in the  below code
               1) What are the mandatory input and output parameters
                   I have to pass here in this code to my application
               2) please check my previous post also in this regards please
       . Please reply at the very earliest. Check the below code
    Convert smartform output in to PDF using CONVERT_OTF function module and you can write pdf using parameter 'binfile' of this function in WebDynpro using the following code:
    It is copied from my prg. I hope you understand it.
    public void onActionGetQuote(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
    //@@begin onActionGetQuote(ServerEvent)
    wdThis.wdGetOppt_QwriterCustController().executeZquote_Writer_Input();
    String fileName = wdContext.currentZquote_Writer_InputElement().getOrder().toString().trim() + System.currentTimeMillis() + ".pdf";
    String pdfOutput = new String(wdContext.currentOutputElement().getBinfile());
    if (pdfOutput != null)
    try
    String pdfResoucePath = WDURLGenerator.getResourcePath(wdComponentAPI.getDeployableObjectPart(), fileName);
    FileOutputStream fileOutputStream = new FileOutputStream(new File(pdfResoucePath));
    PrintStream ps = new PrintStream(fileOutputStream);
    ps.print(pdfOutput);
    ps.close();
    //Display the PDF to the browser
    String fileURL = WDURLGenerator.getAbsoluteWebResourceURL(wdComponentAPI.getDeployableObjectPart(), fileName);
    IWDWindow window = wdComponentAPI.getWindowManager().createExternalWindow(fileURL, "Pdf Browser", false);
    window.removeWindowFeature(WDWindowFeature.ADDRESS_BAR);
    window.removeWindowFeature(WDWindowFeature.MENU_BAR);
    window.removeWindowFeature(WDWindowFeature.STATUS_BAR);
    window.removeWindowFeature(WDWindowFeature.TOOL_BAR);
    window.open();
    // To collect all the file created in the server by user
    quoteFiles.add(quoteFiles.size(), pdfResoucePath);
    } catch (Exception e)
    throw new WDRuntimeException(e);
    //@@end

    Hi
        ABAPers prepared a BAPI function module which calls Smart form , how can i execute it from java Webdynpro, so that I can display the smart form in Webdynpro. Pleas reply at the very earliest.  Every answer will be rewarded.
    regards
    jalandhar

  • How to send the ALV GRID output to spool by using the print button in std t

    How to send the ALV GRID output to spool by using the print button in standard tool bar.
    We have created a button in the va02 transaction.  If user click on the button the new screen will be display on that screen we are populating the alv grid output using the oops concept.  But i am unable to send the output to spool using the print button in the standard tool bar.
    I am able to display the Print parameter dialog box but i am not able to send it to spool.
    Kindly help.
    Thanks In Advance.
    G.V.Ramana

    Hi Shaik,
    There is not properties button in my print screen.
    MODULE user_command_0900 INPUT.
        WHEN 'EXCEL'.
          PERFORM excel_download.                              
        WHEN 'PRI'.
          PERFORM print_output.
    form Print_output.
    CALL FUNCTION 'RSPO_LIST_LAYOUT_FITS'
               EXPORTING
                    columns        = 80
                    device         = 'ANY '
                    lines          = 65
                    maxpenality    = 1999
               TABLES
                    layouts        = lt_layouts1
               EXCEPTIONS
                    unknown_device = 1
                    OTHERS         = 2.
          IF sy-subrc = 0.
            LOOP AT lt_layouts1.
              IF lt_layouts1-penality < 1000        AND
                 lt_layouts1-penality < l_min_penality.
                l_layout       = lt_layouts1-layout.
                l_min_penality = lt_layouts1-penality.
              ENDIF.
            ENDLOOP.
            IF NOT l_layout IS INITIAL.
              CALL FUNCTION 'GET_PRINT_PARAMETERS'
                   EXPORTING
                        mode                   = 'CURRENT'
                        line_size              = 80             "#EC *
                new_list_id            = l_new_list_id
                        no_dialog              = l_no_dialog
                        layout                 = l_layout
                   IMPORTING
                        out_archive_parameters = rs_arc_params
                        out_parameters         = rs_pri_params
                        valid                  = l_valid
                   EXCEPTIONS
                        archive_info_not_found = 1
                        invalid_print_params   = 2
                        invalid_archive_params = 3
                        OTHERS                 = 4.
              IF sy-subrc NE 0.                                 " INS SLIN
              ENDIF.                                            " INS SLIN
              IF rs_pri_params-linsz LT 80 OR
                 rs_pri_params-linsz LT gt_stack-s_lprint-width.
                gt_stack-print_line_break = 'X'.
              ELSE.
                CLEAR gt_stack-print_line_break.
              ENDIF.
              IF l_valid NE 'X'.
                rs_pri_params = ls_pri_params_sav.
                rs_arc_params = ls_arc_params_sav.
              ENDIF.
            ENDIF.
          ENDIF.
    endform.                    " Print_output
        CALL METHOD gv_cost_tot_alv_grand->set_table_for_first_display
                EXPORTING
                   is_layout         = gs_layout_cost_tot_grand
                CHANGING
                   it_fieldcatalog   = gt_fcat_cost_tot_grand[]
                   it_outtab         = gt_cost_tot_grand[].
    Please check my code

  • How to display the output screen when I use bdc.

    hey expert,
    I want to display the output screen when i use bdc without using mode 'A'.
    thank you.

    Hi,
    You can go for mode 'E'.. it will display the output screen directly and if there is any error in the transaction you would get that particular screen and you can correct and continue after which you will get the final screen if anything goes fine...
    check this sample code....
    I had a program if you execute below program it automatically creates a new zprogram.
    REPORT  zprogram_create_recording.
    PARAMETER:
      p_prog    TYPE sy-repid OBLIGATORY,
      p_shtxt TYPE repti OBLIGATORY,
      p_pack  TYPE devclass DEFAULT '$tmp'.
    DATA:
      t_bdcdata LIKE
       STANDARD TABLE
             OF bdcdata.
    DATA:
      wa_bdcdata LIKE LINE OF t_bdcdata.
    REFRESH t_bdcdata.
    CLEAR wa_bdcdata.
    wa_bdcdata-program    =  'SAPLWBABAP'.
    wa_bdcdata-dynpro     =  '0100'.
    wa_bdcdata-dynbegin   =  'X'.
    wa_bdcdata-fnam       =  'RS38M-PROGRAMM'.
    wa_bdcdata-fval       =  p_prog.
    APPEND wa_bdcdata TO t_bdcdata.
    CLEAR wa_bdcdata.
    wa_bdcdata-fnam       =  'BDC_OKCODE'.
    wa_bdcdata-fval       =  'NEW'.
    APPEND wa_bdcdata TO t_bdcdata.
    CLEAR wa_bdcdata.
    wa_bdcdata-program    =  'SAPLSEDTATTR'.
    wa_bdcdata-dynpro     =  '0200'.
    wa_bdcdata-dynbegin   =  'X'.
    wa_bdcdata-fnam       =  'RS38M-REPTI'.
    wa_bdcdata-fval       =  p_shtxt.
    APPEND wa_bdcdata TO t_bdcdata.
    CLEAR wa_bdcdata.
    wa_bdcdata-fnam       =  'TRDIR-SUBC'.
    wa_bdcdata-fval       =  '1'.
    APPEND wa_bdcdata TO t_bdcdata.
    CLEAR wa_bdcdata.
    wa_bdcdata-fnam       =  'BDC_OKCODE'.
    wa_bdcdata-fval       =  'CONT'.
    APPEND wa_bdcdata TO t_bdcdata.
    IF p_pack EQ '$TMP'.
    *local object
      CLEAR wa_bdcdata.
      wa_bdcdata-program    =  'SAPLSTRD'.
      wa_bdcdata-dynpro     =  '0100'.
      wa_bdcdata-dynbegin   =  'X'.
      wa_bdcdata-fnam       =  'KO007-L_DEVCLASS'.
      wa_bdcdata-fval       =  ' '.
      APPEND wa_bdcdata TO t_bdcdata.
      CLEAR wa_bdcdata.
      wa_bdcdata-fnam       =  'BDC_OKCODE'.
      wa_bdcdata-fval       =  'TEMP'.
      APPEND wa_bdcdata TO t_bdcdata.
    ELSE.
    *package assignment with request
      CLEAR wa_bdcdata.
      wa_bdcdata-program    =  'SAPLSTRD'.
      wa_bdcdata-dynpro     =  '0100'.
      wa_bdcdata-dynbegin   =  'X'.
      wa_bdcdata-fnam       =  'KO007-L_DEVCLASS'.
      wa_bdcdata-fval       =  p_pack.
      APPEND wa_bdcdata TO t_bdcdata.
      CLEAR wa_bdcdata.
      wa_bdcdata-fnam       =  'BDC_OKCODE'.
      wa_bdcdata-fval       =  'ADD'.
      APPEND wa_bdcdata TO t_bdcdata.
      CLEAR wa_bdcdata.
      wa_bdcdata-program    =  'SAPLSTRD'.
      wa_bdcdata-dynpro     =  '0300'.
      wa_bdcdata-dynbegin   =  'X'.
      wa_bdcdata-fnam       =  'KO008-TRKORR'.
      wa_bdcdata-fval       =  ' '.
      APPEND wa_bdcdata TO t_bdcdata.
      CLEAR wa_bdcdata.
      wa_bdcdata-fnam       =  'KO008-AS4TEXT'.
      wa_bdcdata-fval       =  ' '.
      APPEND wa_bdcdata TO t_bdcdata.
      CLEAR wa_bdcdata.
      wa_bdcdata-fnam       =  'BDC_OKCODE'.
      wa_bdcdata-fval       =  'LOCK'.
      APPEND wa_bdcdata TO t_bdcdata.
    ENDIF.                                 " IF P_PACK EQ '$TMP'
    CALL TRANSACTION 'SE38' USING t_bdcdata MODE 'E'.
    Hope this would help you..
    Regards
    Narin Nandivada

  • How to capture output of java files using Runtime.exec

    Hi guys,
    I'm trying to capture output of java files using Runtime.exec but I don't know how. I keep receiving error message "java.lang.NoClassDefFoundError:" but I don't know how to :(
    import java.io.*;
    public class CmdExec {
      public CmdExec() {
      public static void main(String argv[]){
         try {
         String line;
         Runtime rt = Runtime.getRuntime();
         String[] cmd = new String[2];
         cmd[0] = "javac";
         cmd[1] = "I:\\My Documents\\My file\\CSM\\CSM00\\SmartQ\\src\\E.java";
         Process proc = rt.exec(cmd);
         cmd = new String[2];
         cmd[0] = "javac";
         cmd[1] = "I:\\My Documents\\My file\\CSM\\CSM00\\SmartQ\\src\\E";
         proc = rt.exec(cmd);
         //BufferedReader input = new BufferedReader(new InputStreamReader(p.getInputStream()));
         BufferedReader input = new BufferedReader(new InputStreamReader(proc.getErrorStream()));
         while ((line = input.readLine()) != null) {
            System.out.println(line);
         input.close();
        catch (Exception err) {
         err.printStackTrace();
    public class E {
        public static void main(String[] args) {
            System.out.println("hello world!!!!");
    }Please help :)

    Javapedia: Classpath
    How Classes are Found
    Setting the class path (Windows)
    Setting the class path (Solaris/Linux)
    Understanding the Java ClassLoader
    java -cp .;<any other directories or jars> YourClassNameYou get a NoClassDefFoundError message because the JVM (Java Virtual Machine) can't find your class. The way to remedy this is to ensure that your class is included in the classpath. The example assumes that you are in the same directory as the class you're trying to run.
    javac -classpath .;<any additional jar files or directories> YourClassName.javaYou get a "cannot resolve symbol" message because the compiler can't find your class. The way to remedy this is to ensure that your class is included in the classpath. The example assumes that you are in the same directory as the class you're trying to run.

  • On my pc I used Sony Vegas to edit video, what's a similar program I could use on a Mac??

    I used Sony Vegas on my desktop PC, and I got it free when I was in college from our online downloads website...but now that I graduated last year, And just now got a Mac, I was wondering what the cheapest alternative would be for Sony Vegas.  I don't really like the imovie so far compared to it just because Sony did a ton of stuff and I miss it.  Can anyone help me out?
    Thank you.

    Heh, heh, welcome to the Real World, where Adobe practically rapes you for everything but the free Reader plugin. Yes, you'l remember fondly the fun and carefree days when good stuff was on the campus server...
    If you've still got the Vegas installer at hand, could try and set up a virtual PC running an appropriate flavor of Windoze and run it there. Oracle VirtualBox is free, you'll just have to supply your Windows activation and install media.

  • Using Sony's IDC in combination with Lightroom

    I would like to use Sony's IDC Raw converter that comes with the Sony A700 camera, to be able to process through Sony IDC the RAWs with DRO's (Dynamic Range Optimalization) applied (as shot with the A700).
    However I would like to keep LightRoom as my archiving base.
    Question:
    Can I bring RAWs after importing in LightRoom, to IDC?
    Can I after converting the RAWs in IDC, bring the resulting PSDs (or JPEGs) from IDC back to Lightroom (for archiving)?
    I appreciate your help!

    Yes, and No!
    Lightroom won't allow you to use IDC on the Raw file, Lightroom only allows ACRaw to be used to "develop" a raw file. However, you can use Lightroom's ranking and review functions to help you decide which files you want to work with. Then right click and select show in explorer. Then select the file you want to develop, and tell Explorer to open in IDC. You then can develop, save as a Tiff and import.
    Pain in the Arse isn't it?
    Frankly if you have access to Bridge then this is faster and more convenient. Import the ARW and use IDC to make Tiffs.
    But why do you want to do this?
    Frankly DRO only becomes special when you use DRO Advanced. Anything else can be easily duplicated in Lightroom. DRO Advanced can not be done by IDC,(it's like Lightzone on Steroids) it's done by the camera, the processor looks at each pixel and compares it with adjacent pixels and makes adjustments in the jpg. So the only way to utilise DRO Advanced (and it's astonishing what is achieved) is to shoot in Jpg (and probably in cRaw + Jpeg) I shoot everything in cRaw only but have a MR setting to utilise DRO Advanced - cRaw + Jpeg, ISO 200 (remember that DRO advanced effectively locally amplifies the pixels, so if you start at say ISO 800 certain pixels could be amplified to ISO 6400!
    I can then import both the cRaw and the Jpeg.
    Hope this makes sense.
    Peter

  • Does apple have update to idvd so I can use Sony dcr-sx44 camcorder

    Does apple have an update to idvd so I can use sony dcr-sx44 camcorder?

    If you already have iDVD then run Software Update, if there are any updates available for iDVD they will be posted. While that doesn't answer your question directly it is your best option. Looking at the software specifications for the camera it doesn't look like it was ever intended to work with OS X. This is what I found on Sony's website:
    Software
    Supplied Software : PMB Ver.5.0 Supports Windows XP Service Pack3 (SP3)(32bit), Windows Vista Service Pack2 (SP2) (32bit), Windows 7, 64-bit editions and Starter (Edition) are not supported. Not supported by Mac OS.
    Operating System Compatibility : "Windows XP SP3 * /Windows Vista SP2 ** /Windows7 * 64-bit editions and Starter (Edition) are not supported.The Windows Image Mastering API(IMAPI)Ver.2.0 or later is required to use the function for creating discs. ** Starter (Edition) are not supported. Standard installation is required. Operation is not assured if the above OS has been upgraded or in a multi-boot environment. "
    I suspect a camera upgrade may be what you need to do.

  • Can you use Sony NS400 speakers with Apple Tv

    Can you use Sony NS400 wifi speakers with Apple TV
    Thanks
    Hugh

    The iPad/iPhone need to be on the same section of the network as the Apple TV. connect the Apple TV to the wireless router instead of the AT&amp;T router. If you can, connect the other devices as well...

  • Can anyone tell me where i can get a new or used sony super drive dwu10 678-0429b in the UK, for my flat panel i mac g4  model no m9168lla , or  is there  any other compatable drives i could fit

    can anyone tell me where i can get a new or used sony super drive dwu10 678-0429b in the UK, for my flat panel i mac g4  model no m9168lla , or  is there  any other compatable drives i could fit

    Try eBay. You do occasionally see that old model advertised there.

  • How to pass value for value field of return parameters for an action step in teststand sequence file programatically using c#

    I used a method LoadPrototypeFromMetaDataToken(token,options) to load the return type parameters. I am unable to set the value field in the return parameters for an action step in teststand sequence file programatically using C#.How can I do that.

    Continue here

  • 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

Maybe you are looking for

  • Problem with Latches and Parallelising PL/SQL Cursors

    In 9i i have process that do the following: PROCEDURE LoadClients IS   CURSOR cChanges IS     SELECT ...     WHERE MOD(PK,pnTotalJobs>) = pnThisJob To call this I do the following   nTOTALJOBS CONSTANT := 2; BEGIN   FOR i IN 1..nTOTALJOBS LOOP     DB

  • Opening camera raw file in elements

    I am using photoshop elements 5.0 on windows vista. My problem is I am not able to transfer my raw files to the editor. The message I get is 'cannot open raw files/08...NEF because it is the wrong type of file' I am very much a newbie at this so any

  • Too much email!!

    Help  How do I shut off all the discussion that is coming to my email>

  • IB API Question (CSI)

    I am using the API csi_item_instance_pub.update_item_instance to update an IB instance. If I want to put a value in ATTRIBUTE4, how do I do that? csi_item_instance_pub.update_item_instance(p_api_version =>l_api_version ,p_commit => 'F' ,p_init_msg_li

  • Create Basic Timeline with Numbers

    I haven't found any timeline software that I'm impressed with so far, so I've made it my goal to create a basic timeline with Numbers. My dates are years, not specific days. (It's for an Old Testament class so some examples of my dates are the Edict