Converting a multitude of formats for a production

We have a pile of clips on a multitude of disks that need to be converted so we can edit them in FCP. Now these clips won't be longer than a few seconds a piece but the disks all come on different formats,ie: . VOB, .BUP, . IFO, .wma, .wmv, .MPG,.....etc.. (some audio clips too..)
We just purchased Quick Time Pro 7 and are going to try and save them all as mp3s so we can split the audio and video tracks in FCP. Is this the best way to do this?

the audios MP3, the video MPGs,...will that work?
No. Audio as AIFF and video as something editable.
The specific video format depends upon the output.
• If you are headed to DVD, you'll want something like DV/NTSC.
• If you plan on much compositing, DV50 or ProRes at Standard definition size would be a better choice.
x

Similar Messages

  • Converting Year in YYYY format for return in select list

    Using Apex 4.1.1 on Linux (Apex Listener on glassfish)
    I have a table with week ending dates and use this table for as my LOV.
    The select list comes up like 12-SEP-12 when I check the value attribute in Firebug. Problem is that this comes up as year 0012 instead of 2012 when I try to use it in my PL SQL code to save it to a table.
    Is there a way I can get the return value for the year in YYYY format for return value in select list? Have tried to_date(dt, 'DD-MON-YYYY') with no luck.
    Cheers.

    All APEX session state values are held as VARCHAR2s. Explicit conversion to and from DATE values using specified formats is recommended. Convert to VARCHAR2 in the LOV query:
    select to_char(week_ending, 'DD-MON-YYYY') l, to_char(week_ending, 'YYYY-MM-DD') v from ...and to DATE in the PL/SQL process code:
    ...to_date(:p1_week_ending, 'YYYY-MM-DD')...I'm trying to standardise on using ISO 8601 representations for non-displayed date values. These are unambiguous, sort properly using character semantics, and are compatible with other systems and technologies.

  • Convert payslip to PDF format  , for e-mailing to employees

    HI with respect to my previous post 'Salary slip delivery thru email'
    I have been able to send the email out in the html format. I want the employee to recieve the mail in the PDF format. I would like your assistance on this.
    Here is the code.
    tables: PV000,
    T549Q,
    PA0001,
    V_T514D,
    HRPY_RGDIR,
    PA0002,
    PA0105.
    data: begin of ITAB occurs 0,
    MTEXT(25) type C,
    PERNR like PA0001-PERNR,
    ABKRS like PA0001-ABKRS,
    ENAME like PA0001-ENAME,
    USRID_LONG like PA0105-USRID_LONG,
    end of ITAB.
    data: W_BEGDA like HRPY_RGDIR-FPBEG,
          W_ENDDA like HRPY_RGDIR-FPEND.
    data: RETURN like BAPIRETURN1 occurs 0 with header line.
    data: P_INFO like PC407,
    P_FORM like PC408 occurs 0 with header line,
    P_P_FORM like PC408 occurs 0 with header line.
    data: P_IDX type I,
    MY_MONTH type T549Q-PABRP,
    STR_MY_MONTH(2) type C,
    MY_YEAR type T549Q-PABRJ,
    STR_MY_YEAR(4) type C.
    data: W_CMONTH(10) type C.
    data: TAB_LINES type I,
    ATT_TYPE like SOODK-OBJTP.
    data: begin of P_INDEX occurs 0,
    INDEX type I,
    end of P_INDEX.
    constants:
    begin of F__LTYPE, "type of line
    CMD like PC408-LTYPE value '/:', "command
    TXT like PC408-LTYPE value 's', "textline
    end of F__LTYPE.
    constants:
    begin of F__CMD, "commands
    NEWPAGE like PC408-LINDA value '<NEW-PAGE>',
    end of F__CMD.
    data: P_LIST like ABAPLIST occurs 1 with header line.
    data: OBJBIN like SOLISTI1 occurs 10 with header line,
    DOCDATA like SODOCCHGI1,
    OBJTXT like SOLISTI1 occurs 10 with header line,
    OBJPACK like SOPCKLSTI1 occurs 1 with header line,
    RECLIST like SOMLRECI1 occurs 1 with header line,
    OBJHEAD like SOLISTI1 occurs 1 with header line.
    INITIALIZATION *
    initialization.
    OBJBIN = ' | '.
    append OBJBIN.
    OBJPACK-HEAD_START = 1.
    SELECTION SCREEN *
    selection-screen begin of block BL1.
    parameters: S_ABKRS like PV000-ABKRS obligatory default 'ZA'.
    parameters: S_PERMO like T549Q-PABRP obligatory default '02'.
    parameters: S_PABRP like T549Q-PABRP obligatory.
    parameters: S_PABRJ like T549Q-PABRJ obligatory.
    select-options: S_PERNR for PA0001-PERNR.
    select-options: S_ORGEH for PA0001-ORGEH.
    parameters: PAY_VAR like BAPI7004-PAYSLIP_VARIANT default
    'ESS_PAYSLIPS' obligatory.
    selection-screen end of block BL1.
    AT SELECTION-SCREEN *
    at selection-screen.
    if SY-UCOMM ='ONLI'.
    if S_PABRP > 24 or S_PABRP < 1.
    message E999(YHR) with 'Improper Payroll Period'.
    endif.
    if S_PABRP > 9.
    MY_MONTH = S_PABRP - 10 + 1.
    STR_MY_MONTH = MY_MONTH.
    MY_YEAR = S_PABRJ + 1.
    STR_MY_YEAR = MY_YEAR.
    else.
    MY_MONTH = S_PABRP + 3.
    STR_MY_MONTH = MY_MONTH.
    MY_YEAR = S_PABRJ.
    STR_MY_YEAR = MY_YEAR.
    endif.
    modified by Coul
    if S_PERMO NE '2'.
    message E999(YHR) with 'Improper Payroll Period Parameters'.
    endif.
    MY_YEAR = S_PABRJ.
    STR_MY_YEAR = MY_YEAR.
    shift STR_MY_MONTH left deleting leading SPACE.
    shift STR_MY_MONTH right deleting trailing SPACE.
    translate STR_MY_MONTH using ' 0'.
    get payrol period first and last dates _ added by Coul
    SELECT SINGLE *
    FROM T549Q
    WHERE PERMO = S_PERMO "Period param.; 02 = semi-monthly
    AND PABRJ = S_PABRJ "Payroll period year
    AND PABRP = S_PABRP. "Payroll period no.
    W_BEGDA = T549Q-BEGDA.
    W_ENDDA = T549Q-ENDDA.
    concatenate STR_MY_YEAR STR_MY_MONTH '01' into W_BEGDA.
    call function 'HR_HCP_GET_LAST_DAY_OF_MONTH'
    exporting
    IM_DATE = W_BEGDA
    importing
    EX_DATE_IS_MONTHEND =
    EX_LAST_DAY_OF_MONTH = W_ENDDA.
    select PA0001PERNR PA0001ABKRS PA0001~ENAME
    into corresponding fields of table ITAB
    from PA0001
    join PA0000
    on PA0000PERNR eq PA0001PERNR
    join HRPY_RGDIR
    on PA0001PERNR eq HRPY_RGDIRPERNR
    where PA0001~PERNR in S_PERNR
    where PA0001~ORGEH in S_ORGEH
    and PA0001~ABKRS eq S_ABKRS
    and PA0000~STAT2 eq '3'
    and PA0001~ENDDA ge '99991231'
    and PA0001~PLANS ne '99999999'
    group by PA0001PERNR PA0001ABKRS PA0001~ENAME.
    if SY-SUBRC <> 0.
    message E999(YHR) with 'No record(s) found.'.
    endif.
    endif. "SY-UCOMM ='ONLI'
    START-OF-SELECTION *
    start-of-selection.
    write : / 'Payroll Area : ',S_ABKRS.
    write : / 'Payroll Period/Year : ',STR_MY_MONTH,'-',STR_MY_YEAR.
    write : / 'System Date : ', SY-DATUM.
    write : / 'System Time : ', SY-UZEIT.
    write : / 'User Name : ', SY-UNAME.
    write : / SY-ULINE.
    sort ITAB by PERNR.
    loop at ITAB.
    clear : P_INFO, P_P_FORM, P_FORM, P_INDEX, P_LIST, OBJBIN,
    DOCDATA, OBJTXT, OBJPACK, RECLIST, TAB_LINES.
    refresh : P_P_FORM, P_FORM, P_INDEX, P_LIST, OBJBIN,
    OBJTXT, OBJPACK, RECLIST.
    select single *
    from HRPY_RGDIR
    where PERNR eq ITAB-PERNR
    and FPBEG ge W_BEGDA
    and FPEND le W_ENDDA
    and SRTZA eq 'A'.
    if SY-SUBRC = 0.
    call function 'GET_PAYSLIP'
    exporting
    EMPLOYEE_NUMBER = ITAB-PERNR
    SEQUENCE_NUMBER = HRPY_RGDIR-SEQNR
    PAYSLIP_VARIANT = PAY_VAR
    importing
    RETURN = RETURN
    P_INFO = P_INFO
    tables
    P_FORM = P_FORM.
    check RETURN is initial.
    loop at P_FORM
    where LINDA eq F__CMD-NEWPAGE
    and LTYPE eq F__LTYPE-CMD.
    P_INDEX-INDEX = SY-TABIX.
    append P_INDEX.
    endloop.
    P_IDX = 1.
    refresh P_P_FORM.
    append lines of P_FORM from P_IDX to P_INDEX-INDEX
    to P_P_FORM.
    P_IDX = P_INDEX-INDEX.
    export P_P_FORM to memory id '%%_P_FORM_%%'.
    export P_INFO to memory id '%%_P_INFO_%%'.
    submit RPCEDT_LIST_TO_MEMORY exporting list
    to memory and return.
    call function 'LIST_FROM_MEMORY'
    tables
    LISTOBJECT = P_LIST.
    call function 'TABLE_COMPRESS'
    IMPORTING
    COMPRESSED_SIZE =
    tables
    IN = P_LIST
    OUT = OBJBIN
    exceptions
    others = 1.
    OBJHEAD = 'Objhead'.
    append OBJHEAD.
    preparing subject
    concatenate W_ENDDA(6)
    ' Payslip-' ITAB-ENAME0(28) '(' ITAB-PERNR4(4) ')'
    into DOCDATA-OBJ_DESCR.
    DOCDATA-OBJ_NAME = 'Pay Slip'.
    DOCDATA-OBJ_LANGU = SY-LANGU.
    OBJTXT = 'Pay Slip.'.
    append OBJTXT.
    OBJTXT = DOCDATA-OBJ_DESCR.
    append OBJTXT.
    OBJTXT = 'Have a nice day.'.
    append OBJTXT.
    Write Packing List (Main)
    3 has been fixed because OBJTXT has fix three lines
    read table OBJTXT index 3.
    DOCDATA-DOC_SIZE = ( 3 - 1 ) * 255 + strlen( OBJTXT ).
    clear OBJPACK-TRANSF_BIN.
    OBJPACK-HEAD_START = 1.
    OBJPACK-HEAD_NUM = 0.
    OBJPACK-BODY_START = 1.
    OBJPACK-BODY_NUM = 3.
    OBJPACK-DOC_TYPE = 'RAW'.
    append OBJPACK.
    Create Message Attachment
    Write Packing List (Attachment)
    ATT_TYPE = 'ALI'.
    describe table OBJBIN lines TAB_LINES.
    read table OBJBIN index TAB_LINES.
    OBJPACK-DOC_SIZE =
    ( TAB_LINES - 1 ) * 255 + strlen( OBJBIN ).
    OBJPACK-TRANSF_BIN = 'X'.
    OBJPACK-HEAD_START = 1.
    OBJPACK-HEAD_NUM = 0.
    OBJPACK-BODY_START = 1.
    OBJPACK-BODY_NUM = TAB_LINES.
    OBJPACK-DOC_TYPE = ATT_TYPE.
    OBJPACK-OBJ_NAME = 'ATTACHMENT'.
    OBJPACK-OBJ_DESCR = 'Payslip'.
    append OBJPACK.
    Create receiver list
    refresh RECLIST.
    clear RECLIST.
    select single *
    from PA0105
    where PERNR eq ITAB-PERNR
    and SUBTY eq 'MAIL'
    and SUBTY eq '0001'
    and USRID ne ''
    and PA0105~ENDDA ge '99991231'.
    if SY-SUBRC = 0.
    RECLIST-RECEIVER = PA0105-USRID.
    translate RECLIST-RECEIVER to lower case.
    ITAB-USRID_LONG = RECLIST-RECEIVER.
    RECLIST-REC_TYPE = 'U'.
    append RECLIST.
    Send the document
    call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    exporting
    DOCUMENT_DATA = DOCDATA
    PUT_IN_OUTBOX = 'X'
    PUT_IN_OUTBOX = ''
    COMMIT_WORK = 'X'
    IMPORTING
    SENT_TO_ALL =
    NEW_OBJECT_ID =
    tables
    PACKING_LIST = OBJPACK
    OBJECT_HEADER = OBJHEAD
    CONTENTS_BIN = OBJBIN
    CONTENTS_TXT = OBJTXT
    CONTENTS_HEX =
    OBJECT_PARA =
    OBJECT_PARB =
    RECEIVERS = RECLIST
    exceptions
    TOO_MANY_RECEIVERS = 1
    DOCUMENT_NOT_SENT = 2
    DOCUMENT_TYPE_NOT_EXIST = 3
    OPERATION_NO_AUTHORIZATION = 4
    PARAMETER_ERROR = 5
    X_ERROR = 6
    ENQUEUE_ERROR = 7
    others = 8.
    if SY-SUBRC <> 0.
    ITAB-MTEXT = 'Message Not Sent to : '.
    else.
    ITAB-MTEXT = 'Message Sent to : '.
    endif.
    else.
    ITAB-MTEXT = 'Message Not Sent to : '.
    endif.
    else. "SY-SUBRC Not = 0 HRPY_RGDIR
    ITAB-MTEXT = 'Payroll data not found : '.
    endif. " end of SY-SUBRC = 0. HRPY_RGDIR
    modify ITAB.
    endloop. "end loop at ITAB
    sort ITAB by MTEXT PERNR.
    loop at ITAB.
    at new MTEXT.
    uline.
    write : / ITAB-MTEXT color 4 intensified on.
    write : / 'Emp. Code' color 2 intensified on,
    12 'Emp. Name' color 2 intensified on,
    54 'Email ID' color 2 intensified on.
    endat.
    write : / ITAB-PERNR, 12 ITAB-ENAME, 54 ITAB-USRID_LONG.
    endloop.

    hi,
       You can send the list output to spool.
    print-on ...
    PERFORM REPORT_OUTPUT.
    print-off.
    From there, you can convert that to pdf.
    fm CONVERT_ABAPSPOOLJOB_2_PDF
    Getting that pdf conversion done, you can send thE same to mail..
    fm SO_NEW_DOCUMENT_ATT_SEND_API1
    Regards,
    Sailaja.

  • Best format for end product

    I just bought a Vixia HF R 42 to shoot a company video. The finished product must be 1280 x 720 pixels; Aspect Ratio 16:9 and exported as mp4 or MOV. I'll be using Premiere Pro to edit. What is the best format (AVCHD vs. MP4) and video quality setting to use considering what the end specifications must be? What setting do I use to get the 16:9 aspect ratio? Thank you so much for your help.

    Hi Bucket!
    Thanks for posting.
    AVCHD is less compressed than MP4, so shooting in AVCHD at 60p will offer you the best overall quality.  Premiere Pro should work fine with it as well.  Keep in mind though, you will want to transfer the entire folder from the card in the camcorder over to your computer, then import from there.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • What are the benefits (if any) to transcoding to an intermediate editing format for post-production?

    I have been searching for a definitive answer to this for days and cannot get anything useful.
    My video camera records to AVCHD format which is 24mbps H.264 plus audio (I record audio separately so audio is not a concern). I use the Adobe CC suite on Windows. I do a lot of green-screen work.
    I have read about many intermediate codecs designed for editing video. These include Avid's DNxHD, Apple's ProRes, GoPro's Cineform, MXF OP1a, among others. From what I understand, these formats provide excellent features to help video editors do their work.
    I have been able to edit AVCHD files directly using Premiere Pro and After Affects.
    My question is, what benefits, if any, would I get if I transcoded my content from AVCHD to one of the intermediate formats before I begin editing? Would it speed up Adobe's software? Would it provide better quality in the end? Would it make various effects function better?
    Ultimately, all the video I make is going to be encoded in h.264 for web distribution.
    Please note: I am not asking for the easiest or most obvious workflow (which is to just to work directly with AVCHD files). I want to know if I can gain benefits in transcoding to another format before I being post-production and what those benefits are specifically for each of the various intermediate codecs.
    Thank you.

    Like almost everything, there's tradeoffs. Transcoding to a really high-end single-file codec like Cineon or Cineform would mean that say the file size could be somewhat larger on disc ... more data to read ... however, LESS work by the other subsystems to get those io oo ii oo oo io io io oi bits changed into "video" on the monitor. There are several articles and tutorials out there on this that give really useful information. And there are a LOT of people that put something out because they personally think this or that codec is THE proper way a professional should work, and any other codec is nearly obscene in use. Right, whatever. They're all tools.
    As shooternz showed ... properly shot AVCHD can be green-screened beautifully, and as there are a LOT of the "pro" cameras in use shooting that wrapper, there are a lot of people that simply process in that. There are others that automatically transcode everything to ProRes 4444 before editing because they feel that gives them the best, safest "space" for their pixels to live. Pick any major codec/wrapper, it will have adherents.
    I've tried just a bit of greening just to play with it ... and got rather intriguing results. It reminded me of starting out trying to do good still portraits on high-key sweep backgrounds without getting "haze" or scatter from too-much-light coming back at the lens while getting the right exposure on the subject and keeping the entire high-key area of the sweep the same white ... it's rather daunting at first. After we mastered it, we could do it at will ... first time every time. Green-screening is a similar thing. Perhaps on steroids, but similar. HOW it's shot is incredibly important to being able to post-process both cleanly and quickly. I've seen quite a few comments about this here and elsewhere ... and though there are clean-up & masking techniques one does need to master, clearly ... one needs clean footage to be able to quickly get clean post work. So many people have noted that after spending so much time working on their masking & color-correction of bits here & there they also got their shooting skills up. And found that suddenly they didn't need anywhere near the clean-up skills or time spent.
    So I'd think off-hand that the AVCHD isn't the most pressing problem here ... that a bit of experience in the absolute tight control of exposure and lighting in the shooting setup may well take care of much of the post problems. And then you can concentrate on those skills you do need ... the fine techniques of this particular process ... to get your work completely polished.
    And listening to shooternz on this isn't a bad thing at all ... his techniques are tight & fast. I've asked him for a number of things and have adopted every one of them.
    Neil

  • Will Quicktime Pro convert movies in other formats for use with IPad Air 2

    ITunes 12 will let me import movies with no problem. However I cannot export these movies out to my IPhone 6 or IPad Air 2. Will Quicktime Pro allow me to convert these movies so they can be exported? I don't want to spend the $30 for it if the software will not do it.
    Or if anyone else knows of another solution, I'm open to other options. I use to have an Samsung Galaxy 2 tablet and I just switched over to an IPad Air 2. Been using an IPhone for years.
    Thanks!

    Nearly all "all-in-one" or multifunction devices will work with a Mac, but I recommend purchasing one from a company that visibly supports OS X. Brother, Canon, and Epson are all good choices. At present, no other common printer manufacturers are worth considering.
    Wireless all-in-one devices are convenient and cost about the same as USB-only ones. Consider AirPrint compatibility for future needs.
    Recently I have grown to favor Brother printers over the others. I recommend AirPrint compatible Brother printers and multifunction devices over those of other manufacturers. They are inexpensive, their OS X integration is well-implemented, their consumables are reasonably priced, and their technical support is free forever. If you need to call them and explain that you have a Mac, you will immediately receive competent assistance.
    I have grown to dislike HP printers, for all the above reasons.
    Read user reviews from vendor websites - Amazon is a good place to start, since Amazon lets people write almost anything they want... right, wrong, or completely idiotic.
    Read the reviews on the respective manufacturers' websites as well, but consider the likelihood of them deleting negative reviews.
    Process all those user reviews employing your own common sense, and draw your own conclusions.

  • Converting mts to format for Imovie

    Still trying and trying to find an answer.  So I have tried http://www.iskysoft.com/topic-mts/convert-mtsm2ts-files-to-imovie-on-mac.html which says it will convert it to a version for imovie so I downloaded trial so that I could try it.  TOok an mts file Converted it to the version for imovie.  Tried to drag and drop it into imovie.  Nope wont do it.  Tried converting it to the MPEG format in this trial version nope wont drag and drop into imovie either. 
    Im willing to buy a converter but want to make sure it will work.  Have found nothing thus far that I can figure out how to convert an MTS file to a version that can be dragged and dropped into Imovie. 
    Sigh so frustrated by this. 
    I have mts video files on my desktop in a folder.  Which I had taken from camera.  They are no longer on my camera so I cant download directly into imovie.  Trying to figure out how to convert them to a format for imovie and have tried several trials another of those being wondershare. 
    Maybe I am just slow but have had no success so far. 
    I have spent literally hours so far tonight trying to solve this problem. 

    mts doesn't need a 'conversion' just a re-wrapping.
    two options
    • ReWrap2M4V - google for it, it's a free automator script; to make it run, you have to install two other items, basically to get a functioning installtion of the ffmpeg package - sounds tricky, just follow installtion advices, easy. re-wraps any mts within split-seconds
    • AVCCAM - is a QT-plugin provided by Panasonic; it teaches any QT-based app to handle mts; after DL in installation, use most popular tool Mpeg Streamclip to open your mts; then, without any settings nor conversions, goto 'save as' and choose mov.

  • How to upload a PDF file and convert it to OTF format

    We have come across rquirements like converting OTF to PDF but my requirement is to read a PDF file in SAP and convert it to OTF format for printing.
    Can anyone please help me with the Function Modules to do so.

    Hello,
    Try the following FM:
    CONVERT_OTF Convert SAP documents (SAPScript) to other types.
    Example:
    CALL FUNCTION "CONVERT_OTF"
    EXPORTING FORMAT = "PDF"
    IMPORTING BIN_FILESIZE = FILE_LEN
    TABLES OTF = OTFDATA
    LINES = PDFDATA
    EXCEPTIONS ERR_MAX_LINEWIDTH = 1
    ERR_FORMAT = 2
    ERR_CONV_NOT_POSSIBLE = 3
    OTHERS = 4.
    Hope this helps.
    Reward if helpful.
    Regards,
    Vasanth

  • How to convert Milliseconds into Date format

    Hi all,
    I am getting the output of a variable in milliseconds format, how can I convert it into date format
    For ex: I am getting input variable as 1366664691000 and I need to convert it to April 22, 2013 5:04:51 PM EDT ( or of SOA format). is there any function for this in XSL or XPath?
    Thanks,

    It is working fine if i test it in provided site...
    But it is returning "-1366664691001", If i am running it in EM. This is the code in my xsl
    <?xml version="1.0" encoding="UTF-8" ?>
    <?oracle-xsl-mapper
    <!-- SPECIFICATION OF MAP SOURCES AND TARGETS, DO NOT MODIFY. -->
    <mapSources>
    <source type="WSDL">
    <schema location="../JavaProcess.wsdl"/>
    <rootElement name="process" namespace="http://xmlns.oracle.com/SampleApplication/JavaEmbeddingActivity/JavaProcess"/>
    </source>
    </mapSources>
    <mapTargets>
    <target type="WSDL">
    <schema location="../JavaProcess.wsdl"/>
    <rootElement name="processResponse" namespace="http://xmlns.oracle.com/SampleApplication/JavaEmbeddingActivity/JavaProcess"/>
    </target>
    </mapTargets>
    <!-- GENERATED BY ORACLE XSL MAPPER 11.1.1.4.0(build 110106.1932.5682) AT [TUE MAY 07 10:21:02 EDT 2013]. -->
    ?>
    <xsl:stylesheet version="1.0"
    xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
    xmlns:xp20="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20"
    xmlns:mhdr="http://www.oracle.com/XSL/Transform/java/oracle.tip.mediator.service.common.functions.MediatorExtnFunction"
    xmlns:bpel="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
    xmlns:oraext="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:dvm="http://www.oracle.com/XSL/Transform/java/oracle.tip.dvm.LookupValue"
    xmlns:hwf="http://xmlns.oracle.com/bpel/workflow/xpath"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:med="http://schemas.oracle.com/mediator/xpath"
    xmlns:ids="http://xmlns.oracle.com/bpel/services/IdentityService/xpath"
    xmlns:bpm="http://xmlns.oracle.com/bpmn20/extensions"
    xmlns:xdk="http://schemas.oracle.com/bpel/extension/xpath/function/xdk"
    xmlns:xref="http://www.oracle.com/XSL/Transform/java/oracle.tip.xref.xpath.XRefXPathFunctions"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:bpmn="http://schemas.oracle.com/bpm/xpath"
    xmlns:ora="http://schemas.oracle.com/xpath/extension"
    xmlns:socket="http://www.oracle.com/XSL/Transform/java/oracle.tip.adapter.socket.ProtocolTranslator"
    xmlns:ldap="http://schemas.oracle.com/xpath/extension/ldap"
    xmlns:client="client"
    exclude-result-prefixes="xsi xsl bpws xp20 mhdr bpel oraext dvm hwf med ids bpm xdk xref bpmn ora socket ldap">
    <xsl:template match="/">
    <xsl:variable name="lastMTime" select="1366664691000"/>
    <xsl:copy-of select="$lastMTime"/>
    <client:processResponse>
    <client:result>
    <xsl:value-of select='xsd:dateTime("1970-01-01T00:00:00") + $lastMTime * xsd:dayTimeDuration("PT0.001S")'/>
    </client:result>
    </client:processResponse>
    </xsl:template>
    </xsl:stylesheet>

  • Fbl file format for Mio Digiwalker C310x?

    How can I get NAVTEQ maps converted to fbl file format for Mio Digiwalker C310x? My C310x came with the TeleAtlas maps which are not really great compared to the NAVTEQ maps. I have bought NAVTEQ maps as well, how can I export NAVTEQ maps to the .fbl file format used by iGO/MioMaps?
    Post relates to: HP TouchPad (WiFi)

    Since this Forum's focus is HP webOS and Palm devices, I'd suggest this question be asked at the Mio Technology forum instead.
    WyreNut
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • Production order split for configurable products

    Hello
    Is it possible to convert an APO planned order for configurable product to a production order in ECC and then to split this order in ECC?
    What will be the visibility in APO regarding pegging, GATP...
    thanks in advance for your help
    regards
    patrice

    Hi,
    What strategy are you using
    Startegy 25 is used for MTO configurable material.
    Regards,
    Vishal

  • Converting DVD videos to iPod format for iPod 30GB 5th generation?

    I would like to convert DVDS to iPod format so I can view them on my new iPod? Can someone help me with a how to list? I have located many PC or windows applications for making the conversion ( free downloads) but what do we use if we are mac users (Mac OS X version 10.3.9)?
    Thank you for your help..... Mark
    iPod 30GB 5th generation video   Mac OS X (10.3.9)  

    Here, click on the link:
    http://handbrake.m0k.org/

  • I need to know the best, safest way to convert video for Mac.  I just had home movies converted to a DVD format a realize now that I need another step to burn them to my computer.

    I just had home movies converted to a DVD format a realize now that I need another step to burn them to my computer.  This is for a Christmas present!  Help.

    I don't think you need to use a ripper program to read a home movie DVD. Those are primarily for copy-protected commercial DVDs, right?
    I think you just need to transcode the DVD files using a utility like Handbrake, which is free and fast.
    http://handbrake.fr/details.php

  • I will be traveling to London for 2 months what kind a converter/adapters do I need for my apple products

    I will be traveling in London for school for 2 months what kind of converter/adapter do I need for my apple products?

    Covers your Mac and your iToys:
    http://store.apple.com/us/product/MB974ZM/B?fnode=MTY1NDEwMQ

  • Best video format for converting DVD to NAS for widely sharing

    Summary: The article shows you with an easy workaround for
    copying DVD to NAS for streaming by ripping DVD to NAS friendly video
    format on Mac and Windows
    I recently purchased a NAS to store all my music/photos etc on. I
    can stream stuff to my iPhone/iPad using the NAS software. What I want
    to do is rip all my DVDs (over 400) to my NAS, but I’m not sure which
    format to do it in, to play nice with my Apple TV2, Xbox 360, iPhone,
    iPad etc. I wanna get some advice as to what format to rip in and what
    software to use?
    Learn some tips from online, I got know that to copy dozens of DVD movies to NAS,
    you need to get the content off the DVD disc as a protection-free and
    easily readable element for NAS. In this case, at the first place
    powerful third-party software for backup DVD to NAS is what you need.
    There are many, many DVD ripping tools on the market. I’ve tired a pile of them.
    Brorsoft DVD Ripper
    is the best one I’ve tried yet. It is capable of ripping DVD to MP4,
    AVI, MKV for NAS streaming with no quality loss; it also enables you to
    copy DVD main movies for backup onto NAS in .vob format. And what I’ve
    learned is that MP4 would be one best target format for it is fully
    compatible with nearly all media devices including iPad, iPhone, PS3,
    Apple TV, etc. If you are running on Mac OS X, turn to  DVD Ripper for Mac. If you haven’t got the software, download it now and let’s start the conversion.
    Ripping and copying DVDs to NAS
    1. Launch the DVD ripping program for NAS devices . Then
    click "Load DVD" to import the DVD files you want to convert. To select
    the subtitles you like, simply click Subtitle and select the one you
    prefer. P.S. Before start the conversion, you can choose to backup DVD mian movies.
    2. Click Format bar and choose your desired format. To store
    hundreds of DVD's on NAS, you can rip DVD to .mp4, or .avi, .mkv, etc
    compressed format. And click Settings bar, you can adjust the level of
    compression to suit the quality you want.
    Tip: If you like, you can click “Settings” to change the
    video encoder, resolution, frame rate, etc. as you wish. Keep in mind
    the file size and video quality is based more on bitrate than resolution
    which means bitrate higher results in big file size, and lower visible
    quality loss, and vice versa.
    3. Press the "Convert" button to start ripping DVD for NAS streaming.
    After the conversion, click Open button to find the output files.
    Make sure the wireless network connection is accessible among the NAS
    and Apple TV, PS3, HD TV or other media players. Then just enjoy the
    high quality DVD movies anywhere anytime.
    [quote] movies-videos-convert-tips.overblog.com/2014/02/ripping-dvds-to-nas-how-to-copy-dvd-to-nas-for-streaming.html [/quote]

    I've always found encoding with Handbrake and choosing the Apple TV2 preset is an excellent place to start and video encoded using that preset will work on my iPhone 4, 4S and iPad 2. 
    If the files encoded using that preset are too big for one's taste they can always encoded at a lower average bit rate rather than using the default 'Constant Quality' of 20.
    Later on I'm sure the Handbrake group will have an AppleTV '3' preset supporting the 1080p format supported by the ATV3 and iPad '3' but using such a preset would not create a file usable on the iPad 2 or the iPhones.

Maybe you are looking for

  • A white box appears in the middle of screen and locks me out of Firefox

    Every time I open Firefox this white box with a gray bar appears in the exact middle of the screen with no text. There is also a box that can be checked or unchecked. If I click on the gray bar or the question mark, nothing happens, and I cannot make

  • Using the Import utility from other users and going to a different schema

    I has a user today with rights Insert into XXXX.TABLE values(); Works just fine for another schema's table which has select,insert,update,delete. We tried to utiile the import utility from OTHER USERS Insert failed ORA-00942 Do you want ot ignore all

  • HT4623 i tunes wont sync my iphone 3gs

    I updated to iOS 6, now everything seems to work but I cant sync to iTunes. iTunes cant find my phone to sync to. i can download apps and music manually but no sync.

  • PC video capture card - Not Applicable?

    When I was a Comcast analog customer, I purchased a Hauppauge WinTV-HVR-1600 video capture card. The unit worked great converting my Media Center PC back into a DVR when my original Dell equipment All-In-Wonder capture card died. When I was consideri

  • IMovie and snow leopard (again)

    After searching through the forum I can't find anyone who seems to be having my problem, or at least speaks about it. I can't get my iphoto videos to show in imovie after installing snow leopard, BUT : - I have quicktime 7 installed - I have checked