Designer 9.0.2.7 - problems with capturing PL/SQL packages

Hello,
I would appreciate any help regarding the following issue:
We tried to capture in Designer 9.0.2.7 the existing PL/SQL packages from an Oracle 9i database and we have met some problems.
Even the package has a body containing two public procedures, when capturing, the Designer generates warnings that say the PL/SQL package body is empty. Therefore, the Designer capture the body content and write it in the PL/SQL Block of the PL/SQL Definition property, but the content of the body is preceded with the " character.
This makes problem when generating the "ddl" for the package (the package is not created correctly in the DB).
In addition, when generating the "ddl", the "END package_name" is added twice.
Other problem is that the package specification information from Designer is just "END package_name;"
For some of the packages containing only a list of public procedures, without any other variables declarations, the Designer does not capture these procedures as separate subprograms in the package definition, as it does other times. In this case, the package body is entirely captured in the PL/SQL Block and with the " character before content.
Is it some settings that can be done or some rules about the format of the PL/SQL procedures in order for Designer to capture all packages in same manner and correctly?
Thank you,
Claudia

Hi Keith,
I am connecting to the database as the package owner..
I have noticed earlier that I have problems when capturing triggers also.. The content of one large trigger contains 36371 characters and when capturing it from DB, the content was truncated to 28020 characters in Designer.
Our ideas with capturing the DB packages/procedures were to use the Designer as version control system.
We wanted to have all objects used in a project in Designer.. entities, tables, triggers, packages, procedures, Forms files, etc. in order to make a configuration for a project release.
Thank you,
Claudia

Similar Messages

  • Problem with capturing of baselines

    Hi !
    I have a problem with capturing of baselines- when the SQL is called from PL/SQL code...
    For example if I execute in SQL* Plus session
    alter session set optimizer_capture_sql_plan_baselines = true;
    exec dbms_mview.refresh('VIEW_CLIENT_KONTO', 'C');
    exec dbms_mview.refresh('VIEW_CLIENT_KONTO', 'C');
    nothing happens ..I do not find the baseline in dba_sql_plan_baselines...
    ========================================================
    optimizer_use_sql_plan_baselines = TRUE..of course and I can capture baselines for plain SQL -only not if SQL ist invoked from PL/SQL..
    Now, nowere in documentation could I find that capturing does not work from PL/SQL ..that would, in my opinion, be sderious disadvantage- so much code in the database runs as PL/SQL..
    We habe Oracle 11.2.0.3 Enterprise Edition
    optimizer_features_enable = 11.2.0.3
    What could be worng here..did I forget certain parameter or setting. Thanks for your help in advance.

    Now, nowere in documentation could I find that capturing does not work from PL/SQL ..that would, in my opinion,
    be sderious disadvantage- so much code in the database runs as PL/SQL..You're quite right. It would be serious disadvantage.
    But it's not true that they are not captured from PLSQL.
    Setup:
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE    11.2.0.3.0      Production
    TNS for Linux: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    SQL> select name, value from v$parameter where name like '%baseline%';
    NAME                                               VALUE
    optimizer_capture_sql_plan_baselines               FALSE
    optimizer_use_sql_plan_baselines                   TRUE
    SQL> create table t1
      2  (col1 number);
    Table created.
    SQL> INSERT /*+ domtest sql */ INTO t1 select 1 from dual;
    1 row created.
    SQL> begin
      2  INSERT /*+ domtest plsql */ INTO t1 select 1 from dual;
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL> select sql_id, substr(sql_text,1,30) sql_text, child_number c, to_char(force_matching_signature
    ) sig, sql_plan_baseline
      2  from   v$sql
      3  where  sql_text like 'INSERT /*+ domtest%';
    SQL_ID        SQL_TEXT                                C SIG                            SQL_PLAN_BASELINE
    gmskus7sbgt5d INSERT /*+ domtest plsql */ IN          0 7407988653257810022
    64rzqgrt63wzu INSERT /*+ domtest sql */ INTO          0 17374141102446297863
    SQL> select to_char(b.signature) sig, b.created
      2  from   v$sql s
      3  ,      dba_sql_plan_baselines b
      4  where  s.sql_text like 'INSERT /*+ domtest%'
      5  and    b.signature = s.force_matching_signature;
    no rows selected
    SQL> alter session set optimizer_capture_sql_plan_baselines = true;
    Session altered.
    SQL> Baseline created for SQL statement:
    SQL> INSERT /*+ domtest sql */ INTO t1 select 1 from dual;
    1 row created.
    SQL> select sql_id
      2  ,      substr(sql_text,1,30) sql_text
      3  ,      child_number c
      4  ,      to_char(force_matching_signature) sig
      5  ,      sql_plan_baseline
      6  from   v$sql
      7  where  sql_text like 'INSERT /*+ domtest%';
    SQL_ID        SQL_TEXT                                C SIG                            SQL_PLAN_BASELINE
    gmskus7sbgt5d INSERT /*+ domtest plsql */ IN          0 7407988653257810022
    64rzqgrt63wzu INSERT /*+ domtest sql */ INTO          0 17374141102446297863
    64rzqgrt63wzu INSERT /*+ domtest sql */ INTO          1 17374141102446297863           SQL_PLAN_1ayk9a0wnr
    SQL> Baseline created for PLSQL statement:
    SQL> begin
      2  INSERT /*+ domtest plsql */ INTO t1 select 1 from dual;
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL> select sql_id
      2  ,      substr(sql_text,1,30) sql_text
      3  ,      child_number c
      4  ,      to_char(force_matching_signature) sig
      5  ,      sql_plan_baseline
      6  from   v$sql
      7  where  sql_text like 'INSERT /*+ domtest%';
    SQL_ID        SQL_TEXT                                C SIG                            SQL_PLAN_BASELINE
    gmskus7sbgt5d INSERT /*+ domtest plsql */ IN          0 7407988653257810022
    gmskus7sbgt5d INSERT /*+ domtest plsql */ IN          1 7407988653257810022            SQL_PLAN_5s3v02k7yx9
    64rzqgrt63wzu INSERT /*+ domtest sql */ INTO          0 17374141102446297863
    64rzqgrt63wzu INSERT /*+ domtest sql */ INTO          1 17374141102446297863           SQL_PLAN_1ayk9a0wnr
    SQL> Cleanup baselines:
    SQL> declare
      2   l_spm_op pls_integer;
      3  begin
      4   for x in (select sql_handle from dba_sql_plan_baselines b where created >= trunc(sysdate))
      5   loop
      6       l_spm_op :=
      7       dbms_spm.drop_sql_plan_baseline(x.sql_handle);
      8   end loop;
      9  end;
    10  /
    PL/SQL procedure successfully completed.
    SQL> So, I would expect that this is related to DBMS_MVIEW and a restriction on recursive, internal statements.
    For example, if you capture sql plan baselines you don't capture baselines for sys and system statements, etc.
    Further investigation required.
    For example, let's build an MV:
    SQL> create materialized view mv1
      2  build immediate
      3  refresh on demand
      4  as
      5  select /*+ domtest mv */ col1 from t1;
    Materialized view created.
    SQL> exec dbms_mview.refresh('MV1');
    PL/SQL procedure successfully completed.
    SQL> We see two statements from the initial creation of the MV and the subsequent refresh (the latter is the one with the BYPASS_RECURSIVE_CHECK hint).
    SQL> select sql_id
      2  ,      substr(sql_text,1,50) sql_text
      3  ,      child_number c
      4  ,      to_char(force_matching_signature) sig
      5  ,      sql_plan_baseline
      6  from   v$sql
      7  where  sql_text like 'INSERT %domtest%';
    SQL_ID        SQL_TEXT                                C SIG                            SQL_PLAN_BASELINE
    ctyufr5b5yzfm INSERT INTO "RIMS"."MV1" selec          0 12798978218302414227
                  t /*+ domtest mv */
    gfa550uufmr34 INSERT /*+ BYPASS_RECURSIVE_CH          0 12927173360082366872
                  ECK */ INTO "RIMS"."
    SQL> Even if we repeat the refresh, we can't see to get a baseline:
    SQL> exec dbms_mview.refresh('MV1');
    PL/SQL procedure successfully completed.
    SQL> exec dbms_mview.refresh('MV1');
    PL/SQL procedure successfully completed.
    SQL> exec dbms_mview.refresh('MV1');
    PL/SQL procedure successfully completed.
    SQL> exec dbms_mview.refresh('MV1');
    PL/SQL procedure successfully completed.
    SQL> exec dbms_mview.refresh('MV1');
    PL/SQL procedure successfully completed.
    SQL> exec dbms_mview.refresh('MV1');
    PL/SQL procedure successfully completed.
    SQL> select sql_id
      2  ,      substr(sql_text,1,50) sql_text
      3  ,      child_number c
      4  ,      to_char(force_matching_signature) sig
      5  ,      sql_plan_baseline
      6  from   v$sql
      7  where  sql_text like 'INSERT %domtest%';
    SQL_ID        SQL_TEXT                                C SIG                            SQL_PLAN_BASELINE
    ctyufr5b5yzfm INSERT INTO "RIMS"."MV1" selec          0 12798978218302414227
                  t /*+ domtest mv */
    gfa550uufmr34 INSERT /*+ BYPASS_RECURSIVE_CH          0 12927173360082366872
                  ECK */ INTO "RIMS"."
    SQL> So.... might that BYPASS_RECURSIVE_CHECK have anything to do with it?
    It's not likely to be relevant but perhaps we should just check it?
    Let's see what happens if we go back to our original plsql statement because we can't insert into an MV directly.
    SQL> begin
      2   INSERT /*+ BYPASS_RECURSIVE_CHECK */ INTO t1 select 1 from dual;
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL> select sql_id
      2  ,      substr(sql_text,1,50) sql_text
      3  ,      child_number c
      4  --,      to_char(force_matching_signature) sig
      5  ,      sql_plan_baseline
      6  from   v$sql
      7  where  sql_text like 'INSERT /*+ BYPASS_RECURSIVE_CHECK */%';
    SQL_ID        SQL_TEXT                                                    C SQL_PLAN_BASELINE
    6kjvr1gu6v2pq INSERT /*+ BYPASS_RECURSIVE_CHECK */ INTO T1 SELEC          0
    SQL> begin
      2   INSERT /*+ BYPASS_RECURSIVE_CHECK */ INTO t1 select 1 from dual;
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL> select sql_id
      2  ,      substr(sql_text,1,50) sql_text
      3  ,      child_number c
      4  --,      to_char(force_matching_signature) sig
      5  ,      sql_plan_baseline
      6  from   v$sql
      7  where  sql_text like 'INSERT /*+ BYPASS_RECURSIVE_CHECK */%';
    SQL_ID        SQL_TEXT                                                    C SQL_PLAN_BASELINE
    6kjvr1gu6v2pq INSERT /*+ BYPASS_RECURSIVE_CHECK */ INTO T1 SELEC          0
    SQL> begin
      2   INSERT /*+ BYPASS_RECURSIVE_CHECK */ INTO t1 select 1 from dual;
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL> select sql_id
      2  ,      substr(sql_text,1,50) sql_text
      3  ,      child_number c
      4  --,      to_char(force_matching_signature) sig
      5  ,      sql_plan_baseline
      6  from   v$sql
      7  where  sql_text like 'INSERT /*+ BYPASS_RECURSIVE_CHECK */%';
    SQL_ID        SQL_TEXT                                                    C SQL_PLAN_BASELINE
    6kjvr1gu6v2pq INSERT /*+ BYPASS_RECURSIVE_CHECK */ INTO T1 SELEC          0
    6kjvr1gu6v2pq INSERT /*+ BYPASS_RECURSIVE_CHECK */ INTO T1 SELEC          1 SQL_PLAN_aq62u7rqdfcs8125daea2
    SQL> So, nothing to do with that.
    I would suggest that it is because, being executed via DBMS_MVIEW, it is special and bypasses consideration for baselines.
    Can we somehow circumvent this?
    Perhaps, baselines being a pretty flexible vehicle that work off SIGNATURE (and PLAN_HASH_2).
    Let's double check the signature and plan hash we need to reproduce.
    SQL> select sql_id
      2  ,      substr(sql_text,1,50) sql_text
      3  ,      child_number c
      4  ,      to_char(force_matching_signature) sig
      5  ,      sql_plan_baseline
      6  ,      plan_hash_value
      7  from   v$sql
      8  where  sql_text like 'INSERT %domtest%';
    SQL_ID        SQL_TEXT                                C SIG                            SQL_PLAN_BASELINE
    PLAN_HASH_VALUE
    ctyufr5b5yzfm INSERT INTO "RIMS"."MV1" selec          0 12798978218302414227
                  t /*+ domtest mv */
         3617692013
    gfa550uufmr34 INSERT /*+ BYPASS_RECURSIVE_CH          0 12927173360082366872
                  ECK */ INTO "RIMS"."
         3617692013
    SQL> And replace the materialized view with a table:
    SQL> drop materialized view mv1;
    Materialized view dropped.
    SQL> create table mv1
      2  (col1 number);
    Table created.
    SQL> And try to get a statement with the same signature and plan that does use a baseline:
    SQL> begin
      2   INSERT /*+ BYPASS_RECURSIVE_CHECK */ INTO "RIMS"."MV1" select /*+ domtest mv */ col1 from t1 ;
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL> select sql_id
      2  ,      substr(sql_text,1,50) sql_text
      3  ,      child_number c
      4  ,      to_char(force_matching_signature) sig
      5  ,      sql_plan_baseline
      6  ,      plan_hash_value
      7  from   v$sql
      8  where  sql_text like 'INSERT %domtest%';
    SQL_ID        SQL_TEXT                                C SIG                            SQL_PLAN_BASELINE
    PLAN_HASH_VALUE
    ctyufr5b5yzfm INSERT INTO "RIMS"."MV1" selec          0 12798978218302414227
                  t /*+ domtest mv */
         3617692013
    5n6auhnqpb258 INSERT /*+ BYPASS_RECURSIVE_CH          0 12927173360082366872           SQL_PLAN_b6tnbps6tn
                  ECK */ INTO "RIMS".
         3617692013
    gfa550uufmr34 INSERT /*+ BYPASS_RECURSIVE_CH          0 12927173360082366872
                  ECK */ INTO "RIMS"."
         3617692013
    SQL> Now if we drop and recreate the materialized view:
    SQL> create materialized view mv1
      2  build immediate
      3  refresh on demand
      4  as
      5  select /*+ domtest mv */ col1 from t1;
    Materialized view created.
    SQL> exec dbms_mview.refresh('MV1');
    PL/SQL procedure successfully completed.
    SQL> select sql_id
      2  ,      substr(sql_text,1,50) sql_text
      3  ,      child_number c
      4  ,      to_char(force_matching_signature) sig
      5  ,      sql_plan_baseline
      6  ,      plan_hash_value
      7  from   v$sql
      8  where  sql_text like 'INSERT %domtest%';
    SQL_ID        SQL_TEXT                                C SIG                            SQL_PLAN_BASELINE
    PLAN_HASH_VALUE
    dac4d22mf0m6k INSERT INTO "RIMS"."MV1" selec          0 12798978218302414227
                  t /*+ domtest mv */
         3617692013
    cn4syqz9cxp3y INSERT /*+ BYPASS_RECURSIVE_CH          0 12927173360082366872           SQL_PLAN_b6tnbps6tn
                  ECK */ INTO "RIMS"."
         3617692013
    SQL> And cleanup:
    SQL> drop table t1;
    Table dropped.
    SQL> drop materialized view mv1;
    Materialized view dropped.
    SQL> declare
      2   l_spm_op pls_integer;
      3  begin
      4   for x in (select sql_handle from dba_sql_plan_baselines b where created >= trunc(sysdate))
      5   loop
      6       l_spm_op :=
      7       dbms_spm.drop_sql_plan_baseline(x.sql_handle);
      8   end loop;
      9  end;
    10  /
    PL/SQL procedure successfully completed.
    SQL> So....
    Are baselines created for sql statements executed from PLSQL? Yes.
    Are baselines created for internal statements from DBMS_MVIEW? No.
    Why? Don't know. But I think it's expected behaviour.
    Is there a convoluted way of applying a baseline to the internal refresh statement? Yes.

  • Problems with captured animation

    Goodmorning,
    We have a problem with captured animations.
    We have created a few movies which have some captured animations.
    When we play the movies, they do work. After saving and reopening most of them don't work anymore,
    and only the part with the captured animation. The screens goes fully white while playing the animation.
    Only the text balloons are visable...
    We work on a group directory with captivate 3. Recently the flash player is updated to version 10.
    We both are opening the files, not at the same time.
    Questions:
    Anybody aware of the problem ?
    Anybody with any solution ?
    Does anybody knows where captivate stores captured animations ?
    For example. When I look in the library, i can see four captured animations, when i want to update them, i dont see any of them.
    Brdgs Marc

    Hi there
    I believe you are talking about a Full Motion Recording (FMR). If this is Captivate 3, likely you are seeing an issue whereby Flash Player 10 is causing a problem.
    If you revert to Flash Player 9 you should see the preview within Captivate again. Or, if you choose not to downgrade the Flash Player, you may elect to avoid previewing in Captivate and instead preview in the Web Browser.
    Cheers... Rick
    Click here for Adobe Authorized Captivate and RoboHelp HTML Training
    Click here for the SorcerStone Blog
    Click here for RoboHelp and Captivate eBooks

  • FMLE encoding stopped: Problem with capture device. Incorrect samples given by the device.

    Hi Support,
    I am trying to use FMLE to encode and stream video from an Axis P1346 IP camera, via Axis' Streaming Assistant software, to a Wowza server.
    Everyting appears to be working perfectly and the encoding and resultant stream quality is excellent. Sometimes after a few hours and sometimes after just a few minutes, the encoding will stop with the following error:
    Tue Mar 26 2013 11:47:18 : Session Stopped
    Tue Mar 26 2013 11:47:18 : Problem with capture device. Incorrect samples given by the device. Stopping encoding session.
    I have attached a recent log of a session that only lasted a few minutes - do you have any ideas on how to resolve this instability?
    =================================================================
    File: C:\Program Files (x86)\Adobe\Flash Media Live Encoder 3.2\FlashMediaLiveEncoder.exe
    Description: Adobe® Flash® Media Live Encoder
    Copyright: © 2009 - 10 Adobe Systems Incorporated. All Rights Reserved. Adobe, the Adobe logo, and Flash are either registered trademarks or trademarks of Adobe Systems Incorporated in the United States and/or other countries. All other trademarks are the property of their respective owners. <AdobeIP#0000716>
    Version: 3.2.0.9932
    =================================================================
    Tue Mar 26 2013 11:42:10 : Selected video input device: TowerBridge
    Tue Mar 26 2013 11:42:10 : Failed with error 80040154:CoCreateInstance(CLSID_VideoMixingRenderer9, NULL, CLSCTX_INPROC, IID_IBaseFilter, pFilterVideoMixingRenderer.ppv())
    Tue Mar 26 2013 11:42:10 : Display Color Quality Warning : Display color quality is currently lower than 32 bit. Colors in video display may be distorted when encoding is not on. To change the display color, open the Display Properties, Settings tab and change color quality to 32 bit.
    Tue Mar 26 2013 11:42:12 : No audio capture devices detected. : Flash Media Live Encoder requires an audio capture device to be connected and properly installed.
    Tue Mar 26 2013 11:42:24 : Primary - Connected to FMS/3,5,7,7009
    Tue Mar 26 2013 11:42:24 : Primary - Network Command: onFCPublish
    Tue Mar 26 2013 11:42:24 : Primary - Stream[fmlestream] Status: Success
    Tue Mar 26 2013 11:42:24 : Primary - Stream[fmlestream] Status: NetStream.Publish.Start
    ==========================================================
    <?xml version="1.0" encoding="UTF-16"?>
    <flashmedialiveencoder_profile>
        <preset>
            <name>Custom</name>
            <description></description>
        </preset>
        <capture>
            <video>
            <device>TowerBridge</device>
            <crossbar_input>0</crossbar_input>
            <frame_rate>30.00</frame_rate>
            <size>
                <width>640</width>
                <height>360</height>
            </size>
            </video>
            <timecode>
            <frame_rate>15</frame_rate>
            <systemtimecode>true</systemtimecode>
            <devicetimecode>
                <enable>false</enable>
                <vertical_line_no>16</vertical_line_no>
                <burn>false</burn>
                <row>Bottom</row>
                <column>Left</column>
            </devicetimecode>
            </timecode>
        </capture>
        <encode>
            <video>
            <format>H.264</format>
            <datarate>1000;</datarate>
            <outputsize>640x360;</outputsize>
            <advanced>
                <profile>Baseline</profile>
                <level>3.1</level>
                <keyframe_frequency>1 Second</keyframe_frequency>
            </advanced>
            <autoadjust>
                <enable>false</enable>
                <maxbuffersize>1</maxbuffersize>
                <dropframes>
                <enable>false</enable>
                </dropframes>
                <degradequality>
                <enable>false</enable>
                <minvideobitrate></minvideobitrate>
                <preservepfq>false</preservepfq>
                </degradequality>
            </autoadjust>
            </video>
        </encode>
        <restartinterval>
            <days></days>
            <hours></hours>
            <minutes></minutes>
        </restartinterval>
        <reconnectinterval>
            <attempts></attempts>
            <interval></interval>
        </reconnectinterval>
        <output>
            <rtmp>
            <url>rtmp://localhost/live</url>
            <backup_url></backup_url>
            <stream>fmlestream</stream>
            </rtmp>
        </output>
        <metadata>
            <entry>
            <key>author</key>
            <value>Octopus MT</value>
            </entry>
            <entry>
            <key>copyright</key>
            <value>Octopus MT</value>
            </entry>
            <entry>
            <key>description</key>
            <value>Tower Bridge - London, UK</value>
            </entry>
            <entry>
            <key>keywords</key>
            <value>"Tower Bridge", London</value>
            </entry>
            <entry>
            <key>rating</key>
            <value></value>
            </entry>
            <entry>
            <key>title</key>
            <value>Tower Bridge - LIVE</value>
            </entry>
        </metadata>
        <preview>
            <video>
            <input>
                <zoom>100%</zoom>
            </input>
            <output>
                <zoom>100%</zoom>
            </output>
            </video>
            <audio></audio>
        </preview>
        <log>
            <level>100</level>
            <directory>C:\Users\Administrator\Videos</directory>
        </log>
    </flashmedialiveencoder_profile>
    ==========================================================
    DumpGraph [00CA91F8]
        Filter [00CABFDC] Output Video Renderer
              Pin [00CAC3B4] Input [Input] Connected to pin [00CACE1C]
        Filter [00CA9C8C] Input Video Renderer
              Pin [00CAA064] Input [Input] Connected to pin [03BA33A4]
        Filter [02F6AF10] Mux
              Pin [02F6AF70] FLV7 [Input] Connected to pin [02F6FC00]
              Pin [02F6B790]  audio [ Input] This pin is not Connected
              Pin [02F6BA08]  out [ Output] This pin is not Connected
        Filter [00CAEADC] AVI Decompressor 0003
              Pin [00CAEC14] XForm In [Input] Connected to pin [02F70D88]
              Pin [00CACE1C] XForm Out [Output] Connected to pin [00CAC3B4]
        Filter [03BA326C] AVI Decompressor
              Pin [00CAACD4] XForm In [Input] Connected to pin [02F68BF8]
              Pin [03BA33A4] XForm Out [Output] Connected to pin [00CAA064]
        Filter [02F70048] H264 Compressor
              Pin [02F70070] Input [Input] Connected to pin [02F6F898]
              Pin [02F70D88] Preview [Output] Connected to pin [00CAEC14]
              Pin [02F6FC00] Output1 [Output] Connected to pin [02F6AF70]
              Pin [02F71228]  Output2 [ Output] This pin is not Connected
        Filter [02F68AF0] Input RGB
              Pin [02F68B08] Input [Input] Connected to pin [02F60178]
              Pin [02F68BF8] Output [Output] Connected to pin [00CAACD4]
        Filter [02F6F118] FPS Controller Encoder
              Pin [02F6F128] Input [Input] Connected to pin [02F6E880]
              Pin [02F6F898] Output [Output] Connected to pin [02F70070]
        Filter [02F5FAB8] YV12
              Pin [02F5FAD0] Input [Input] Connected to pin [03BA3F24]
              Pin [02F60178] Output [Output] Connected to pin [02F68B08]
        Filter [02F6E778] Resize
              Pin [02F6E790] Input [Input] Connected to pin [02F6E620]
              Pin [02F6E880] Output [Output] Connected to pin [02F6F128]
        Filter [02F6DF60] YV12 0002
              Pin [02F6DF78] Input [Input] Connected to pin [02F6DE00]
              Pin [02F6E620] Output [Output] Connected to pin [02F6E790]
        Filter [02F6D680] FPS Controller Resize
              Pin [02F6D690] Input [Input] Connected to pin [00CA9B6C]
              Pin [02F6DE00] Output [Output] Connected to pin [02F6DF78]
        Filter [00CAB9CC] Video Tee
              Pin [00CABA34] Input [Input] Connected to pin [03B9EE9C]
              Pin [03BA3F24] Output1 [Output] Connected to pin [02F5FAD0]
              Pin [00CA9B6C] Output2 [Output] Connected to pin [02F6D690]
              Pin [03BA3454]  Output3 [ Output] This pin is not Connected
        Filter [00CA99C4] Smart Tee
              Pin [00CA9A2C] Input [Input] Connected to pin [00C0974C]
              Pin [03B9EE9C] Capture [Output] Connected to pin [00CABA34]
              Pin [00CAE204]  Preview [ Output] This pin is not Connected
        Filter [00C0A6DC] SOURCE
              Pin [00C0974C] Video [Output] Connected to pin [00CA9A2C]
    DumpGraph [00CA91F8]
        Filter [00CABFDC] Output Video Renderer
              Pin [00CAC3B4] Input [Input] Connected to pin [00CACE1C]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {E436EB7A-524F-11CE-9F53-0020AF0BA770}  MEDIASUBTYPE_RGB8
    Not temporally compressed
    Sample size 230400
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 8 bpp c:0
    Image size 230400
    Planes 1
    Pels per metre (0, 0)
    Colours used 256
    AvgTimePerFrame 333333, 30 fps
        Filter [00CA9C8C] Input Video Renderer
              Pin [00CAA064] Input [Input] Connected to pin [03BA33A4]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {E436EB7A-524F-11CE-9F53-0020AF0BA770}  MEDIASUBTYPE_RGB8
    Not temporally compressed
    Sample size 230400
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 8 bpp c:0
    Image size 230400
    Planes 1
    Pels per metre (0, 0)
    Colours used 256
    AvgTimePerFrame 333333, 30 fps
        Filter [02F6AF10] Mux
              Pin [02F6AF70] FLV7 [Input] Connected to pin [02F6FC00]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {37564C46-0000-0010-8000-00AA00389B71}  Unknown GUID Name
    Temporally compressed
    Variable size samples
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 12 bpp c:37564c46
    Image size 345600
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 333333, 30 fps
              Pin [02F6B790]  audio [ Input] This pin is not Connected
              Pin [02F6BA08]  out [ Output] This pin is not Connected
        Filter [00CAEADC] AVI Decompressor 0003
              Pin [00CAEC14] XForm In [Input] Connected to pin [02F70D88]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {30323449-0000-0010-8000-00AA00389B71}  Unknown GUID Name
    Not temporally compressed
    Sample size 345600
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 12 bpp c:30323449
    Image size 345600
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 333333, 30 fps
              Pin [00CACE1C] XForm Out [Output] Connected to pin [00CAC3B4]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {E436EB7A-524F-11CE-9F53-0020AF0BA770}  MEDIASUBTYPE_RGB8
    Not temporally compressed
    Sample size 230400
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 8 bpp c:0
    Image size 230400
    Planes 1
    Pels per metre (0, 0)
    Colours used 256
    AvgTimePerFrame 333333, 30 fps
        Filter [03BA326C] AVI Decompressor
              Pin [00CAACD4] XForm In [Input] Connected to pin [02F68BF8]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {56555949-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_IYUV
    Not temporally compressed
    Sample size 345600
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 12 bpp c:56555949
    Image size 345600
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 333333, 30 fps
              Pin [03BA33A4] XForm Out [Output] Connected to pin [00CAA064]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {E436EB7A-524F-11CE-9F53-0020AF0BA770}  MEDIASUBTYPE_RGB8
    Not temporally compressed
    Sample size 230400
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 8 bpp c:0
    Image size 230400
    Planes 1
    Pels per metre (0, 0)
    Colours used 256
    AvgTimePerFrame 333333, 30 fps
        Filter [02F70048] H264 Compressor
              Pin [02F70070] Input [Input] Connected to pin [02F6F898]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32315659-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YV12
    Not temporally compressed
    Sample size 345600
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 12 bpp c:32315659
    Image size 345600
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 333333, 30 fps
              Pin [02F70D88] Preview [Output] Connected to pin [00CAEC14]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {30323449-0000-0010-8000-00AA00389B71}  Unknown GUID Name
    Not temporally compressed
    Sample size 345600
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 12 bpp c:30323449
    Image size 345600
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 333333, 30 fps
              Pin [02F6FC00] Output1 [Output] Connected to pin [02F6AF70]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {37564C46-0000-0010-8000-00AA00389B71}  Unknown GUID Name
    Temporally compressed
    Variable size samples
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 12 bpp c:37564c46
    Image size 345600
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 333333, 30 fps
              Pin [02F71228]  Output2 [ Output] This pin is not Connected
        Filter [02F68AF0] Input RGB
              Pin [02F68B08] Input [Input] Connected to pin [02F60178]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32315659-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YV12
    Not temporally compressed
    Sample size 345600
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 12 bpp c:32315659
    Image size 345600
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 333333, 30 fps
              Pin [02F68BF8] Output [Output] Connected to pin [00CAACD4]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {56555949-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_IYUV
    Not temporally compressed
    Sample size 345600
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 12 bpp c:56555949
    Image size 345600
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 333333, 30 fps
        Filter [02F6F118] FPS Controller Encoder
              Pin [02F6F128] Input [Input] Connected to pin [02F6E880]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32315659-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YV12
    Not temporally compressed
    Sample size 345600
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 12 bpp c:32315659
    Image size 345600
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 333333, 30 fps
              Pin [02F6F898] Output [Output] Connected to pin [02F70070]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32315659-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YV12
    Not temporally compressed
    Sample size 345600
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 12 bpp c:32315659
    Image size 345600
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 333333, 30 fps
        Filter [02F5FAB8] YV12
              Pin [02F5FAD0] Input [Input] Connected to pin [03BA3F24]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32595559-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YUY2
    Not temporally compressed
    Sample size 460800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 16 bpp c:32595559
    Image size 460800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 333333, 30 fps
              Pin [02F60178] Output [Output] Connected to pin [02F68B08]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32315659-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YV12
    Not temporally compressed
    Sample size 345600
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 12 bpp c:32315659
    Image size 345600
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 333333, 30 fps
        Filter [02F6E778] Resize
              Pin [02F6E790] Input [Input] Connected to pin [02F6E620]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32315659-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YV12
    Not temporally compressed
    Sample size 345600
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 12 bpp c:32315659
    Image size 345600
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 333333, 30 fps
              Pin [02F6E880] Output [Output] Connected to pin [02F6F128]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32315659-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YV12
    Not temporally compressed
    Sample size 345600
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 12 bpp c:32315659
    Image size 345600
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 333333, 30 fps
        Filter [02F6DF60] YV12 0002
              Pin [02F6DF78] Input [Input] Connected to pin [02F6DE00]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32595559-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YUY2
    Not temporally compressed
    Sample size 460800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 16 bpp c:32595559
    Image size 460800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 333333, 30 fps
              Pin [02F6E620] Output [Output] Connected to pin [02F6E790]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32315659-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YV12
    Not temporally compressed
    Sample size 345600
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 12 bpp c:32315659
    Image size 345600
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 333333, 30 fps
        Filter [02F6D680] FPS Controller Resize
              Pin [02F6D690] Input [Input] Connected to pin [00CA9B6C]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32595559-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YUY2
    Not temporally compressed
    Sample size 460800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 16 bpp c:32595559
    Image size 460800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 333333, 30 fps
              Pin [02F6DE00] Output [Output] Connected to pin [02F6DF78]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32595559-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YUY2
    Not temporally compressed
    Sample size 460800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 16 bpp c:32595559
    Image size 460800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 333333, 30 fps
        Filter [00CAB9CC] Video Tee
              Pin [00CABA34] Input [Input] Connected to pin [03B9EE9C]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32595559-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YUY2
    Not temporally compressed
    Sample size 460800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 16 bpp c:32595559
    Image size 460800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 333333, 30 fps
              Pin [03BA3F24] Output1 [Output] Connected to pin [02F5FAD0]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32595559-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YUY2
    Not temporally compressed
    Sample size 460800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 16 bpp c:32595559
    Image size 460800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 333333, 30 fps
              Pin [00CA9B6C] Output2 [Output] Connected to pin [02F6D690]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32595559-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YUY2
    Not temporally compressed
    Sample size 460800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 16 bpp c:32595559
    Image size 460800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 333333, 30 fps
              Pin [03BA3454]  Output3 [ Output] This pin is not Connected
        Filter [00CA99C4] Smart Tee
              Pin [00CA9A2C] Input [Input] Connected to pin [00C0974C]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32595559-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YUY2
    Not temporally compressed
    Sample size 460800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 16 bpp c:32595559
    Image size 460800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 333333, 30 fps
              Pin [03B9EE9C] Capture [Output] Connected to pin [00CABA34]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32595559-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YUY2
    Not temporally compressed
    Sample size 460800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 16 bpp c:32595559
    Image size 460800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 333333, 30 fps
              Pin [00CAE204]  Preview [ Output] This pin is not Connected
        Filter [00C0A6DC] SOURCE
              Pin [00C0974C] Video [Output] Connected to pin [00CA9A2C]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32595559-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YUY2
    Not temporally compressed
    Sample size 460800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 360, 16 bpp c:32595559
    Image size 460800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 333333, 30 fps
    Tue Mar 26 2013 11:42:24 : Session Started
    Tue Mar 26 2013 11:42:24 : Video Encoding Started
    Tue Mar 26 2013 11:47:18 : Video Encoding Stopped
    Tue Mar 26 2013 11:47:18 : Session Stopped
    Tue Mar 26 2013 11:47:18 : Problem with capture device. Incorrect samples given by the device. Stopping encoding session.
    Tue Mar 26 2013 11:47:18 : Primary - Network Command: onFCUnpublish
    Tue Mar 26 2013 11:47:18 : Primary - Stream[fmlestream] Status: NetStream.Unpublish.Success
    Tue Mar 26 2013 11:47:18 :
    ================== Encoding Statistics ====================
                            Current                        
                                           Input              Output
                 Time    Bit Rate     Drops      fps     Drops      fps
    Audio  :                                 
    Video 1:   0:04:50    644 Kbps        72    74.00         0    15.00
                            Average                         
                                           Input              Output
                 Time    Bit Rate     Drops      fps     Drops      fps
    Audio  :                                 
    Video 1:   0:04:50    983 Kbps        75    29.40         0    29.36
    ===========================================================
    ================= Publishing Statistics ===================
             Bandwidth     Buffer   Frame Drops
    Primary:  824 Kbps   0.00 Sec          0
    Backup :    0 Kbps   0.00 Sec          0
    ===========================================================
    Tue Mar 26 2013 11:47:18 : Failed with error 80040273:CoCreateInstance(CLSID_VideoMixingRenderer9, NULL, CLSCTX_INPROC, IID_IBaseFilter, pFilterVideoMixingRenderer.ppv())
    Tue Mar 26 2013 11:47:56 : Primary - Network Status: NetConnection.Connect.Closed status
    Tue Mar 26 2013 11:47:56 : Primary - Disconnected
    Thank you for your assistance
    Richard

    Please attach the session log file.

  • Problem with capture

    Hello everyone, I have a problem with capturing HDV tape, not that I'm doing wrong and I would like if possible someone could help me until now had captured no problem with the version Fine Cut Studio V.6, and captured clips are stored in the folder specified with the. mov, but now I'm doing it with version 7, and captured clips are stored as a Unix executable file and not as a video file. mov, thereby not You can open the file. Thanks for the help

    Thanks, and can convert video files with a. Mov. But can it not be automatic unless it is misconfigured the "Easy setup" and the "Audio / Video Setting"?. I use a Canon camera that records in XLH1 HDV, which is the source of capture and compression I put Apple ProRes 422 (HQ). I tried several configurations but none can capture directly in. Mov, Can you tell me what the proper configración? recorded in HDV 108050i. thanks for your help Greetings

  • Problem with capturing image

    http://1drv.ms/1jWJ5a3
    Problem with capturing image. Logs included.
    Also after deploying letters are swapped. System is on D drive, and data on C drive.
    Any idea ?

    Based on the logfiles:
    SMSSITECODE=K01
    SMSMP=SCCM.kolubara.local
    you could also use DNSSUFFIX=kolubara.local
    More on CCMSetup parameters can be found here
    http://technet.microsoft.com/en-us/library/gg699356.aspx. Use client.msi parameters in your task sequence separated by spaces, so that your Setup Windows & Configuration Manager Client -step looks like this:

  • I receive an error code during installlation - Error 1722 - There is a problem with this Windows Installer Package.  A program run as part of the setup did not finish as expected.  Contact support personnel or package vendor.

    Problem installing Adobe LiveCycle Designer ES4

    Let's try the following user tip with that one:
    "There is a problem with this Windows Installer package ..." error messages when installing iTunes for Windows

  • Problems with Adobe Creative Cloud Packager

    Hello Community
    I have a problem with the Creative cloud packager.
    i can pakage fine but when i try to install the package on another mac it simply says installation failed after a few minutes, i can see it installs Adobe Bridge in the launchpad but nothing more.
    The package includes Photoshop , Bridge, Muse, Premiere, Illustrator, Indesign, After Effects,l Dreamweaver, incopy, lightroom,
    The install works fine if i try to install it on the mac i made the package with
    The mac im trying to install on is a imac 27 " 5K osx 10.10

    Hi KwKn,
    Does it work on the machine on which you are creating the package?
    Do you have any security software running on the machine?
    Also I would request you to go through the below link.
    Creative Cloud Help | Packager
    Regards,
    Anand

  • I have problem with login in sql Server give me support .pre login handshake

    I have problem with login in sql Server give me support .pre login handshake

    The following threads are on the same topic:
    http://www.sql-server-performance.com/forum/threads/pre-login-handshake-error-when-connecting-to-db.687/
    http://stackoverflow.com/questions/12308340/sql-server-2000-connection-error-pre-login-handshake
    http://dbaspot.com/sqlserver-server/458011-error-occurred-during-pre-login-handshake-microsoft-sql-server-error-10054-a.html
    Kalman Toth Database & OLAP Architect
    IPAD SELECT Query Video Tutorial 3.5 Hours
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • I am trying to install iTunes on my PC, but I get this error: "There is a problem with this Windows Installer package. A DLL required for this install to complete could not be run. Contact your support personnel or package vendor." Help!

    I am trying to install iTunes on my PC (using Windows 8.1), but I get this error: "There is a problem with this Windows Installer package. A DLL required for this install to complete could not be run. Contact your support personnel or package vendor." The iTunes file (64-bit) I am trying to install, is named "iTunes64Setup.exe". What seems to be the problem? Help!

    Hey madnest,
    Thanks for the question. After reviewing your post, it sounds like you are having difficulty installing iTunes in Windows. I would recommend that you read this article, it may be able to help you resolve or isolate the issue.
    Issues installing iTunes or QuickTime for Windows
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

  • I keep getting the following error message when I try to update my itunes, "There is a problem with this windows installer package. Aprogram run as part of the set up did not finish as expected.  Contact your support personnel or package vendor."

    I keep getting the following error message when I try to update my itunes, "There is a problem with this windows installer package. Aprogram run as part of the set up did not finish as expected.  Contact your support personnel or package vendor."

    Yes, I had found a similar solution also.  I'm running XP Pro, SP3.  I went Control Panels/ Add-Remove programmes/apple software update/ change/ repair.  Then run the 10.5 exe.
    While the programme updated from version 8 of iTunes, my new iTunes is now a mess.  Not all of my music was in the same folder previously but it all showed up on iTunes.  Now many albums have been left out, some have only a few tracks and some have two copies of some tracks as well as having other tracks missing.  I haven't begun to work on that.

  • When attempt to download 10.5, receive message: "...problem with this widows installer package. a program run as part of the set up did not finish as expected. ..." -- what to do?

    I have attempted to upgrade my iPad which is necessar to downloan an app I want (My Radar).  The iTunes on my computer will not process the upgrade of 10.5 without message:  "There is a problem with this Windows Installer Package. A program run as part of the set up did not finish as expected. Contract your support personnel or packae vendor."  ..... Little old lady needs help, my iTunes "appears to be 10.5 on my PC; however, will not upgrade my iPad.  I have BitDefender as the "protector" on my PC if that is the issue.

    Go to support.microsoft.com/fixit
    In section 2 click on: Install or upgrade software or hardware
    Then click on the title in section 3: Fix problems with programs that cannot be installed or uninstall
    This link may get you there:  http://support.microsoft.com/mats/Program_Install_and_Uninstall/
    Let it run and then try to download it again

  • I get the errer message "There is a problem with this windows installer package. A program required for this install to complete could not be run."

    I have Wondows Vista... I tried to upgrade to Itunes 10.5, and received an error orginially stating that I was trying to install a version older than the one I had.  I uninstalled all of itunes, and now I'm getting the error  message "there is a problem with this windows installer package.  Aprogram required for this install to complete could not be run.
    Help!  I have an IPhone, and I would like to get my Itunes upgraded so I can download the new Iphone software...
    Thanks!

    I have been in touch with Apple support in reference to my problem. We went through every solution available, and found no fix. The tech then suggested I contact Microsoft concerning this issue. I thought that suggestion was just to get me pointed somewhere but Apple. Boy was I wrong!! I contacted Microsoft, and was directed to a free download called Microsoft Fix. This program fixed something in the regisitor, and wala everything was fixed!! I now have I-Cloud and I-Tunes loaded and working well. So, if you can't install Apple Software and are running Window 7 you might give Microsoft Fix a try, it fixed my problem.....

  • HT1926 when trying to setup itunes on my pc i get the following message: there is a problem with this Windows installer package. A program required for this install to complete could not be run. How could I solve this problem?

    when trying to setup itunes on my pc i get the following message: there is a problem with this Windows installer package. A program required for this install to complete could not be run. How could I solve this problem?

    Repair your Apple software update.
    Go to START/ALL PROGRAMS/Apple Software Update. If it offers you a newer version of Apple Software Update, do it but Deselect any other software offered at the same time. Once done, try another iTunes install
    If you don't find ASU, go to Control Panel:
    START/CONTROL PANEL/Programs n Features/highlight ASU and click REPAIR,

  • ITunes 10.5 Upgrade fails to Install. The Error Message is: "There is a Problem with this Windows Installer Package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor."

    When Upgrading on my laptop from iTunes 10.2.11 to 10.5.0 the message I get is: "There is a problem with this Windows Installer Package.  Aprogram run as part of the setup did not finish as expected. Contact your support personnel or pacakge vendor.

    After reading all these posts, one by one did not resolve my problem until I got the very end.  Regardless of what step would resolve your problem, these are the steps I would recomment to everyone for a what seems to be a safe and fool-proof upgrade to iTunes 10.5.
    1. Stand alone upgrade to the latest Quicktime version
    2. Go to control panel and "change" then select repair to the following applications in the order specified by the post on Oct 27. (Notice I skipped Quicktime because it had been upgrade manually,and Bonjour did not have a "repair" option)
    iTunes; Apple Software Update: Mobile Device Support; Apple Applications Support
    Some of these applications may not appear if they do not apply to your configuration (no iPhone, or no iPad, or other apple devices).
    Once all updated, I did not need to restart nor launch any applications, I simply went straight into the 10.5 upgrade, and where it normally got stuck, this time the installation continued for a while longer until it completed successfully.
    Great work everyone who contributed!  Thank you very much!

Maybe you are looking for

  • MacBook Pro Stuck in Recovery Loop; Disk Utility Error

    I am getting the error: Disk Utility Stopped Repairing "disk0s2" - says disk utility can't repair the disk and I will need to reformat the disk and restore my files. This appears to be the startup disk (could be wrong) - as I am currently in recovery

  • All hard drives move after start up

    I have a 17" MacBook Pro and I place my hard drives in the upper right hand corner, but when I restart they always show up somewhere else? Is there a solution for this? 17" MacBook Pro   Mac OS X (10.4.7)  

  • Can I read my texts on a computer while my iphone is broken?

    My iphone 4 won't charge suddenly, and I'm assuming the battery needs replaced.  Meanwhile, is there a way to access my text messages?  It's become my main way of communicating and there's nothing to tell senders I'm not seeing their messages.  AT&T

  • IPhoto not responding importing some photos

    Hello, I have a macbook pro 13. This is my first mac. I was trying to import all my photo library to iPhoto (all the images folders in windows), but it's becoming impossible. Everytime I try to import my photos, iPhoto freezes in a particular photo a

  • Schedule agreement-JIT and creation profile (are necessary to maintain)

    Hi Friends , I am doing schedule line agreement in this way. 1) Create SA agrement -ME31L 2) Maintain schedule lines -ME38 3) MIGO- 4)MIRO That is working. A ) But then why it is necessary to maintain in material master under purchasing tab- JIT and