Help with DVD authoring process

I've been reading hundreds of forums and discussions over the last week the more I read the more confused it all becomes.
Working with Sports AVCHD Footage from a Canon HG10
Import into FCE
Export to QT "not self contained"
The quality looks good when the QT is opened in QT player.
My concern is when its imported into iDVD or TOAST and encoded/compressed to Mpeg2 the quality has been lost the sharpness has gone. Have tried numerous settings and combinations within iDVD and Toast 9 but still no improvement.
Does the QT movie need to be encoded/compressed with another application to retain the quality?
What about FCP does that have a compressor/encoder which can to it.
Do I need to purchase DSP to get the quality?
All you pros out there any information, tips, processes, ideas anything to get a quality DVD

The video is 90min long of sports footage
I'm not sure about Toast, but iDVD uses uncompressed audio in the final DVD, what means that A LOT of your available space and bandwidth will be taken just for the audio and then, it needs to encode your video to a lower quality to fit in your disc (single layer?).
Using Compressor lets you encode your audio to Dolby 2 (AC3) and it will give you more space for your video and then, you can get a better encoding quality.
Hope that helps !
  Alberto

Similar Messages

  • Need help with a simple process with FTP Adapter and File Adapter

    I am trying out a simple BPEL process that gets a file in opaque mode from a FTP server using a FTP adapter and writes it to the local file system using a File Adapter. However, the file written is always empty (zero bytes). I then tried out the FTPDebatching sample using the same FTP server JNDI name and this work fine surprisingly. I also verified by looking at the FTP server logs that my process actually does hit the FTP server and seems to list the files based on the filtering condition - but it does not issue any GET or RETR commands to actually get the files. I am suspecting that the problem could be in the Receive, Assign or Invoke activities, but I am not able identify what it is.
    I can provide additional info such as the contents of my bpel and wsdl files if needed.
    Would appreciate if someone can help me with this at the earliest.
    Thanks
    Jay

    persiandude wrote:
    Topic: Need help with if, else, and which statements and loops.
    How would I display 60 < temp. <= 85 in java
    System.out.println("60 < temp. <= 85 in java");
    another question is how do I ask a question like want to try again (y/n) after a output and asking that everytime I type in yes after a output and terminate when saying No.Sun's [basic Java tutorial|http://java.sun.com/docs/books/tutorial/]
    Sun's [New To Java Center|http://java.sun.com/learning/new2java/index.html].Includes an overview of what Java is, instructions for setting up Java, an intro to programming (that includes links to the above tutorial or to parts of it), quizzes, a list of resources, and info on certification and courses.
    [http://javaalmanac.com|http://javaalmanac.com]. A couple dozen code examples that supplement [The Java Developers Almanac|http://www.amazon.com/exec/obidos/tg/detail/-/0201752808?v=glance].
    jGuru. A general Java resource site. Includes FAQs, forums, courses, more.
    JavaRanch. To quote the tagline on their homepage: "a friendly place for Java greenhorns." FAQs, forums (moderated, I believe), sample code, all kinds of goodies for newbies. From what I've heard, they live up to the "friendly" claim.
    Bruce Eckel's [Thinking in Java|http://mindview.net/Books/DownloadSites] (Available online.)
    Joshua Bloch's [Effective Java|http://www.amazon.com/Effective-Java-2nd-Joshua-Bloch/dp/0321356683/ref=pd_bbs_1?ie=UTF8&s=books&qid=1214349768&sr=8-1]
    Bert Bates and Kathy Sierra's [Head First Java|http://www.amazon.com/exec/obidos/tg/detail/-/0596004656?v=glance].
    James Gosling's [The Java Programming Language|http://www.bookpool.com/sm/0321349806].

  • Urgent help with simple BPEL process for reading data from database

    Hello there,
    I need help with BPEL project.
    i have created a table Employee in Database.
    I did create application, BPEL project and connection to the database properly using Database Adapter.
    I need to read the records from the database and convert into xml fomat and it should to go approval for BPM worklist.
    Can someone please describe me step by step what i need to do.
    Thx,
    Dps

    I have created a table in Database with data like Empno,name,salary,comments.
    I created Database Connection in jsp page and connecting to BPEL process.
    It initiates the process and it goes automatically for approval.
    Please refer the code once which i created.
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@page import="java.util.Map" %>
    <%@page import="com.oracle.bpel.client.Locator" %>
    <%@page import="com.oracle.bpel.client.NormalizedMessage" %>
    <%@page import="com.oracle.bpel.client.delivery.IDeliveryService" %>
    <%@page import="javax.naming.Context" %>
    <%@page import="java.util.Hashtable" %>
    <%@page import="java.util.HashMap" %>
    <%@ page import="java.sql.*"%>
    <%@ page import= "jspprj.DBCon"%>
    <html>
    <head>
    <title>Invoke CreditRatingService</title>
    </head>
    <body>
    <%
    DBCon dbcon=new DBCon();
    Connection conn=dbcon.createConnection();
    Statement st=null;
    PreparedStatement pstmt=null;
    Hashtable env= new Hashtable();
    ResultSet rs = null;
    Map payload =null;
    try
    env.put(Context.INITIAL_CONTEXT_FACTORY, "com.evermind.server.rmi.RMIInitialContextFactory");
    env.put(Context.PROVIDER_URL, "opmn:ormi://localhost:port:home/orabpel");//bpel server
    env.put("java.naming.security.principal", "username");
    env.put("java.naming.security.credentials", "password");//bpel console
    Locator locator = new Locator("default","password",env);
    IDeliveryService deliveryService =
    (IDeliveryService)locator.lookupService(IDeliveryService.SERVICE_NAME );
    // construct the normalized message and send to Oracle BPEL Process Manager
    NormalizedMessage nm = new NormalizedMessage();
    java.util.HashMap map = new HashMap();
    st=conn.createStatement();
    out.println("connected");
    String query1="Select * from EMPLOYEE";
    rs=st.executeQuery(query1);
    /*reading Data From Database and converting into XML format
    so that no need of going to BPEL console and entering the details.
    while (rs.next()){
    String xml1 = "<AsynchBPELProcess1ProcessRequest xmlns='http://xmlns.oracle.com/AsynchBPELProcess1'>"+
    "<Empno>"+rs.getString(1)+"</Empno>"+
    "<EmpName>"+rs.getString(2)+"</EmpName>"+
    "<Salary>"+rs.getString(3)+"</Salary>"+
    "<Comments>"+rs.getString(4)+"</Comments>"+
    "</AsynchBPELProcess1ProcessRequest>";
    out.println(xml1);
    nm.addPart("payload", xml1 );
    // EmployeeApprovalProcess is the BPEL process in which human task is implemented
    deliveryService.post("EmployeeApprovalProcess", "initiate", nm);
    // payload = res.getPayload();
    out.println( "BPELProcess CreditRatingService executed!<br>" );
    // out.println( "Credit Rating is " + payload.get("payload") );
    //Incase there is an exception while invoking the first server invoke the second server i.e lsgpas13.
    catch(Exception ee) {
    //("BPEL Server lsgpas14 invoking error.\n"+ee.toString());
    %>
    </body>
    </html>
    Its working fine.And i want it for Bulk approvals.please help me step by step procedure if any other way to implement this.

  • Urgent help with simple BPEL process

    Hello there,
    I need help with BPEL project.
    I'm new in JDeveloper&BPEL and i'd like to create process that we'll after sending employee ID return personal details of that employee.
    I did create application, BPEL project and connection to the database properly but somehow i can't deal input and output variable.
    Can someone please describe me step by step what i need to do, how to set up variable etc
    Thx,
    DI

    Me again. This time i hope i'll get some help :(
    Solution to my problem is change to the data-sources.xml and oc4j-ra.xml.
    Since i have database on same machine with BPEL PM Server that uses Olite DB when i tried to make changes i found in tutorials, here on forum and rest of internet
    BPEL PM Server just freeze, didn't start at all.
    Here are data-sources.xml, oc4j-ra.xml and DBAdapter wsdl file. Plz can someone make changes to those files i'll appreciate that.
    HOME\bpel\system\appserver\oc4j\j2ee\home\application-deployments\default\DbAdapter
    oc4j-ra.xml
    <?xml version="1.0"?>
    <oc4j-connector-factories xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.oracle.com/technology/oracleas/schema/oc4j-connector-factories-10_0.xsd" schema-major-version="10" schema-minor-version="0" >
         <imported-shared-libraries>
              <import-shared-library name="oracle.bpel.common"/>
              <import-shared-library name="oc4j.internal"/>
              <import-shared-library name="oracle.xml"/>
              <import-shared-library name="oracle.sqlj"/>
              <import-shared-library name="oracle.toplink"/>
              <import-shared-library name="oracle.jdbc"/>
         </imported-shared-libraries>
         <connector-factory location="eis/DB/DBConn_XE" connector-name="Database Adapter">
              <config-property name="xADataSourceName" value="jdbc/DBConn_XEDataSource"/>
              <config-property name="dataSourceName" value="loc/DBConn_XEDataSource"/>
              <config-property name="platformClassName" value="oracle.toplink.platform.database.Oracle9Platform"/>
              <config-property name="usesNativeSequencing" value="true"/>
              <config-property name="sequencePreallocationSize" value="50"/>
              <config-property name="defaultNChar" value="false"/>
              <config-property name="usesBatchWriting" value="true"/>
              <connection-pooling use="none">
              </connection-pooling>
              <security-config use="none">
              </security-config>
         </connector-factory>
         <connector-factory location="eis/DB/BPELSamples" connector-name="Database Adapter">
              <config-property name="xADataSourceName" value="jdbc/BPELSamplesDataSource"/>
              <config-property name="dataSourceName" value=""/>
              <config-property name="platformClassName" value="oracle.toplink.platform.database.Oracle9Platform"/>
              <config-property name="usesNativeSequencing" value="true"/>
              <config-property name="sequencePreallocationSize" value="50"/>
              <config-property name="defaultNChar" value="false"/>
              <config-property name="usesBatchWriting" value="false"/>
              <connection-pooling use="none">
              </connection-pooling>
              <security-config use="none">
              </security-config>
         </connector-factory>
    </oc4j-connector-factories>
    HOME \bpel\system\appserver\oc4j\j2ee\home\config
    data-sources.xml
    <?xml version="1.0" standalone='yes'?>
    <!DOCTYPE data-sources PUBLIC "Orion data-sources" "http://xmlns.oracle.com/ias/dtds/data-sources-9_04.dtd">
    <data-sources>
    <!-- Connection pool for oracle database -->
    <!--
    <connection-pool name="BPELPM_CONNECTION_POOL">
    <connection-factory factory-class="oracle.jdbc.OracleDriver"
    url="jdbc:oracle:thin:[username]/[password]@[hostname]:[port]:[sid]" />
    </connection-pool>
    -->
    <!-- Connection pool for oracle lite -->
    <connection-pool name="BPELPM_CONNECTION_POOL">
    <connection-factory factory-class="oracle.lite.poljdbc.POLJDBCDriver"
    user="system"
    password="manager"
    url="jdbc:[email protected]:1531:orabpel" />
    </connection-pool>
    <managed-data-source name="BPELServerDataSource"
    connection-pool-name="BPELPM_CONNECTION_POOL"
    jndi-name="jdbc/BPELServerDataSource" tx-level="global"/>
    <managed-data-source name="BPELServerDataSourceWorkflow"
    connection-pool-name="BPELPM_CONNECTION_POOL"
    jndi-name="jdbc/BPELServerDataSourceWorkflow" tx-level="local"/>
    <managed-data-source name="BPELSamplesDataSource"
    connection-pool-name="BPELPM_CONNECTION_POOL"
    jndi-name="jdbc/BPELSamplesDataSource" />
    </data-sources>
    DBAdapter wsdl file
    GetData_WS.wsdl
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions
    name="GetData_WS"
    targetNamespace="http://xmlns.oracle.com/pcbpel/adapter/db/GetData_WS/"
    xmlns:tns="http://xmlns.oracle.com/pcbpel/adapter/db/GetData_WS/"
    xmlns:plt="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
    xmlns:jca="http://xmlns.oracle.com/pcbpel/wsdl/jca/"
    xmlns:pc="http://xmlns.oracle.com/pcbpel/"
    xmlns:top="http://xmlns.oracle.com/pcbpel/adapter/db/top/GetDataWS"
    xmlns:hdr="http://xmlns.oracle.com/pcbpel/adapter/db/"
    xmlns="http://schemas.xmlsoap.org/wsdl/">
    <import namespace="http://xmlns.oracle.com/pcbpel/adapter/db/" location="DBAdapterOutboundHeader.wsdl"/>
    <types>
    <schema xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://xmlns.oracle.com/pcbpel/adapter/db/top/GetDataWS"
    schemaLocation="GetDataWS_table.xsd"/>
    </schema>
    </types>
    <message name="EmpDetailsViewCollection_msg">
    <part name="EmpDetailsViewCollection" element="top:EmpDetailsViewCollection"/>
    </message>
    <message name="GetData_WSSelect_EMP_ID_inparameters">
    <part name="GetData_WSSelect_EMP_ID_inparameters" element="top:GetData_WSSelect_EMP_IDInputParameters"/>
    </message>
    <portType name="GetData_WS_ptt">
    <operation name="GetData_WSSelect_EMP_ID">
    <input message="tns:GetData_WSSelect_EMP_ID_inparameters"/>
    <output message="tns:EmpDetailsViewCollection_msg"/>
    </operation>
    </portType>
    <binding name="GetData_WS_binding" type="tns:GetData_WS_ptt">
    <jca:binding />
    <operation name="GetData_WSSelect_EMP_ID">
    <jca:operation
    InteractionSpec="oracle.tip.adapter.db.DBReadInteractionSpec"
    DescriptorName="GetDataWS.EmpDetailsView"
    QueryName="GetData_WSSelect"
    ReturnSingleResultSet="false"
    MappingsMetaDataURL="GetDataWS_toplink_mappings.xml" />
    <input>
    <jca:header message="hdr:OutboundHeader_msg" part="outboundHeader"/>
    </input>
    </operation>
    </binding>
    <!-- Your runtime connection is declared in
    J2EE_HOME/application-deployments/default/DbAdapter/oc4j-ra.xml
    These 'mcf' properties here are from your design time connection and
    save you from having to edit that file and restart the application server
    if eis/DB/DBConn_XE is missing.
    These 'mcf' properties are safe to remove.
    -->
    <service name="GetData_WS">
    <port name="GetData_WS_pt" binding="tns:GetData_WS_binding">
    <jca:address location="eis/DB/DBConn_XE"
    UIConnectionName="DBConn_XE"
         ManagedConnectionFactory="oracle.tip.adapter.db.DBManagedConnectionFactory"
         mcf.DriverClassName="oracle.jdbc.OracleDriver"
    mcf.PlatformClassName="oracle.toplink.platform.database.oracle.OraclePlatform"
    mcf.ConnectionString="jdbc:oracle:thin:@localhost:1521:xe"
    mcf.UserName="hr"
    mcf.Password="62C32F70E98297522AD97E15439FAC0E"
    />
    </port>
    </service>
    <plt:partnerLinkType name="GetData_WS_plt" >
    <plt:role name="GetData_WS_role" >
    <plt:portType name="tns:GetData_WS_ptt" />
    </plt:role>
    </plt:partnerLinkType>
    </definitions>
    Thx,
    DI

  • Little bit of help with the duplication process needed

    Hi
    I trying to duplicate a database from one server to a remote server. They are both running windows server 2003 (my first problem) , the primary server is running oracle 11gR1 and the (hopefully) receiving server is running 11gR2(is that going to be a problem?) and I'm a little stuck on some parts of the process.
    The book I'm using says to edit the listener.ora file to include a SID_DESC of the remote database. Here is my listener.ora file with the modifications
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = test.host.local)(PORT = 1521))
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = CGARDMSTR)
    (ORACLE_HOME = G:\app\administrator\product\11.1.0\db_1)
    (PROGRAM = extproc)
    (SID_DESC =
    (GLOBAL_DBNAME = CGARDMSTR)
    (ORACLE_HOME =G:\app\administrator\product\11.1.0\db_1)
    (SID_NAME = CGARDMSTR)
    *(SID_DESC* *=*
    *(GLOBAL_DBNAME* *=* cgard)
    *(ORACLE_HOME* *=F:\oracle\product\11.2.0\dbhome_1)*
    *(SID_NAME* *=* cgard)
    (bold is what i added)
    it then said to chnage my tnsnames.ora
    CGARD =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = test.host.local)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = cgard)
    CGARD5DE =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = test.host.local)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = CGARD5DEV)
    CGARDMST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = test.host.local)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = CGARDMSTR)
    cgard =
    *(DESCRIPTION =*
    *(ADDRESS = (PROTOCOL = TCP)(HOST = live.host.local)(PORT = 1521))*
    *(CONNECT_DATA =*
    *(SERVER = DEDICATED)*
    *(SERVICE_NAME = cgard)*
    I changed the local domain to host for business reasons
    The next step was to create a initialization parameter file which I am guessing is a pfile and hopefully not a spfile. It then says to only enter one param db_name and the conversion params if the filesystem is diffrent. Problem is I don't know what to do with this file, if I am suppose to switch the second database to this file then surly I would need some more params? Anyway thats the first of many questions.
    When I try to run through the rman commands it describes it also trips up:
    RMAN> connect auxiliary sys/*********@live.host.local
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-04006: error from auxiliary database: ORA-12170: TNS:Connect timeout occurr
    ed
    The other database is up and connectable via sqldevloper so I'm guessing it was my configuration of listener and tnsnames
    Ok to reiterate my questions are:
    1) what needs to be in the pfile I create for the database thats going to receive the backup and what do I do with that file when I have made it?
    2) I am pretty sure my listener and tsunamis config is completely wrong so can I have some pointers on fixing that?
    3) Was the reason I could not connect to the receiving database my tns and listener config or is it something else?
    Quite a few other questions but untill I know some more about the above I doubt I will be able to ask properly.
    Also if this helps the book I am using is Expert Oracle Database 11g Administration and the page is 835(the method that begins on that page) and I am willing to write out the whole method if you need more details.
    Oh and if you havent figured it out I am very new to this so if some of this sounds very wrong or just stupid just say what I need to change and I will get right on it.
    Thanks
    Alex

    Ok so I have made some progress. Here is where I am currently at:
    RMAN> RUN
    2> {
    3> SET NEWNAME FOR DATAFILE 1 TO 'F:\oracle\oradata\cgard\file1.dbs';
    4> SET NEWNAME FOR DATAFILE 2 TO 'F:\oracle\oradata\cgard\file2.dbs';
    5> SET NEWNAME FOR DATAFILE 3 TO 'F:\oracle\oradata\cgard\file3.dbs';
    6> SET NEWNAME FOR DATAFILE 4 TO 'F:\oracle\oradata\cgard\file4.dbs';
    7> SET NEWNAME FOR DATAFILE 5 TO 'F:\oracle\oradata\cgard\file5.dbs';
    8> SET NEWNAME FOR TEMPFILE 1 TO 'F:\oracle\oradata\cgard\temp1.dbs';
    9> duplicate target database
    10> to cgard
    11> from active database
    12> pfile='F:\oracle\product\11.2.0\dbhome_1\database\initCGARD.ora';
    13> }
    executing command: SET NEWNAME
    starting full resync of recovery catalog
    full resync complete
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    Starting Duplicate Db at 19-NOV-10
    using channel ORA_AUX_DISK_1
    contents of Memory Script:
    set newname for datafile 1 to
    "F:\ORACLE\ORADATA\CGARD\FILE1.DBS";;
    set newname for datafile 2 to
    "F:\ORACLE\ORADATA\CGARD\FILE2.DBS";;
    set newname for datafile 3 to
    "F:\ORACLE\ORADATA\CGARD\FILE3.DBS";;
    set newname for datafile 4 to
    "F:\ORACLE\ORADATA\CGARD\FILE4.DBS";;
    set newname for datafile 5 to
    "F:\ORACLE\ORADATA\CGARD\FILE5.DBS";;
    backup as copy reuse
    datafile 1 auxiliary format
    "F:\ORACLE\ORADATA\CGARD\FILE1.DBS"; datafile
    2 auxiliary format
    "F:\ORACLE\ORADATA\CGARD\FILE2.DBS"; datafile
    3 auxiliary format
    "F:\ORACLE\ORADATA\CGARD\FILE3.DBS"; datafile
    4 auxiliary format
    "F:\ORACLE\ORADATA\CGARD\FILE4.DBS"; datafile
    5 auxiliary format
    "F:\ORACLE\ORADATA\CGARD\FILE5.DBS"; ;
    sql 'alter system archive log current';
    executing Memory Script
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    Starting backup at 19-NOV-10
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=143 device type=DISK
    channel ORA_DISK_1: starting datafile copy
    input datafile file number=00001 name=G:\APP\ADMINISTRATOR\ORADATA\CGARDMSTR\SYS
    TEM01.DBF
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 11/19/2010 16:23:
    52
    ORA-17629: Cannot connect to the remote database server
    ORA-17627: ORA-01017: invalid username/password; logon denied
    ORA-17629: Cannot connect to the remote database server
    continuing other job steps, job failed will not be re-run
    channel ORA_DISK_1: starting datafile copy
    input datafile file number=00004 name=G:\APP\ADMINISTRATOR\ORADATA\CGARDMSTR\USE
    RS01.DBF
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 11/19/2010 16:24:
    24
    ORA-17629: Cannot connect to the remote database server
    ORA-17627: ORA-01017: invalid username/password; logon denied
    ORA-17629: Cannot connect to the remote database server
    continuing other job steps, job failed will not be re-run
    channel ORA_DISK_1: starting datafile copy
    input datafile file number=00002 name=G:\APP\ADMINISTRATOR\ORADATA\CGARDMSTR\SYS
    AUX01.DBF
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 11/19/2010 16:24:
    43
    ORA-17629: Cannot connect to the remote database server
    ORA-17627: ORA-01017: invalid username/password; logon denied
    ORA-17629: Cannot connect to the remote database server
    continuing other job steps, job failed will not be re-run
    channel ORA_DISK_1: starting datafile copy
    input datafile file number=00003 name=G:\APP\ADMINISTRATOR\ORADATA\CGARDMSTR\UND
    OTBS01.DBF
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 11/19/2010 16:25:
    17
    ORA-17629: Cannot connect to the remote database server
    ORA-17627: ORA-01017: invalid username/password; logon denied
    ORA-17629: Cannot connect to the remote database server
    continuing other job steps, job failed will not be re-run
    channel ORA_DISK_1: starting datafile copy
    input datafile file number=00005 name=G:\APP\ADMINISTRATOR\ORADATA\CGARDMSTR\RMA
    N01.DBF
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 11/19/2010 16:25:55
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 11/19/2010 16:25:
    55
    ORA-17629: Cannot connect to the remote database server
    ORA-17627: ORA-01017: invalid username/password; logon denied
    ORA-17629: Cannot connect to the remote database server
    RMAN>
    I did issue the commands:
    C:\Documents and Settings\Administrator>rman target /
    Recovery Manager: Release 11.1.0.6.0 - Production on Fri Nov 19 13:55:40 2010
    Copyright (c) 1982, 2007, Oracle. All rights reserved.
    connected to target database: CGARDMST (DBID=3160500813)
    RMAN> connect catalog rman/rman
    connected to recovery catalog database
    RMAN> connect auxiliary sys/**********@cgard
    connected to auxiliary database: CGARD (not mounted)
    So I am not quite sure what it wants. I read somewhere about a password file but I don't understand how it will help, also most things I have looked at wernt clear on how to do it. I took a stab anyway:
    G:\app\administrator\product\11.1.0\db_1\BIN>orapwd file=orapwcgard password=*********** entries=20 ignorecase=n
    Was run on the original database host.
    File was then copied to "F:\oracle\product\11.2.0\dbhome_1\database" on the receiving database's host it was then renamed to PWDcgard.ora as there was file there already with that name.
    It did not help(same error).
    The book I am using mentions the 'PASSWORD FILE' param to be used with the duplicate command but I cant find a example on how to use it so any help with that would be great.
    Thanks for the effort so far guys its really appreciated.

  • Help With DVD ReAuthoring - Please...

    Hello all,
    So I have been trying to do research into this without much luck.
    I want to take a completed DVD, import it into DVD Studio Pro 4.1 and then reauthor it as to remove unwanted scenes, menu sections and buttons. I found a program on the windows side of things (intel based mac with boot camp helped) called DVDReMake Pro. This program allows me to do exactly what I have mentioned including exporting the changes to DVD format.
    What I am wondering is if it is possible to do this in DVD studio Pro 4.1 and if so how.
    In my search for this answer I have noticed that some users have had to convert files to certain formats or extract the dvd content a certain way.
    If someone wouldn't mind helping out and explaining this I would be more than happy to make a guide for future users wondering about this same issue.
    Thanks

    Hi Nigel - welcome to the discussions. Before you go down this route you need to be sure that you hold the copyright to the material, otherwise you won't get much help from this particular forum, I'm afraid!
    The process is fairly simple, but DVDSP is not an app to re-author a disc. You first need to get the footage out of your disc and do the editing on that.
    There are two basic levels you can go to - from a DVD you can extract the MPEG2 file and the associated audio. MPEG2 is not an easily editable format but you can do trims and splits in it as long as you are at the right point. You will not get frame accurate editing. The benefit is that you are not affecting the quality of the original footage.
    The second level is to take the extracted MPEG and convert it to something like DV. Of course, there is a quality loss when you do so, but you can at least edit the footage as you want. The quality loss is most obvious when you then try to re-encode to MPEG2 (which you need to do if you are putting it back on a DVD). There are several Mac apps that can extract the footage off a disc, and some that will extract directly to DV. DVDxDV is one, but there are others, including Cinematize. Check version tracker.
    Finally, there are apps that allow you to replace files inside the VIDEO_TS folder directly and make all kinds of structural changes to the disc. To do this you'll need to have a replacement set of files, typically created using a tool like DVDSP, to replace the ones you are removing. Have a look at http://www.dvdafteredit.com for one such example.

  • Help with DVD Studio Pro Audio Track/Commentary Track

    Hi Everyone -
    I am authoring my first DVD for a film.  I believe I have everything under control - menus, chapter selections, bonus features - except for the director's commentary.
    I have created 2 main menus - one with a button to turn commentary on, another menu with a button to turn commentary off.
    They work fine.
    But when I simulate the DVD, select commentary ON, play movie (commentary track plays) ... Then click the MENU button, it returns to the main menu with the button to turn commentary ON, but the commentary audio track (audio track 2) is still activated at this point.
    Is it possible to tell it to return to audio track 1 if the menu button is pressed, or tell it to go to "main menu 2" if the menu button is pressed?
    I hope my question is clear.
    Thank you.
    Joe G.
    Houston TX

    Each track and story has its own end jump and its own Remote Control selection. If I understand your problem correctly, changing the Remote Control>Menu (in the Inspector window) from Same as Disk to the appropriate Menu should fix the problem.
    If not, a more complete explanation would help.

  • Need an expert to help with DVD Player app crashing

    I'm not sure why, but my DVD Player app won't launch. I don't think I added anything new that would cause this change. I tried restarting, repairing permissions, but beyond this I'm not sure where to go next. Can anyone make heads or tails from this and offer a suggestion?
    Date/Time: 2007-02-08 01:45:39.498 -0800
    OS Version: 10.4.8 (Build 8L127)
    Report Version: 4
    Command: DVD Player
    Path: /Applications/DVD Player.app/Contents/MacOS/DVD Player
    Parent: WindowServer [94]
    Version: 5.0 (5.0)
    Build Version: 42
    Project Name: DVDPlayer
    Source Version: 50000112
    PID: 394
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 <<00000000>> 0x00000000 0 + 0
    1 com.apple.DVDPlayer 0x00087c14 0x1000 + 551956
    2 com.apple.DVDPlayer 0x00086a24 0x1000 + 547364
    3 com.apple.DVDPlayer 0x0005c19c 0x1000 + 373148
    4 com.apple.DVDPlayer 0x00060adc 0x1000 + 391900
    5 com.apple.DVDPlayer 0x0003f5b4 0x1000 + 255412
    6 com.apple.DVDPlayer 0x0003ffbc 0x1000 + 257980
    7 com.apple.HIToolbox 0x93204554 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    8 com.apple.HIToolbox 0x93203cac SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    9 com.apple.HIToolbox 0x93203b28 SendEventToEventTargetWithOptions + 40
    10 com.apple.HIToolbox 0x9322f0fc HIView::SendDraw(short, OpaqueGrafPtr*, __HIShape const*, CGContext*) + 396
    11 com.apple.HIToolbox 0x9338f7b8 HIView::RecursiveDrawComposited(__HIShape const*, unsigned long, HIView*, CGContext*, unsigned char) + 548
    12 com.apple.HIToolbox 0x9338f8d8 HIView::RecursiveDrawComposited(__HIShape const*, unsigned long, HIView*, CGContext*, unsigned char) + 836
    13 com.apple.HIToolbox 0x9338f8d8 HIView::RecursiveDrawComposited(__HIShape const*, unsigned long, HIView*, CGContext*, unsigned char) + 836
    14 com.apple.HIToolbox 0x9338f538 HIView::DrawComposited(short, OpaqueGrafPtr*, __HIShape const*, unsigned long, HIView*, CGContext*) + 576
    15 com.apple.HIToolbox 0x9321ecbc UpdateWindowVisibility(VisChangeState*) + 340
    16 com.apple.HIToolbox 0x9321ead0 _ShowHideWindows + 160
    17 com.apple.HIToolbox 0x9321ea20 ShowHide + 36
    18 com.apple.DVDPlayer 0x00021404 0x1000 + 132100
    19 com.apple.DVDPlayer 0x00077270 0x1000 + 483952
    20 com.apple.DVDPlayer 0x00077198 0x1000 + 483736
    21 com.apple.DVDPlayer 0x00051860 0x1000 + 329824
    22 com.apple.CoreFoundation 0x907f0550 __CFRunLoopDoTimer + 184
    23 com.apple.CoreFoundation 0x907dcec8 __CFRunLoopRun + 1680
    24 com.apple.CoreFoundation 0x907dc47c CFRunLoopRunSpecific + 268
    25 com.apple.HIToolbox 0x93205740 RunCurrentEventLoopInMode + 264
    26 com.apple.HIToolbox 0x93204dd4 ReceiveNextEventCommon + 380
    27 com.apple.HIToolbox 0x93249ee4 AcquireNextEventInMode + 72
    28 com.apple.HIToolbox 0x93249cd4 RunApplicationEventLoop + 132
    29 com.apple.DVDPlayer 0x000795ec 0x1000 + 493036
    30 com.apple.DVDPlayer 0x0001e184 0x1000 + 119172
    31 com.apple.DVDPlayer 0x0001e200 0x1000 + 119296
    32 com.apple.DVDPlayer 0x0000841c 0x1000 + 29724
    33 com.apple.DVDPlayer 0x00008120 0x1000 + 28960
    Thread 1:
    0 libSystem.B.dylib 0x9002bcb8 semaphorewaittrap + 8
    1 com.apple.dvdplayback 0x97ca9b30 DVDDispose + 600896
    2 com.apple.dvdplayback 0x97c3850c DVDDispose + 136476
    3 com.apple.dvdplayback 0x97caa000 DVDDispose + 602128
    4 libSystem.B.dylib 0x9002b508 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x90054ae8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90054944 pthreadcondtimedwait + 676
    2 com.apple.dvdplayback 0x97d19348 DVDCopyBuildVersion + 402576
    3 com.apple.dvdplayback 0x97d173a8 DVDCopyBuildVersion + 394480
    4 com.apple.dvdplayback 0x97d196ec DVDCopyBuildVersion + 403508
    5 com.apple.dvdplayback 0x97caa000 DVDDispose + 602128
    6 libSystem.B.dylib 0x9002b508 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000ab48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000aa9c mach_msg + 60
    2 com.apple.CoreFoundation 0x907dcb78 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dc47c CFRunLoopRunSpecific + 268
    4 com.apple.audio.CoreAudio 0x9145663c HALRunLoop::OwnThread(void*) + 264
    5 com.apple.audio.CoreAudio 0x914563dc CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x9002b508 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9002bcb8 semaphorewaittrap + 8
    1 com.apple.dvdplayback 0x97ca9b30 DVDDispose + 600896
    2 com.apple.dvdplayback 0x97c37298 DVDDispose + 131752
    3 com.apple.dvdplayback 0x97c5b888 DVDDispose + 280728
    4 com.apple.dvdplayback 0x97caa000 DVDDispose + 602128
    5 libSystem.B.dylib 0x9002b508 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x0000000000000000 srr1: 0x000000004200f030 vrsave: 0x0000000000000000
    cr: 0x44022242 xer: 0x0000000000000004 lr: 0x00000000000240ec ctr: 0x0000000000000000
    r0: 0x00000000000240ec r1: 0x00000000bfffe840 r2: 0x000000000000019c r3: 0x000000000054ef30
    r4: 0x0000000000000000 r5: 0x0000000041c80000 r6: 0x0000000044200000 r7: 0x0000000043f00000
    r8: 0x0000000044200000 r9: 0x0000000000000000 r10: 0x0000000000000019 r11: 0x0000000044022248
    r12: 0x0000000000000000 r13: 0x0000000000000002 r14: 0x0000000000000000 r15: 0x00000000a32042b8
    r16: 0x0000000000530cc0 r17: 0x00000000bfffec10 r18: 0x00000000636e746c r19: 0x0000000000000004
    r20: 0x00000000005764e0 r21: 0x00000000ffffd96e r22: 0x0000000000000000 r23: 0x00000000bfffed60
    r24: 0x0000000000000000 r25: 0x00000000bfffec10 r26: 0x0000000000000000 r27: 0x0000000000000000
    r28: 0x000000000057aff0 r29: 0x00000000018bca00 r30: 0x00000000bfffe92c r31: 0x000000000054ee90
    Binary Images Description:
    0x1000 - 0x23dfff com.apple.DVDPlayer 5.0 /Applications/DVD Player.app/Contents/MacOS/DVD Player
    0x42ae000 - 0x42affff com.apple.aoa.halplugin 2.5.6 (2.5.6b5) /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0x42f3000 - 0x435bfff com.DivXInc.DivXDecoder 6.4.0 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x4368000 - 0x43dcfff net.sourceforge.webcam-osx.common 0.8.8 /Library/QuickTime/macam.component/Contents/MacOS/macam
    0x4de4000 - 0x4e0efff com.apple.iSightAudio 7.1.3 /Library/Audio/Plug-Ins/HAL/iSightAudio.plugin/Contents/MacOS/iSightAudio
    0x55e5000 - 0x5650fff com.apple.AppleVADriver 2.4.26 /System/Library/Extensions/AppleVADriver.bundle/Contents/MacOS/AppleVADriver
    0x5701000 - 0x5810fff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x583f000 - 0x58a7fff com.apple.ATIRage128GLDriver 1.4.4 (4.0.4) /System/Library/Extensions/ATIRage128GLDriver.bundle/Contents/MacOS/ATIRage128G LDriver
    0x58ab000 - 0x58c4fff GLDriver /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x58ca000 - 0x58e5fff GLRendererFloat /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x70000000 - 0x700fcfff com.apple.audio.units.Components 1.4.3 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe51fff dyld 45.3 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072dfff com.apple.CoreGraphics 1.258.38 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907ba000 - 0x90893fff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908dc000 - 0x908dcfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908de000 - 0x909e0fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3a000 - 0x90abefff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae8000 - 0x90b5afff IOKit /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b70000 - 0x90b82fff libauto.dylib /usr/lib/libauto.dylib
    0x90b89000 - 0x90e60fff com.apple.CoreServices.CarbonCore 681.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec6000 - 0x90f46fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f90000 - 0x90fd1fff com.apple.CFNetwork 129.19 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe6000 - 0x90ffefff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100e000 - 0x9108ffff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d5000 - 0x910fefff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9110f000 - 0x9111dfff libz.1.dylib /usr/lib/libz.1.dylib
    0x91120000 - 0x912dbfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913da000 - 0x913e3fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ea000 - 0x91412fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91425000 - 0x91430fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91435000 - 0x9143dfff libbsm.dylib /usr/lib/libbsm.dylib
    0x91441000 - 0x914bcfff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914f9000 - 0x914f9fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fb000 - 0x91533fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9154e000 - 0x9161bfff com.apple.ColorSync 4.4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91670000 - 0x91701fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91748000 - 0x917fffff com.apple.QD 3.10.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9183c000 - 0x9189afff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918c9000 - 0x918eafff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918fe000 - 0x91923fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91936000 - 0x91978fff com.apple.LaunchServices 181 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91994000 - 0x919a8fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919b6000 - 0x919f8fff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a0e000 - 0x91ad5fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b23000 - 0x91b38fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b3d000 - 0x91b5bfff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b61000 - 0x91bd0fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91be7000 - 0x91bebfff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91bed000 - 0x91c4cfff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91c51000 - 0x91c8efff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c95000 - 0x91caefff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91cb3000 - 0x91cb6fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91cb8000 - 0x91cb8fff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91cba000 - 0x91d9ffff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91da7000 - 0x91dc6fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91e32000 - 0x91ea0fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91eab000 - 0x91f40fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91f5a000 - 0x924e2fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92515000 - 0x92840fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92870000 - 0x928f8fff com.apple.DesktopServices 1.3.5 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92939000 - 0x92b64fff com.apple.Foundation 6.4.6 (567.27) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92c82000 - 0x92d60fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92d80000 - 0x92e6efff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92e80000 - 0x92e9efff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92ea9000 - 0x92f03fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92f21000 - 0x92f21fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92f23000 - 0x92f37fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92f4f000 - 0x92f5ffff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92f6b000 - 0x92f80fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92f92000 - 0x93019fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9302d000 - 0x93038fff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93042000 - 0x9306ffff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93089000 - 0x93098fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x930a4000 - 0x9310afff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9313b000 - 0x9318afff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x931b8000 - 0x931d5fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x931e7000 - 0x931f4fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x931fd000 - 0x9350afff com.apple.HIToolbox 1.4.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93659000 - 0x93665fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x936dd000 - 0x936ddfff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x936df000 - 0x93d12fff com.apple.AppKit 6.4.7 (824.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9409f000 - 0x9410ffff com.apple.CoreData 80 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94148000 - 0x9420bfff com.apple.audio.toolbox.AudioToolbox 1.4.3 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9425d000 - 0x9425dfff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9425f000 - 0x94432fff com.apple.QuartzCore 1.4.9 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94488000 - 0x944c5fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x944cd000 - 0x9451dfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x946c1000 - 0x946d0fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x946d8000 - 0x946e5fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9472b000 - 0x94744fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9474b000 - 0x94a1afff com.apple.QuickTime 7.1.3 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94add000 - 0x94b4efff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94bc1000 - 0x94be2fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x96ddd000 - 0x96de0fff com.apple.VSP.framework 2.2 /System/Library/PrivateFrameworks/VSP.framework/VSP
    0x96f1f000 - 0x96f3efff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97655000 - 0x97716fff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x97741000 - 0x97742fff libGLSystem.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x97744000 - 0x97751fff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9785a000 - 0x97875fff com.apple.AppleVAFramework 2.4.26 /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x97a96000 - 0x97aa0fff com.apple.DVDFramework 3.6 (3.6.0) /System/Library/PrivateFrameworks/DVD.framework/DVD
    0x97c13000 - 0x97dfafff com.apple.dvdplayback 4.6.9 (4690) /System/Library/Frameworks/DVDPlayback.framework/Versions/A/DVDPlayback
    0x98bf7000 - 0x995aefff com.apple.QuickTimeComponents.component 7.1.3 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    Model: PowerMac3,1, BootROM 3.2.4f1, 2 processors, PowerPC G4 (2.9), 500 MHz, 1.06 GB
    Graphics: ATY,Rage128Pro, ATY,Rage128Pro, AGP, 16 MB
    Memory Module: DIMM0/J21, 256 MB, SDRAM, PC133-333
    Memory Module: DIMM1/J22, 64 MB, SDRAM, PC100-322S
    Memory Module: DIMM2/J23, 256 MB, SDRAM, PC133-333
    Memory Module: DIMM3/J24, 512 MB, SDRAM, PC100-322S
    Network Service: Built-in Ethernet, Ethernet, en0
    PCI Card: usb, usb, SLOT-B
    PCI Card: usb, usb, SLOT-B
    PCI Card: pci1799,2, , SLOT-B
    PCI Card: usb, usb, SLOT-C
    Parallel ATA Device: IBM-DTLA-307045, 38.17 GB
    Parallel ATA Device: WDC WD1600JB-22REA0, 149.05 GB
    Parallel ATA Device: PIONEER DVD-RW DVR-111D,
    Parallel ATA Device: IOMEGA ZIP 100 ATAPI,
    USB Device: Silicon Media R/W, Sony, Up to 480 Mb/sec, 500 mA
    USB Device: External HDD, Western Digital, Up to 480 Mb/sec, 500 mA
    USB Device: Hub, , Up to 12 Mb/sec, 500 mA
    USB Device: Microsoft Wireless Optical Desktop® 2.20, Microsft, Up to 1.5 Mb/sec, 500 mA
    FireWire Device: iSight, Apple Computer, Inc., Up to 400 Mb/sec
    G4 Dual 550   Mac OS X (10.4.8)   1.2 GB RAM, 380 GB Storage, DVD Burner/Handy Slide-Out Cup Holder, USB2, TV Tune

    Tried deleting the com.apple.DVDPlayer.plist preferences (found it in three different locations and trashed them all. Still no luck getting the DVD olayer to launch. Crashes immediately. Unfortunately, I have no idea what this is:
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Any other suggestions would be great! I just don't know how to read these crash logs and am hoping someone who speaks that language could be of help. Anxiously awaiting a reply...
    Gary
    G4 Dual 550   Mac OS X (10.4.8)   1.2 GB RAM, 380 GB Storage, DVD Burner/Handy Slide-Out Cup Holder, USB2, TV Tune
    G4 Dual 550   Mac OS X (10.4.8)   1.2 GB RAM, 380 GB Storage, DVD Burner/Handy Slide-Out Cup Holder, USB2, TV Tune
    G4 Dual 550   Mac OS X (10.4.8)   1.2 GB RAM, 380 GB Storage, DVD Burner/Handy Slide-Out Cup Holder, USB2, TV Tune

  • Need some help with a Business Process monitor PPO Collector

    We have one particular monitor that won't return any value, consistently gray.
    Monitoring scenario is Shopping Cart/PPO process - we have cases where Shopping carts fail to create purchase orders in our ECC system.
    We can see the errors, and have created a monitor with a threshold of '1" just to try to trigger the alert.
    Process being monitored is PURORD006, monitor object is boppocol
    Configuration is generated and activated, there are no errors in SLG1.  Monitor runs every 5 minutes.  There are no config errors showing anywhere, and there are no authorization errors for any users.
    There are a few red extractors, but they're all workload/e2e related, not BPMON.  Agents are green.
    Solman is 7.1 Sp12, newly upgraded, all Managed system config/techmon/bpm config clean and green .  This also did not work in our previous SP10 incarnation.
    Does not matter which ECC system we configure for this, they all act the same way, no metric.  Like there's something fundamentally incorrect with our setup or we aren't understanding how this particular monitor works.  We have other BPM monitors that work just fine, so it's not a complete config failure, just this one particular one.
    ECC system has st-pi  2008-1-700 10
    st-a/pi is 01R_700
    System is not allowing me to embed screenshots..  grr.....  attached screen shots.
    Any help appreciated.
    Thanks.
    Bernie

    First of all, if you have IT resources inhouse (or even external) consider asking them.
    Also having a backup of the old db would be my recomandation, also check first if there
    is data inside which you might want to export as long as the old tms is up and running.
    There are a lot of different permissions settings which could grant you access to everything, but
    stop you from dropping / deleting the old db.
    You can drop a database in different ways, gui, command line,...
    This is more a Microsoft SQL than a TMS question.
    For more info I would recomend to check the Microsoft sites (and forums) or google.
    Like this article here: "Deleting a Database"
    http://technet.microsoft.com/en-us/library/ms189278(v=sql.105).aspx

  • Need Help with DVD recorder (HDMI) to record off DVR

    I purchased a philips dvd recorder a few years ago and need  help in setting up to record my DVR program recordings. The philips user manual is not very helpful being I'm trying to set-up with just using HDMI cables.  I have a HDTV (Vizio) with a HDMI port; a DVD recorder with HDMI port and my Verizon set-top box have a HDMI port.  How do i get it all to work and be able to record/copy programs from DVR to my DVD recorder?   Do anyone have suggestions on how to set up wiring.  Thanks.
    Solved!
    Go to Solution.

    First keep in mind that DVD is not an HD format, so you will not be able to record HD shows in HD; they will be in letterboxed 4:3.
    The FiOS STB only has one HDMI (out) port. Therefore, you will need to use some other output from the STB to the DVD recorder. Component, or even composite/RCA, because it's not going to record in HD anyway to DVD, will work just fine. Then you want to set your DVD player to whatever input you used to connect from the STB; i.e. mine uses "Input 1" for my composite connection.
    If you turn on your STB and DVD, this will record whatever the STB is outputting to a DVD if you press record on the DVD recorder. This includes all of the program menus and any other on-screen graphics on the STB, and this means you cannot change the channel if you are recording from your STB. You can shut your TV off, but you will not be able to watch another show while recording one to DVD.
    Your DVD player might give you an HDCP message at first when the recording starts if it's getting an HD input, but that should go away after a few seconds, at least for my Panasonic DVD recorder with a composite connection.

  • New to Mac. Help with DVD please?

    I just got my new MacBook... first time with mac. Can someone tell me how to save a dvd onto the computer? I have 120G hard drive. I was wondering how much memory does each movie take up? I am going to Europe and would like to download about 6 movies so I don't have to take them with me. Is this possible?
    Thanks for any help!

    Sure it's possible.You have plenty of room for 6 movies.Most movies are about 4.5-7 GB's
    Here's the software you'll need.---> http://www.flip4mac.com/drivein.htm
    Enjoy you're trip.
    Jim
    PowerBook G3 500 Mhz "Pismo"/ 2.0Ghz BlackBook 2GB OWC RAM   Mac OS X (10.4.9)  

  • Help with Flash Export Process:

    Hi all.
    I'm using Flash CC on a Windows 8 system. The specs are i7-3770, 12GB RAM, 128GB SSD, etc.
    When we create flash animations, we look at the SWF and it looks fantastic. 
    YouTube unfortunately doesn't accept SWF as a valid file type.
    This is where things start to get hairy.
    Someone suggested I export PNGs as a sequence along with the audio and then add these to a program such as Adobe Premiere or After Effects.
    Is it normal for a 5 minute animation @ 30fps to take nearly 5 hours to export the PNGs?
    I'd like to think my system is strong enough to do it a bit quicker than this.
    FYI - Flash CC no longer has the ability to export as a PNG sequence (Flash Pro CS6 still has it).
    I tried using export > video in Flash CC to generate an MOV.  This creates an MOV that is 12GB+.
    I can't believe a 5 minute MOV could even become that large.  I then use the Adobe Media Encoder to compress the MOV into an MP4.  This works no problem but no matter what settings I try, the colors don't seem as vivid as the SWF.
    Everything has this slight dullness to it and I can't figure out why.  Both the MOV with the huge file size and the compressed MP4 lack the vividness in color the SWF has.
    Can anyone here share with me the export process they use for an HD animation that can be uploaded to YouTube?
    Any help would be appreciated.
    Thanks,
    Sean

    I used whatever the default settings would be as this was a fresh install of Flash CC.  I didn't make any adjustments. I just click FILE > EXPORT > EXPORT VIDEO
    It made an MOV on my Desktop.
    I'm home now and have checked some things and this is what I'm finding.
    When you are in Flash CC and click FILE > EXPORT > EXPORT VIDEO and choose a path, an MOV is made that is gigantic.  This gigantic file actually looks like it's supposed to.
    It's when I convert the MOV to MP4 where the colors become washed out.
    You can see it in the examples attached.
    One is washed out (b) and the other isn't (a). 
    The washed out one was converted from MOV to MP4 using Adobe Media Encoder CC with the "Match Source - High Bitrate" preset.
    How can I get the MP4 to come out with the same colors as the MOV?

  • Will the ATI Radeon 3870 help with my photo processing?

    I have a Quad 2.66 Mac Pro with 7Gb of RAM and about 3Tb of HD space. It also has the stock NVidia GeForce 7300GT video card in it (256Mb VRAM). Over the past 6 weeks or so, I've noticed that general photo processing functions in Lightroom and Photoshop have started to crawl (I use LR 2.2 and PS CS4 on 10.5.6). Simple tasks as switching from one image to another or going applying relatively light filters cause the spinning ball to appear for upwards of 20 seconds. This never used to happen.
    Full disclaimer: I have started processing RAW images taken with my Canon 5D Mark II which are around 25Mb a pop and doing heavy HDR work that creates 400-500mb TIFF files. Also, my current video card is driving a Dell 30" LCD and a Dell 24" LCD.
    I was hoping to be able to breathe new life into this Mac Pro until Apple released a refresh to the line (which I assume will be within the next few months as it is due for an update).
    So, my question is: should I expect a performance jump by upgrading the video card to the 3870? I am seeing a lot of comments re: fan noise but I'd be willing to put up with it if I can see a marked performance boost.
    Thanks for your help, everyone!
    Brian

    I would try a couple things:
    Upgrade RAM to 4 x 2GB plus (maybe 4 x 1GB from what you have) for 12GB.
    Scratch disk with Spotlight disabled, using a couple drives dedicated stipped RAID.
    Pull the 7300GT for now, maybe replace it with ATI Radeon 2600.
    http://www.barefeats.com/harper16.html
    The benefit of the 3870 is there, but maybe not in ways you wanted or expect (and until GPGPU and other features come to CS4/5 and Snow Leopard).
    http://www.macrumors.com/2008/06/15/snow-leopards-grand-central-and-opencl-detai ls/
    http://kb.adobe.com/selfservice/viewContent.do?externalId=kb405745&sliceId=2
    http://www.adobe.com/go/kb401089
    http://homepage.mac.com/boots911/.Public/PhotoshopAccelerationBasics2.4W.pdf
    http://macperformanceguide.com/OptimizingPhotoshop-Configuration.html

  • Help with an Automator Process

    Hello, my name is Mike and this is actually my first post regarding Automator. I am trying to accomplish something that will make my day a whole lot easier but I am having trouble because it is a rather tedious workflow. Ok, here is what I am trying to accomplish...I deal with a company that emails me over "work order" as an .htm attachment, I have to manually open this email and print every attachment. What i would like to do is have the email from this company filtered down, download the attachment to a file so it can be printed and then mark the email as read so when the next time I run this workflow it will only get the the unread mail and the process goes on. Here is what I have so far....
    1-get specified mail items
    2-display mail messages
    3-filter mail messages
    4-get attachments from mail messages
    5-get folder contents
    6-open finder items
    That is the current workflow as it sits... some of the pitfalls I am running into is that the file is a .htm and must open with Safari. Next how can I create a script to delete the items from the designated folder as well as mark the ones in the inbox read ? Oh and sometimes when I run the current workflow i get the number of attachments in individual pages of Safari and sometimes it only wants to open the first attachment only.If anyone can give me some input with this it would be appreciated..
    Thanks,
    Mike Awad

    Have you looked into using the rules in Mail? In Mail's preferences (File > Preferences...) there is section for creating rules. One of the things you can have a rule do is run an AppleScript, and another thing you can do is have the messages marked as read.
    Unfortunately, I haven't had any luck getting an Automator workflow or application to work with the rules. However, if you prefer to use a workflow (saved as an application) instead of AppleScript, you can use the same workaround used by Folder Actions. Simply have the rule run an AppleScript which opens the workflow you saved as an application. Open Script Editor and create a new script with the following:
    using terms from application "Mail"
    on perform mail action with messages these_messages
    tell application "/Users/yourName/Documents/use for a mail rule.app"
    open these_messages
    end tell
    end perform mail action with messages
    end using terms from
    The easiest way to get the path to your workflow (saved as an application) is to delete everything between the double quotes "" and then drag and drop the file between the double quotes "". After you save the script, create a rule in Mail that will open this script. When you get new mail and a message matches the conditions to the rule, it will run this script which will in turn run the workflow you saved as an application from Automator.
    With a Mail rule, you can add another action to mark the messages as read, though that's not really necessary since being unread doesn't have to be one of the conditions to match the message. Since the rules are automatically applied when you get new mail messages, it won't bother with any of your old mail. With that said, you can select any messages in Mail and choose to apply rules to them using the command in the Message menu (or the contextual menu from right-clicking).
    It may turn out that'll you'll use more AppleScript, either within the workflow using Automator's "Run AppleScript" action, or perhaps by not using Automator at all. With Script Editor, you can open Mail's dictionary and discover what else can be done with Mail. Sorry, I didn't really have much time, but I hope this helps you figure out how you want to approach it. I think using the Mail rules will make it much more automated for you since they work immediately when your email is checked.

  • Help with dvd drive - region code error

    Hi, I really need to change the drive region code on my Ibook G4 (OS X 10.4.10) back to Region 2. I'm allowed to change it one last time.
    But the trouble is, when I try and change it and click 'set drive region' it just comes up with an error message -70001, 'There was a problem changing the drive region code.'
    I've reset the PMU and PRAM/NVRAM but it still does it.
    Can anybody help me at all? It's driving me mad, I was banking on being able to change it back to my Region one last time...

    Insert a DVD which is set to play in only one region; if you try using up your last change with a DVD that can play in some but not all regions, that error message will appear. Many DVDs which are set to play in region 2 will also play in region 4.
    (23521)

Maybe you are looking for

  • Web Analysis report migrtation

    Hi Experts, i need to migrate Web Analysis report from 7.x to 9.x here we are having reports on 7.x which is hosting on windows server and we want to migratedreports from 7.x to 9.x which is hosting on Linux, both the servers are residing on differ.

  • Problems with connecting to MacOS X Snow Leopard Server using SSL

    I can successfully connect to my SL mail server if I do not enable SSL, but if I do enable SSL the iPhone mail client just fails to connect with a message "Cannot Get Mail - The connection to the server "servername" failed". I have set SSL to ON in M

  • Xorg or Xfree 4.4?

    I want to update the X server, but i cant decide on which to go, as Arch hasnt taken an official position i think... I want to go with Xorg, but i dont know how this is working, what are the real differences and if there will be any kind of incompati

  • How Do I tile SQL Worksheets in SQL Developer 3.2.2

    I've spent an hour trying to figure out how to tile SQL worksheet windows in SQL Developer 3.2.2. Help! Am I stupid or is it possible? Thanks Jamie

  • Find/Change function

    I used the Find/Change function to change a particular word's format from "regular" to "bold" and within a numbered list where the Find/Change function applied, it changed the font of the number to a different font not used anywhere in the document.