Wrong Tape Format

I'm trying to capture some mini dv onto FCE. Tapes shot on my camera are caprtured fine but those shot on a friends camera are not being captured. Message on camera screen says 'wrong tape format' when trying to capture and FCE screen says 'VTR OK' and 'waiting for timecode'. Can anyone help please?

Re settimngs on the camera, its quite a basic cam and works fine with tapes I've shot on it on the same day. Have transferred these to FCE without problem. Have tried setting FCE with DV-PAL and DV-Basic with no luck.

Similar Messages

  • PJC Calendar setDate Wrong date format. Date change failed?

    Forms 10.1.2 using forms demos pjc code.
    The calendar pjc I added to my form works except I can't initialize it with a date. If I try to initialize a date it always produces 'Wrong date format. Date change failed.' error.
    In a post-query trigger, I initialize the calendar's date using:
    SET_CUSTOM_PROPERTY('PJC.CALENDAR',1,'setDate',to_char(:lead.date_received,'DD.MM.YYYY'));
    In the java console, this yields:
    Warning: Wrong date format. Date change failed.
    Warning: Wrong date format. Date change failed.
    I get the same result when using a hardcoded date like:
    SET_CUSTOM_PROPERTY('PJC.CALENDAR',1,'setDate','01.12.2006');
    What is the flaw in my incantation?

    Hello,
    This is the syntax used in the calendarpjc Forms demo:
        call the setDate method on the calendar PJC via the PL/SQL built in
        set_custom_item_property
        convert Oracle date to String recognised by Java
      procedure setDate(d in date) is
      begin
        set_custom_property(lGlobals.hCalendar,1,'setDate',to_char(d,'Mon DD, YYYY'));
      end;     Francois

  • Converting Microsoft dpm Replica and RP volumes into Virtual Tape Format

    Hello All, 
    We need to migrate protected data-source that is from P3000 to D
    We purchased a HP Storeonce 2700  backup device and it does not support iSCSI disk. It support iSCSI tape, that is iscsi connection to Virtual Tape library. 
    The problem is how can I migrate my replica and recovery-point-volumes to Tape Drives (VTL).
    Can I convert disk data to tape format.

    Hi,
    The best you can do it add long term tape backup goal in each protection group - then you can use the below DPM power shell script to make a backup for all PG's to tape.  That will only backup to tape the "last" successful disk based recovery
    point.
    # prompts Shortterm or longterm backup type.
    # prompts for protection group name or ALLPG to backup.
    # Will backup PG's to tape and if verify is set on the PG the verify will run.
    # Tested on DPM 2012 R2
    # Last Modified 3-5-2014
    # CHANGE LOG
    # ==========
    # Ver 2.1 - listed PG's for goal selected
    # Ver 2.0 - Added shorthand for longterm shortterm, allowed to select ALL PG's, verified choices and added error checking
    # Ver 1.0 - Basic choices and only allowed a single PG.
    cls
    write-host
    write-host "version 2.1"
    $DPMservername= (&hostname)
    disconnect-dpmserver (&hostname)
    connect-dpmserver (&hostname)
    write-host
    write-host
    write-host
    if(!$protectiontype)
    $protectiontype = read-host "Select Tape Protection type L or S to run (L)ongterm or (S)hortterm) tape jobs"
    If ($Protectiontype -eq 'L')
    $protectiontype = 'Longterm'
    write-host "$protectiontype Selected"
    Write-host ""
    $protectedgroups = get-protectiongroup $dpmservername | where { $_.ProtectionMethod -like "*Long-term using tape*"}
    $protectedgroups.FriendlyName
    else
    If ($Protectiontype -eq 'S')
    $protectiontype = 'Shortterm'
    write-host "$protectiontype Selected"
    Write-host ""
    $protectedgroups = get-protectiongroup $dpmservername | where { $_.ProtectionMethod -like "*Short-term using tape*"}
    $protectedgroups.FriendlyName
    else
    write-host "Incorrect goal type selected - type L or S `n" -foregroundcolor yellow
    exit 0
    #check for PG with ST goals
    If ($Protectiontype -eq 'Shortterm')
    if(!$pgname)
    $pgname = read-host "Enter a Protection Group Name or ALLPG "
    if ($pgname -eq 'ALLPG')
    $protectedgroups = get-protectiongroup $dpmservername | where { $_.ProtectionMethod -like "*Short-term using tape*"}
    else
    $protectedgroups = Get-ProtectionGroup $DPMservername | where { $_.FriendlyName -eq $pgname} | where { $_.ProtectionMethod -like "*Short-term using tape*"}
    else
    #check for PG with LT goals
    if(!$pgname)
    $pgname = read-host "Enter a Protection Group Name or ALLPG "
    if ($pgname -eq 'ALLPG')
    $protectedgroups = get-protectiongroup $dpmservername | where { $_.ProtectionMethod -like "*Long-term using tape*"}
    else
    $protectedgroups = Get-ProtectionGroup $DPMservername | where { $_.FriendlyName -eq $pgname} | where { $_.ProtectionMethod -like "*Long-term using tape*"}
    if(!$protectedgroups)
    write-host "NO PG with goal" $protectiontype "type selected`n" -foregroundcolor yellow
    exit 0
    foreach ($pgname in $protectedgroups)
    write-host "`nGetting protection group" $pgname.friendlyname "in" $DPMservername "..."
    $clipg = Get-ProtectionGroup $DPMservername | where { $_.FriendlyName -eq $pgname.friendlyname}
    if($clipg -eq $abc)
    Throw "No PG found"
    write-Output "Getting DS from PG" $pgname.friendlyname "..."
    $backupds = @(Get-Datasource $clipg)
    foreach ($ds in $backupds)
    write-host
    write-host "Creating Recovery point for $ds" -foreground yellow
    $j = New-RecoveryPoint -Datasource $ds -Tape -ProtectionType $protectiontype
    $jobtype = $j.jobtype
    Write-Output "$jobtype Job has been triggerred..."
    # To serialize, wait for completion, and get final status, uncomment the below lines.
    #write-host "Waiting for $jobtype job to complete" -nonewline
    #while (! $j.hascompleted ){ write-host "." -nonewline; start-sleep 5}
    #write-host
    #if ($j.status -eq "Succeeded")
    # Write-host "Job $Jobtype completed successfully..."
    # $rp = @(get-recoverypoint $ds | ? { $_.datalocation -eq 'Media'})
    # $rpl = get-recoverypointlocation $rp[$rp.count-1]
    # $gt = get-tape -recoverypointlocation $rpl
    # $gtt += $gt
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT] This
    posting is provided "AS IS" with no warranties, and confers no rights.

  • Cant print PO - wrong page format

    Hi all
    I have a smartforms to print PO.
    I encounter this problem which some PO cant be print while some other PO can be printed.
    Its quite confusing since only some cant be print.
    Below is the message:
    Form TXT_CONTACT has wrong page format.
    Message no. SSFCOMPOSER026
    Diagnosis
    Form TXT_CONTACT has a different page format than the forms output previously but has been added to the same spool request.
    System Response
    Form TXT_CONTACT ist not processed.
    Procedure
    While forms are formatted (FM SSFCOMP_OPEN to FM SSFCOMP_CLOSE), the page format must not be changed. All forms within one spool request must have the same page format.
    The first page format used, in this case paper format , is applicable to all subsequent forms.
    Please guide me.
    Thanks in advance

    Hi,
    Check the NEXT page's PAGE FORMAT what is used in the smartform and make it the same as that of the FIRST page.
    I believe the POs which are not being able to print do spill over into the next pages.
    Regards,
    Ram

  • Smartform form {T_HEADER} has wrong page format

    I have a header window that contains a table for column headings just above my main window.  Somehow in the process of inserting a column and adjusting the size, I caused the following error to continue each time I attempt to print preview the form:
    Form T_HEADER has wrong page format.
    I have reviewed the details of the table to verify the width and the total of the line type column widths match.  The header window that contains the table also has the same width.  I am confused as to why I continue to get this error, but it is keeping me from testing any other changes to the form.  I am stuck here.
    P.S. I searched this forum for "form has wrong page format" and found one similar post that did not answer my issue.
    Thanks in advance.
    -PA

    hi Phillip,
    the easiest thing is that you download your form and upload it here, so I got a chance to import it and have a look at exact the same dataset as you do. OF course, delete all the stuff you don't want to share and is unnecessary to fix this issue.
    You can try one thing before, delete the table and create a new one with the same formats. Sometimes the compiler interpret it wrong because... I don't know why, but I realized that just delete helped
    ~Florian

  • FileVault: cannot enable due to "wrong disk format"

    Hi fellow Mac users,
    I just tried to enable FileVault on my iMac 27" but I got an error message (after completing the security questions and hitting "restart") that FileVault cannot be activated because "due to wrong disk format: some disk formats do not support the recovery partion that needs to be created... "
    My internal disk however has never been touched by me, it is Mac OS Extended (Journaled) / GUID, so imho everything should be fine.
    Do you have any ideas what might be wrong?
    thanks a lot
    best
    Wolfgang

    Triple-click anywhere in the line below on this page to select it:
    { diskutil list; echo; diskutil cs list; } | open -f -a TextEdit
    Copy the selected text to the Clipboard (command-C).
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V).
    A TextEdit window will open with the output of the command. If the command produced no output, the window will be empty. Post the contents of the TextEdit window (not the Terminal window), if any — the text, please, not a screenshot. The title of the window doesn't matter, and you don't need to post that.
    If any personal information appears in the output, anonymize before posting, but don’t remove the context.

  • Desktop Printer using wrong paper format

    I recently have bought a HP 2605 Color LaserJet. Many downloaded PDFs I print directly via the Desktop Printer icon.
    But most of the time the Desktop Printer chooses a wrong paper format so that the top of the page is not printed and on the bottom I have a huge white border.
    Any ideas?

    This is a known Apple bug, and there's not really a convenient workaround. For pdfs that are different sizes than the default paper size, you can open them in Preview and print them. Or you can try holding down the option key while dragging the document to the printer - that'll bring up the print dialog and you can see if changing the paper size there works.
    Hope this helps.

  • Wrong video format!

    I have converted a VOB file to a QuickTime MOV file which plays fine in QuickTime and iTunes, however it will not sync or stream to my ATVs saying it is the wrong video format. I can convert it to MP4 via Handbrake and the resulting file will sync but the quality is not good. Can anyone explain why the MOV file will not work and how I can correct it without degrading the quality?

    mov is not a format it's just a container much like avi are just containers
    why your handbake convert is poor quality is most likely because
    1. you set the quality settings wrong in handbrake
    2. you're trying to play something which is higher res then the 720P the atv process video at

  • Could not retrieve template fields:Wrong document format or adapter mismath

    Hi,
         I am working on Interactive forms using Guided procedures. I'm trying to create an interactive form callable object. I've created an XDP template. When I try to use this to create callable object, I get the following error
    Could not retrieve template fields: Wrong document format or adapter mismatch  from adapter
    Are there any restrictions on the templates?
    Is this a known issue?
    I'm using Adobe Designer 7.0 and EP 7.0
    Thank you,
    Vasu

    I've recreated the layout in 7.0 Live cycle designer but no use.
    ADS configuration is fine. The adapter is picking some templates and not picking some.
    Is there anyway to find out why exactly this is happening?
    I very often have problems with Adobe and there is hardly any way to track what the root cause of the problem is.
    Also, I feel interactive forms do not show a consistent behavior in many cases.
    I've opened a note on marketplace but no response yet.
    Hope someone helps.
    Thank you,
    Vasu

  • Error executing SQL (Wrong date format)

    Hello,
    I'm trying do this SQL statment.. and i'm getting the error....
    I hear this error is about wrong format picture date.... Can anyone help me ?
    Thanks
    Fernando.
    1 update cargo a
    2 set dat_validade_fim =
    3 ((nvl((select min(b.dat_validade_ini)
    4 from cargo b
    5 where b.cod_cargo = a.cod_cargo and
    6 b.dat_validade_ini > a.dat_validade_ini
    7 group by b.cod_empresa, b.cod_cargo),'18/08/2205 14:41:47')) - 0.00001)
    8* where a.cod_cargo = 25
    9 /
    group by b.cod_empresa, b.cod_cargo),'18/08/2205 14:41:47')) - 0.00001)
    ERRO na linha 7:
    ORA-01830: date format picture ends before converting entire input string

    It may be due to the value you are using for Null Replacement. Try using To_Date in that e.g.
    update cargo a
    set dat_validade_fim =
    ((nvl((select min(b.dat_validade_ini)
    from cargo b
    where b.cod_cargo = a.cod_cargo and
    b.dat_validade_ini > a.dat_validade_ini
    group by b.cod_empresa, b.cod_cargo),TO_DATE('18/08/2205 14:41:47','DD/MM/RRRR HH24:MI:SS')) - 0.00001)
    where a.cod_cargo = 25
    /

  • Wrong Date format in SQL Server

    Hello All,
    I have an asp page with a hidden field that holds
    <%=Date()%>. Because the
    Session.LCID is set to UK this value today would be
    12/03/2007 (UK format).
    When this hidden field is fed into an INSERT Stored Procedure
    in SQL Server
    in my testing environment, the date format that is inserted
    into the
    database is the same as the value in the hidden field eg
    12/03/2007, which
    is what I want.
    Now though, the site has moved to a production web server
    with SQL Server.
    When I perform this exact insert using the same webpages and
    (from what I
    can see) the same SQL Server configuration, the date inserts
    as 03/12/2007,
    US format. This is causing me big problems as the website is
    complete but
    the wrong dateformat is producing some undesirable results.
    The whole site
    is set up to expect the original format and I cannot see why
    this is
    happening.
    Does anyone have any suggestions and more importantly how I
    can change this
    please.

    There is a real issue here and it has nothing to do with the
    way that data
    is formatted on the way out.
    msSQL does seem to always assume that numbers entered in the
    format of
    00/00/00 follow the pattern of MM/DD/YY which is American
    format. So the 8th
    of March entered in UK format of 08/03/2007 ends up being
    intrepreted by SQL
    as 3rd August. However it only does this up to the 12th of
    each month. If
    you enter the 13th of March as 13/03/2007 SQL stores it
    correctly.
    The workaround does seem to enter the number in the
    YYYY-MM-DD format as
    Julian has suggested.
    Paul Whitham
    Certified Dreamweaver MX2004 Professional
    Adobe Community Expert - Dreamweaver
    Valleybiz Internet Design
    www.valleybiz.net
    "Lionstone" <[email protected]> wrote in
    message
    news:[email protected]...
    > SQL Server does not store dates in any format. They are
    simply numbers,
    > with the integer part representing date and the
    fractional part
    > representing time. If you do not format dates on the way
    out, then you're
    > leaving things up to your web server (and depending on
    when the dates
    > become strings, it might be the ADO provider and not ASP
    that does the
    > formatting).
    >
    > The only way to reliably format dates the way you want
    is to do so
    > explicitly. You may use CONVERT for SQL Server and
    specify a format
    > option (
    http://msdn2.microsoft.com/en-us/library/aa226054(SQL.80).aspx),
    > or you may use the FormatDateTime function in your ASP
    page.
    > FormatDateTime is locale-aware when it formats dates.
    All you have to do
    > is make sure the locale is set properly (which you seem
    to have done).
    >
    >
    >
    > "TTal" <[email protected]> wrote in message
    > news:[email protected]...
    >> Hello All,
    >>
    >> I have an asp page with a hidden field that holds
    <%=Date()%>. Because
    >> the Session.LCID is set to UK this value today would
    be 12/03/2007 (UK
    >> format).
    >>
    >> When this hidden field is fed into an INSERT Stored
    Procedure in SQL
    >> Server in my testing environment, the date format
    that is inserted into
    >> the database is the same as the value in the hidden
    field eg 12/03/2007,
    >> which is what I want.
    >>
    >> Now though, the site has moved to a production web
    server with SQL
    >> Server. When I perform this exact insert using the
    same webpages and
    >> (from what I can see) the same SQL Server
    configuration, the date inserts
    >> as 03/12/2007, US format. This is causing me big
    problems as the website
    >> is complete but the wrong dateformat is producing
    some undesirable
    >> results. The whole site is set up to expect the
    original format and I
    >> cannot see why this is happening.
    >>
    >> Does anyone have any suggestions and more
    importantly how I can change
    >> this please.
    >>
    >
    >

  • Concurrent generating wrong output format with TEXT as output type

    Hi,
    I have create a custom rdf and set TEXT as its output type.
    I want the text output to be specific format but the concurrent is not generating the exact expected output.
    Expected Output:
    <?xml version="1.0" standalone="no"?>
    <!DOCTYPE labels SYSTEM "label.dtd">
    <labels FORMAT="E:WIPMATX.ZPL" _QUANTITY="1" _PRINTERNAME="Printer
    1" _JOBNAME="LBL101">
    <label>
    <variable name="$$WIP_ENTITY_NAME$$">BLFTOP</variable>
    <variable name="$$WIP_ENTITY_NAME$$">BLFTOP14</variable>
    <variable name="COM">19AWG</variable>
    <variable name="LOT_NUMBER"></variable>
    <variable name="ASSEMBLY">A05A0084-1</variable>
    <variable name="QUANTITY_ISSUED">0</variable>
    </label>
    </labels>
    *Wrong Output:*
    <?xml version="1.0" standalone="no"?>
    <!DOCTYPE labels SYSTEM "label.dtd">
    <labels _FORMAT="E:WIPMAT_X.ZPL" _QUANTITY="1" _PRINTERNAME="Printer
    1" _JOBNAME="LBL101">
    <label>
    <variable name="$$WIP_ENTITY_NAME$$"> BLFTOP </vari
    </variable>
    <variable name="$$WIP_ENTITY_NAME$$"> BLFTOP
    BLFTOP14</variable>
    <variable name="COM">19AWG</variable>
    <variable name="LOT_NUMBER"></variable>
    <variable name="ASSEMBLY">A05A0084-1</variable>
    <variable name="QUANTITY_ISSUED">0</variable>
    </label>
    </labels>
    And Actually i am trying to generate this output format type because , wer are using Zebra Printer to print lable and it is a XML enabled bprinter and understand this specifice XML DTD type. We found when set Output type to XML, it was not generating XML in accordance with DTD which Zebra printer understand Hence we are tring to use TEXT output.
    Please suggest.
    Edited by: user5499188 on Oct 3, 2011 12:12 AM
    Edited by: user5499188 on Oct 3, 2011 12:13 AM
    Edited by: user5499188 on Oct 3, 2011 12:14 AM
    Edited by: user5499188 on Oct 3, 2011 12:23 AM

    I get the solution for this issue.
    The solution is to use XML Publisher etext temaplate.
    Etext is used to get text output in any format.
    Regards, :)

  • Arabic language Smartform given Wrong Output format.

    Hi,
    I have developed Arabic Language smartform and tested in  Print Privew  mode working fine .
    Problem with smartform Converted into PDF format and downloded to PC given wrong format.
    Pl let me know any changes required.

    Sorry I do not have answer to your question. But can you share with me how you managed to display Arabic language in Smartform?

  • Intrastat wrong file format

    Hi Gurus,
    I am customizing the INTRASTAT for Spain and everything works fine until the moment we create the file. This file should have different lines for every different information in the document, but what the system is doing is creating the file with ALL the information in the same line.
    Then when the user try to validate the information in the testing tool that the government provides, it says that the file has a wrong format. If we treat the file and we press enter in every place that it should be an enter, then it is correct and we pass the testing tool test.
    Do you know what is happening and why our system is not assigning the end of line correctly?
    Thank you in advance,

    I dont know.
    You should contact either Agencia Tributaria or SAP.
    maybe you can get more info from the guide
    Edited by: Jürgen L. on Feb 24, 2012 12:00 PM

  • Wrong date format in FM: RH_READ_OBJECT

    Hi All,
    I found an error in date format returned in field OBEG of FM: RH_READ_OBJECT.
    It returns: 20112804 and it should be 20110428 (this is Sap internal date format)
    It is strange because it does not happen all the time just in some particular scenarios.
    Do you have any idea about this issue? Is there any note related to this?
    Below a link to a debug screenshot:
    [http://tinypic.com/view.php?pic=1zegppt&s=7]
    Thanks!

    Hi,
    Try debugging the FM and check at which point the wrong date is passed on to OBEG export parameter.
    There is a piece of code available in FM -
    obeg  = temp_buffer-begda.
    May be some problem can occur fetching from buffer.
    Harish

Maybe you are looking for

  • I can't get the bottom of my page to come up higher towards my content, big space on my page

    Here's a link.  I've took out the margins, padding, shortened the height of the page to 200px.  I've brought the footer up on my master page until there's no space barely between my header.  I've checked for hidden text boxes.  On my other page the c

  • HT5654 Missing files after the update

    I am unable to start itunes since the latest update. I keep getting missing files pop up boxes and I have followed the directions and reinstalled - have tried both using the repair function and a the uninstall and reinstall function but nothing has f

  • LIBRARY List Re-Ordering?

    Can iTunes Library music listings be re-ordered some way? I know that playlist music entries can be.

  • Include a help file(*.hlp)

    I want to include a help file(*.hlp) into my oracle developper 2000 project and I don't find any informations about this. Does someone can help me to resolve this problem?

  • Experienced JAVA FLEX 2.0 Consultant need

    I seek Java coupled with FLEX skills who might be willing to consult and work Boston until the end of the year. I know it is a long shot, but I am hoping you someone is available for a potential start in April 2008. Our project is related to an inves