Problem with SCORM 1.2 option

I am using Captivate 8, I bought a licence. When I save my file, to be exported to my LMS, using the SCORM 1.2 options, the file, named imsmanifest.xml, contains an error in the code. So the LMS is not able o read it correctly. I requested the solution to my LMS, that is LITMOS, nd they said to me that the problem is on Captivate and that they have other clients with the same problem. Please can you help me to solve this issue?
Best Regards. Gaetano

Manifest files are pretty straightforward, in general (except when you get into deep sequencing rules).  Any clue as to what it is saying the error involves?
Could be something simple.
I had an issue with sumtotal a few years back, with scorm 2004 manifests.
There is an item in the manifest where you declare which scorm spec is being followed, and for that particular version of sumtotal, it expected the manifest to say "scorm 1.3" instead of "scorm 2004".
Mind you, they both refer to the same set of standards but that simple change (which I made using notepad) solved my dilemma.
But I agree with Rod, and scorm cloud is my benchmark for testing always.
Hope that helps and if you want a second set of eyes on the manifest file, I'd be happy to take a look.

Similar Messages

  • Compilation problem with templates while using option -m64

    Hi,
    I have compilation problem with template while using option -m64.
    No problem while using option -m32.
    @ uname -a
    SunOS snt5010 5.10 Generic_127111-11 sun4v sparc SUNW,SPARC-Enterprise-T5220
    $ CC -V
    CC: Sun C++ 5.9 SunOS_sparc Patch 124863-01 2007/07/25
    Here is some C++ program
    ############# foo5.cpp #############
    template <typename T, T N, unsigned long S = sizeof(T) * 8>
    struct static_number_of_ones
    static const T m_value = static_number_of_ones<T, N, S - 1>::m_value >> 1;
    static const unsigned long m_count = static_number_of_ones<T, N, S - 1>::m_count + (static_number_of_ones<T, N, S - 1>::m_value & 0x1);
    template <typename T, T N>
    struct static_number_of_ones<T, N, 0>
    static const T m_value = N;
    static const unsigned long m_count = 0;
    template <typename T, T N>
    struct static_is_power_of_2
    static const bool m_result = (static_number_of_ones<T,N>::m_count == 1);
    template <unsigned long N>
    struct static_number_is_power_of_2
    static const bool m_result = (static_number_of_ones<unsigned long, N>::m_count == 1);
    int main(int argc)
    int ret = 0;
    if (argc > 1)
    ret += static_is_power_of_2<unsigned short, 16>::m_result;
    ret += static_is_power_of_2<unsigned int, 16>::m_result;
    ret += static_is_power_of_2<unsigned long, 16>::m_result;
    ret += static_number_is_power_of_2<16>::m_result;
    else
    ret += static_is_power_of_2<unsigned short, 17>::m_result;
    ret += static_is_power_of_2<unsigned int, 17>::m_result;
    ret += static_is_power_of_2<unsigned long, 17>::m_result;
    ret += static_number_is_power_of_2<17>::m_result;
    return ret;
    Compiation:
    @ CC -m32 foo5.cpp
    // No problem
    @ CC -m64 foo5.cpp
    "foo5.cpp", line 20: Error: An integer constant expression is required here.
    "foo5.cpp", line 36: Where: While specializing "static_is_power_of_2<unsigned long, 16>".
    "foo5.cpp", line 36: Where: Specialized in non-template code.
    "foo5.cpp", line 26: Error: An integer constant expression is required here.
    "foo5.cpp", line 37: Where: While specializing "static_number_is_power_of_2<16>".
    "foo5.cpp", line 37: Where: Specialized in non-template code.
    "foo5.cpp", line 20: Error: An integer constant expression is required here.
    "foo5.cpp", line 43: Where: While specializing "static_is_power_of_2<unsigned long, 17>".
    "foo5.cpp", line 43: Where: Specialized in non-template code.
    "foo5.cpp", line 26: Error: An integer constant expression is required here.
    "foo5.cpp", line 44: Where: While specializing "static_number_is_power_of_2<17>".
    "foo5.cpp", line 44: Where: Specialized in non-template code.
    4 Error(s) detected.
    Predefined macro:
    @ CC -m32 -xdumpmacros=defs foo5.cpp | & tee log32
    @ CC -m64 -xdumpmacros=defs foo5.cpp | & tee log64
    @ diff log32 log64
    7c7
    < #define __TIME__ "09:24:58"
    #define __TIME__ "09:25:38"20c20
    < #define __sparcv8plus 1
    #define __sparcv9 1[snipped]
    =========================
    What is wrong?
    Thanks,
    Alex Vinokur

    Bug 6749491 has been filed for this problem. It will be visible at [http://bugs.sun.com] in a day or two.
    If you have a service contract with Sun, you can ask to have this bug's priority raised, and get a pre-release version of a compiler patch that fixes the problem.
    Otherwise, you can check for new patches from time to time at
    [http://developers.sun.com/sunstudio/downloads/patches/]
    and see whether this bug is listed as fixed.

  • Problems with Scorm and Captivate

    There appears to be a major problem with Scorm compliance and Captivate 4.
    From my understanding, Scorm 1.2 requires that the Manifest include the filenames of all resource files in order to import them. It appears that when Captivate externalizes its resources (Skins, etc) it does not include them in the Manifest. This is because Captivate does not dynamically create the manifest, but rather uses template manifest to fill in variables. The file that is missing from the template is untitled_skin.swf. Below is the template and the output from my test. From the template, it does not appear that Captivate will support anything other than a single SWF and be compliant with Scorm 1.2 (1.2 Scorm Specs http://www.imsglobal.org/content/packaging/cpv1p1p2/imscp_bestv1p1p2.html)
    Template:
    <resources>
      <resource identifier="@RD_MQZ_MANIFEST_ID_RES" type="webcontent" href="@RD_MQZ_MANIFEST_HTM_NAME_HREF" adlcp:scormtype="sco">
             <file href="@RD_MQZ_MANIFEST_SWF_NAME"/>
          <file href="@RD_MQZ_MANIFEST_HTM_NAME"/>
                <file href="SCORM_support/scorm_support.htm"/>
                <file href="SCORM_support/scorm_support.js"/>
                <file href="SCORM_support/scorm_support.swf"/>
      </resource>
    Actual XML:
    <resources>
    - <resource identifier="SCO_ID1_RES" type="webcontent"href="untitled.htm"adlcp:scormtype="sco">
    <file href="untitled.swf" />
    <file href="untitled.htm" />
    <file href="SCORM_support/scorm_support.htm" />
    <file href="SCORM_support/scorm_support.js" />
    <file href="SCORM_support/scorm_support.swf" />
    Please advise..
    Thank You!

    Michael,
    SCORM packages do have a number of "must-haves", but the listing of every last resource asset is more a best practice (although a good idea).
    The content doc that you reference actually states that it is a best-practice document at the top. 
    My stand has always been that in the long run you are much better off if you follow all the rules (especially as the standards evolve and build on each other) so I would love to see captivate list all the resources in the future.
    Importantly though, for any SCORM certified LMS there are two instances where resources MUST be listed.
    First, if it is the href launch file for that particular resource (i.e. <resource identifier="SCO_ID1_RES" type="webcontent" href="untitled.htm"adlcp:scormtype="sco"> in your example) then obviously it must be listed in order for LMS to serve up the next part of the course.
    The other time it must be listed is if that particular resource is actually a "dependency sub-element" of whatever sco or other resource it applies to.
    As long as you have those bases covered, and all the other rules of course (schemas definitions, etc...) it should still pass the appropriate ADL conformance test suite.
    I use both captivate 3 and 4 with a whole host of different LMS systems and have found the generated files to be quite sufficient for basic packaging needs.
    Although, I have made a few customizations based on comments I have read from Andrew Cherney and Mike Rustici (I try to read everything either one of them answers for someone on the forum).
    If you are saying that a particular LMS is doing some kind of "import validation" before it accepts and allows you to publish your content, then that is actually quite common (though usually transparent unless you hit a snag in the validation).
    Typically, the validation will consist of a shortened version of the same basic items that the ADL test suite checks for (schemas and declarations, launch files, etc..).
    That said, if because of an LMS that you need to account for, you absolutely NEED to have all the files listed in the manifest, a great tool for ensuring that is actually free.
    It is called RELOAD, and if you ever take one of the courses run by the ADL Academic Co-Lab (which I highly recommend) that is the tool they use for teaching about packaging and sequencing.
    Very useful tool for creating new packages or editing existing packages as well as adding metadata, sequencing rules and so on.
    RELOAD lets you drag and drop whole directories of resources and set their dependency requirements so you could use it to quickly add all your resources to the manifest.
    This is their website:
    http://www.reload.ac.uk/
    I can generally get by with just the files that captivate generates for scorm 1.2 , but for any heavy lifting (i.e. dynamic sequencing in scorm 2004), I always bring RELOAD into the picture.
    I hope this was helpful.  I tend to ramble on about standards sometimes...
    Russ

  • Can you help with technical problems with the stereo imagry option

    can you help with a technical problem with the stereo imagery option ? it won't take out lead vocal in a stereo mp3'

    Because this forum software is so absolutely USELESS now, you don't get to see the whole of the question in this view. In the other (non-list) view it says:
    "can you help with a technical problem with the stereo imagery option ? it won't take out lead vocal in a stereo mp3"
    And the answer is that if you can't isolate the vocal in the stereo field, or it is one of these odd ones where it's used inverted polarity in different parts of the stereo signal for the same vocal, then you won't be able to. But without a sample, it's impossible to tell. If you can post a link to one, that might help. It has to be external to this site though - Adobe in their infinite wisdom don't allow the posting of audio files on their audio U2U forum. Helpful, that, isn't it?

  • Problem with jax-ws and optional attributes

    Hello,
    I'm developing some web services, starting by defining the object model in schemas, then doing WSDL first to define the services.
    I've come across a problem that appears to be caused by jax-ws not properly handling optional attributes. I've tried this with both 2.0 and 2.1ea3 and both fail the same way.
    I created a simplified test case to repeatably demonstrate the problem.
    The type definition for the object looks like this :
    <xsd:complexType name="TestObject" >
    <xsd:attribute name="name" type="xsd:string" use="required"/>
    <xsd:attribute name="subId" type="xsd:integer" use="optional" />
    </xsd:complexType>
    And in the wsdl:
    <wsdl:message name="testRequest">
    <wsdl:part name="testrequest" type="mf:TestObject"/>
    </wsdl:message>
    <wsdl:operation name="testAction">
    <wsdl:input name="testRequest" message="mf:testRequest"/>
    <wsdl:output name="successResponse" message="mf:successResponse"/>
    </wsdl:operation>
    and the test code:
    public void testOptionalAttrs()
    TestObject testObj = new TestObject();
    testObj.setName("testName");
    //testObj.setSubId(2);
    MDSProvisioningResourcePortType resourceManager = factory.getGatewayResourceManager();
    boolean success = resourceManager.testAction(testObj);
    Running the test code with the 'setSubId' uncommented works.
    With the 'setSubId' call commented out out results in this error:
    javax.xml.ws.WebServiceException: javax.xml.bind.MarshalException
    - with linked exception:
    [com.sun.xml.bind.api.AccessorException: java.lang.NullPointerException]
         at com.sun.xml.ws.message.jaxb.JAXBMessage.writePayloadTo(JAXBMessage.java:301)
         at com.sun.xml.ws.message.AbstractMessageImpl.writeTo(AbstractMessageImpl.java:124)
         at com.sun.xml.ws.encoding.StreamSOAPCodec.encode(StreamSOAPCodec.java:91)
         at com.sun.xml.ws.encoding.SOAPBindingCodec.encode(SOAPBindingCodec.java:225)
         at com.sun.xml.ws.transport.http.client.HttpTransportPipe.process(HttpTransportPipe.java:121)
         at com.sun.xml.ws.transport.http.client.HttpTransportPipe.processRequest(HttpTransportPipe.java:69)
         at com.sun.xml.ws.api.pipe.Fiber._doRun(Fiber.java:541)
         at com.sun.xml.ws.api.pipe.Fiber.doRun(Fiber.java:497)
         at com.sun.xml.ws.api.pipe.Fiber.runSync(Fiber.java:392)
         at com.sun.xml.ws.client.Stub.process(Stub.java:213)
         at com.sun.xml.ws.client.sei.SEIStub.doProcess(SEIStub.java:120)
         at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:238)
         at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:212)
         at com.sun.xml.ws.client.sei.SEIStub.invoke(SEIStub.java:103)
         at $Proxy58.testAction(Unknown Source)
         at com.qualcomm.mf.prov.ProvisioningGatewayClientFactoryTest.testOptionalAttrs(ProvisioningGatewayClientFactoryTest.java:118)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.junit.internal.runners.TestMethodRunner.executeMethodBody(TestMethodRunner.java:99)
         at org.junit.internal.runners.TestMethodRunner.runUnprotected(TestMethodRunner.java:81)
         at org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:34)
         at org.junit.internal.runners.TestMethodRunner.runMethod(TestMethodRunner.java:75)
         at org.junit.internal.runners.TestMethodRunner.run(TestMethodRunner.java:45)
         at org.junit.internal.runners.TestClassMethodsRunner.invokeTestMethod(TestClassMethodsRunner.java:71)
         at org.junit.internal.runners.TestClassMethodsRunner.run(TestClassMethodsRunner.java:35)
         at org.junit.internal.runners.TestClassRunner$1.runUnprotected(TestClassRunner.java:42)
         at org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:34)
         at org.junit.internal.runners.TestClassRunner.run(TestClassRunner.java:52)
         at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:38)
         at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:460)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:673)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:386)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196)
    Caused by: javax.xml.bind.MarshalException
    - with linked exception:
    [com.sun.xml.bind.api.AccessorException: java.lang.NullPointerException]
         at com.sun.xml.bind.v2.runtime.MarshallerImpl.write(MarshallerImpl.java:255)
         at com.sun.xml.bind.v2.runtime.BridgeImpl.marshal(BridgeImpl.java:64)
         at com.sun.xml.bind.api.Bridge.marshal(Bridge.java:105)
         at com.sun.xml.ws.message.jaxb.JAXBMessage.writePayloadTo(JAXBMessage.java:292)
         ... 35 more
    Caused by: com.sun.xml.bind.api.AccessorException: java.lang.NullPointerException
         at com.sun.xml.bind.v2.runtime.XMLSerializer.reportError(XMLSerializer.java:224)
         at com.sun.xml.bind.v2.runtime.XMLSerializer.reportError(XMLSerializer.java:239)
         at com.sun.xml.bind.v2.runtime.ClassBeanInfoImpl.serializeAttributes(ClassBeanInfoImpl.java:302)
         at com.sun.xml.bind.v2.runtime.XMLSerializer.childAsXsiType(XMLSerializer.java:661)
         at com.sun.xml.bind.v2.runtime.BridgeImpl.marshal(BridgeImpl.java:111)
         at com.sun.xml.bind.v2.runtime.CompositeStructureBeanInfo.serializeBody(CompositeStructureBeanInfo.java:71)
         at com.sun.xml.bind.v2.runtime.CompositeStructureBeanInfo.serializeBody(CompositeStructureBeanInfo.java:19)
         at com.sun.xml.bind.v2.runtime.XMLSerializer.childAsXsiType(XMLSerializer.java:663)
         at com.sun.xml.bind.v2.runtime.MarshallerImpl.write(MarshallerImpl.java:250)
         ... 38 more
    Caused by: com.sun.xml.bind.api.AccessorException: java.lang.NullPointerException
         at com.sun.xml.bind.v2.runtime.reflect.AdaptedAccessor.get(AdaptedAccessor.java:33)
         at com.sun.xml.bind.v2.runtime.reflect.TransducedAccessor$CompositeTransducedAccessorImpl.print(TransducedAccessor.java:199)
         at com.sun.xml.bind.v2.runtime.property.AttributeProperty.serializeAttributes(AttributeProperty.java:61)
         at com.sun.xml.bind.v2.runtime.ClassBeanInfoImpl.serializeAttributes(ClassBeanInfoImpl.java:295)
         ... 44 more
    Caused by: java.lang.NullPointerException
         at org.w3._2001.xmlschema.Adapter3.marshal(Adapter3.java:23)
         at org.w3._2001.xmlschema.Adapter3.marshal(Adapter3.java:1)
         at com.sun.xml.bind.v2.runtime.reflect.AdaptedAccessor.get(AdaptedAccessor.java:31)
         ... 47 more
    So am I missing something or is jax-ws not handling optional attributes correctly?
    Thanks,
    Hank

    Hi,
    This is not a direct answer to your question. But if you want to build restful web services with Weblogic 10.3, why not use Jersey . It is the implementation of the new JAX-RS spec. In my experience, although Jersey is part of the Java EE 6 spec, it appears to work ok with Java EE 5 container like Weblogic 10.3.1. The [JAX-RS section of Java EE tutorial|http://java.sun.com/javaee/6/docs/tutorial/doc/giepu.html] is another good source of example code.
    Edited by: vamsee2 on Sep 25, 2009 12:38 PM

  • Problems with SCORM 2004 communication

    I'm developing a SCORM 2004 Compliant LMS. And with contents
    developed using Captivate, if you close the content window
    intermediately after finishing the quiz, the lasts interactions are
    being lost.
    Debugging the JS execution, I can see that the commit
    function is called some time later after the user answers the
    question, and if you go quickly from one question to the next, the
    commit execution, and the SetValue to add the interactions, starts
    to be delayed more and more... then when you get to the end, if you
    close the window, the pending changes are not executed.
    I tried to delay the window close, until the finish function
    get executed... this works, but with some contents (for example the
    "Random Quiz" that is included with Captivate 3) the user have to
    wait 5 minutes!!
    I take some measures, and is taking 18 seconds from when the
    user clicks the submit button, to the commit function get called,
    what is happening?
    The SCORM API implementation is very simple, and is not
    throwing errors.
    Any help and ideas will be appreciated.
    Thanks
    Javier Rodriguez

    Unfortunately, I don't have a solution for you. Best I can
    suggest is
    take this up loudly with Adobe Support. We have two customers
    with the
    exact same problem in our LMS. Like you, the only solution we
    can
    suggest is to ask the user's to wait...which in this case,
    since the
    lesson has several questions, means about 10 minutes!
    We did get Adobe support to look at the lesson and they
    reported no
    problems. I don't understand how that could be. So perhaps
    with your
    voice added, they can figure something out.
    good luck!
    Erik
    Javier.Rodr?gez wrote:
    > I'm developing a SCORM 2004 Compliant LMS. And with
    contents developed using
    > Captivate, if you close the content window
    intermediately after finishing the
    > quiz, the lasts interactions are being lost.
    >
    > Debugging the JS execution, I can see that the commit
    function is called some
    > time later after the user answers the question, and if
    you go quickly from one
    > question to the next, the commit execution, and the
    SetValue to add the
    > interactions, starts to be delayed more and more... then
    when you get to the
    > end, if you close the window, the pending changes are
    not executed.
    >
    > I tried to delay the window close, until the finish
    function get executed...
    > this works, but with some contents (for example the
    "Random Quiz" that is
    > included with Captivate 3) the user have to wait 5
    minutes!!
    >
    > I take some measures, and is taking 18 seconds from when
    the user clicks the
    > submit button, to the commit function get called, what
    is happening?
    >
    > The SCORM API implementation is very simple, and is not
    throwing errors.
    >
    > Any help and ideas will be appreciated.
    >
    > Thanks
    >
    > Javier Rodriguez
    >
    Erik Lord
    http://www.capemedia.net
    Adobe Community Expert - eLearning
    http://www.adobe.com/communities/experts/
    http://www.awaretips.net -
    Authorware Tips!

  • Problem with model trying several options (import,compare)

    Hi all,
    I have a problem in one of my models,
    When I try to import fromdata dictionary or when I try to compare/merge with other models (i had no test other options)
    I 'm gettint diferent errors :
    Import from data dictionary;
    2012-08-06 14:26:44,638 [main] INFO DataModelerAddin - Oracle SQL Developer Data Modeler 3.1.1.703
    2012-08-06 14:27:32,183 [Thread-31] ERROR ModelChooserDialog - Error in Compare status
    java.lang.NullPointerException
         at oracle.dbtools.crest.model.design.compare.CompareModelToModel.addDeletedFKAssociation(Unknown Source)
         at oracle.dbtools.crest.model.design.compare.CompareModelToModel.addTableDetails(Unknown Source)
         at oracle.dbtools.crest.model.design.compare.CompareModelToModel.addTable(Unknown Source)
         at oracle.dbtools.crest.model.design.compare.CompareModelToModel.addFromSourceModel(Unknown Source)
         at oracle.dbtools.crest.model.design.compare.CompareModelToModel.<init>(Unknown Source)
         at oracle.dbtools.crest.swingui.compare.CompareModelsDialog.<init>(Unknown Source)
         at oracle.dbtools.crest.swingui.compare.CompareModelsDialog.<init>(Unknown Source)
         at oracle.dbtools.crest.swingui.compare.ModelChooserDialog$OKAction$1.run(Unknown Source)
    compare/merge;
    2012-08-06 14:16:51,458 [Thread-50] ERROR DBMExtractionController - Error Generate Design: DB_POST
    java.lang.NullPointerException
         at oracle.dbtools.crest.model.design.compare.CompareModelToModel.addFK(Unknown Source)
         at oracle.dbtools.crest.model.design.compare.CompareModelToModel.addTableDetails(Unknown Source)
         at oracle.dbtools.crest.model.design.compare.CompareModelToModel.addTable(Unknown Source)
         at oracle.dbtools.crest.model.design.compare.CompareModelToModel.addFromSourceModel(Unknown Source)
         at oracle.dbtools.crest.model.design.compare.CompareModelToModel.<init>(Unknown Source)
         at oracle.dbtools.crest.swingui.compare.CompareModelsDialog.<init>(Unknown Source)
         at oracle.dbtools.crest.swingui.compare.CompareModelsDialog.<init>(Unknown Source)
         at oracle.dbtools.crest.imports.metadata.DBMExtractionController$Runner.run(Unknown Source)
         at java.lang.Thread.run(Thread.java:619)
    I can do the same operations with other models in the same application, for this reason I guess the problem is in the model and not in the tool,
    please, could anyone help me?
    Version: 3.1.1.703
    Thanks in advance and Regards

    Hi Philip,
    I finally could solve the problem,
    one FK in the model was in strange status, I could not drop the foreign key, the DELETE function on the menu was not working for this object,
    I have dropped from the folder the xml of this object and I have deleted from objects.local in the "rel" directory the reference to this object.
    after that I'm able again to use the model,
    for more information I have to add that the FK was duplicated, I mean, two FK with the same name and one of them I could view the properties and I could drop it from the model but the other one I couldn't until I drop the xml,
    Thanks anyway for your help and I guess this problem comes from a SVN conflict or something related to control version,

  • Problem with mencoder's oac option

    I am having difficulty using mencoder to record output from a tv capture card.  Specifically it gives me an error that I have not specified a -oac option for the audio codec, however I have (and yes I have checked that the codec is enabled).  It also gives me the same error if I choose the -nosound option.  I am hoping that another Arch user out there can help me out with this.  Here is sample of the problem.
    [alex@espc3 ~]$ /usr/bin/mencoder tv:// -tv driver=v4l2 width=360 height=288 outfmt=yuy2 input=0 device=/dev/v4l/video0 norm=NTSC chanlist=us-cable channel=3 adevice=/dev/dsp -oac mp3lame -lameopts cbr:br=256:mode=0 -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=1600 -ffourcc divx -o test.avi
    MEncoder 1.0pre6-3.4.3 (C) 2000-2004 MPlayer Team
    CPU: Intel Pentium 4/Xeon/Celeron Northwood (Family: 8, Stepping: 4)
    Detected cache-line size is 64 bytes
    CPUflags: Type: 8 MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 1
    Compiled for x86 CPU with extensions: MMX MMX2 SSE SSE2
    File not found: 'frameno.avi'
    Failed to open frameno.avi
    success: format: 9  data: 0x0 - 0x0
    TV detected! ;-)
    Selected driver: v4l2
    name: Video 4 Linux 2 input
    author: Martin Olschewski <[email protected]>
    comment: first try, more to come ;-)
    Selected device: BT878 video (Hauppauge (bt878))
    Tuner cap:
    Tuner rxs: LANG1 LANG2
    Capabilites:  video capture  video overlay  VBI capture device  tuner  read/write  streaming
    supported norms: 0 = PAL; 1 = NTSC; 2 = SECAM; 3 = PAL-Nc; 4 = PAL-M; 5 = PAL-N; 6 = NTSC-JP; 7 = PAL-60;
    inputs: 0 = Television; 1 = Composite1; 2 = S-Video; 3 = Composite3;
    Current input: 0
    Current format: YUV420
    v4l2: current audio mode is : LANG1
    [V] filefmt:9  fourcc:0x32315659  size:640x480  fps:25.00  ftime:=0.0400
    No audio encoder (-oac) selected. Select one (see -oac help) or use -nosound.
    Exiting...
    Alex

    Problem solved!!
    It turns out that mencoder freaks out at spaces in the -tv options.  Replacing the spaces in the -tv options with :'s solves the problem.
    Alex

  • Problem with bank details and option in pay method

    I cannot log in with my account with app id because in my country si not an option with maestro card. What should i do?

    If Maestro cards are not shown as an option on the payment details screen then you won't be able to use it - do you have one of the options that is shown ?
    If not then are iTunes gift cards available in your country ? They are not available in all, and they are country-specific (they can only be redeemed and used in their country of issue).
    It they aren't then you could create an account with 'none' as the payment option which will alloy to download free items : http://support.apple.com/kb/HT2534

  • I have a problem with the private browsing option. In my firefox settings it says I'm in private browsing mode, but firefox still remembers all of my history.

    In the options menu, I changed my settings to never remember history, but firefox still records all of it in the history tab. I repeated this, setting it back and forth between remember and don't remember and it still always recorded it.

    Did the Flash plugin crashes also happen with a previous version (10.1) of the Flash player?
    If you have submitted Breakpad crash reports then post the IDs of one or more Breakpad crash reports (bp-xxxxxxxx-xxxxxxxxx-xxxx-xxxxxxxxxxxx).<br />
    You can find the IDs of the submitted crash reports on the <i>about:crashes</i> page.<br />
    You can open the <b>about:crashes</b> page via the location bar, like you open a website.
    See:
    * http://kb.mozillazine.org/Breakpad (Mozilla Crash Reporter)

  • Problems with British/USA keyboard options

    Okay, so I am using InDesign CS4.
    I just got a new computer, and it's an HP (windows 7)
    I have my keyboard set to USA English, and in all other programs, when I hit shift+2, I get the @ symbol...
    In InDesign, though, it selects the British Option, in the cae of the Sift+2, I get quotation marks instead. Or, if I do Sift + 3, I should get a #, but I get the GBP symbol instead.
    How do I change this? This problem only occurs in InDesign, and no other programs.
    Thanks!

    There's a link at the bottom of the email to bring you back to the page. If you are logged in you should see buttons to mark an answer as helpful (you can mark 2) or Correct (only 1) and that gives the points. Can't take them back, though, so be careful.
    There's also a link up at the top to mark the question "answered."

  • Problems with email set-up option 2 selected when option one needed ie add an email personal

    Hello All,
    My new 8520 arrived yesterday, I ask my daughter to set it up for me as she has one. Everything was going ok until I think she pressed the option for email as if I had a work email address which i dont i think option one should have been pressed ie add new email/personal home user email. I cannot seem to get back to that option all I get is has your blackberry admin given user name/number etc.
    Also on the setup box the only icons I have are set-up wizard set up wi-fi and set up bluetooth. Can anyone help me out please, do I need to reset-phone to factory settings or something??
    Thanks
    Jason

    Hi and Welcome to the Forums!
    Please do this:
    Anytime random strange behavior or sluggishness creeps in, the first thing to do is a battery pop reboot. With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes. See if things have returned to good operation. Like all computing devices, BB's suffer from memory leaks and such...with a hard reboot being the best cure.
    After the boot-up, you should be able to again freshly launch the email setup wizard. If you are only presented with Enterprise, then you need to contact your carrier to ensure that you have the proper data account on your BB to enable the services you desire:
    http://www.blackberryfaq.com/index.php/What_do_I_need_a_Data_Plan_for%3F
    Best!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Display problems with print commands and options

    What fonts are required to be installed in windows for Reader X to display all of its component parts?  My fonts were cleaned out and now the print selection screen only displays a blank image with no letters or buttons.  It would be nice not to have to reinstall 1000 fonts just to find the right ones.

    i have the same problem no radio stations at all bit shabby hate technolgy now adays

  • Problem with creation of Logout Option

    Hi guys.. I am working on Servlets ..but i cant sort such a trivial issue:
    I have got a login page.. a normal HTML.. and the user logs in.. The user authentication is handled by a servlet .. if the user is authenticated.. then it is redirected to the main page I am using URLrewriting for this ..
    res.sendRedirect(res.encodeURL("/project/welcomecustomer"));The address bar is like :
    http://localhost:3751/project/welcomecustomer;jsessionid=f6b52f816e5e7534f1b6a8cb9f559Now in this main page.. I have an hyperlink.. such as
    <p>Logout</p>
    and this 'logout' is again a servlet.
    But the problem is i cant invalidate the session.. What is happening is if the user copies the URL when in the main page and pastes it later after logging out.. the main page gets displayed.
    How do i destory this session?

    During logout do ...
    session.invalidate()
    This will ensure that the sessionId becomes invalid.
    But if the user only closes browser then the session will timeout on its own say after 30 secs..
    So he may still be able to access the page in case he copies the URL and pastes it in another browser window before session timeout.

  • Problem with Select All/SelectNone option in af:tableSelectMany

    I have an af:table component with af:tableSelectMany at the bottom of my form. I am using Partial Page Rendering to ensure that when the user does anything e.g. click a button associated with the table, the page is not reloaded so that the user does not have to scroll down to get to the table. This is an important requirement.
    But when the Select All/Select None link in the af:tableSelectMany facet is clicked, the top of the page is shown and we have to scroll down to see the table again - even though the page does not seem to be reloading. Why does this happen and is there any way to fix this? Pls help

    hi,
    Im looking for this solution too..
    i already post the thread before but it's look like no solution on it..
    In my opinion the "Select All/Select None" is not refreshing the page, but it just set to point
    to the upper of the page.. I tested it with onLoad, and it prove this "Select All/Select None"
    dont refresh..So how to overcome this thing...

Maybe you are looking for

  • Graphics in computer documentation

    I'm trying to figure out the best way to handle graphics in a computer book. the book is generally two-column layout with the illustrations in the right column. sometimes the text flows to the right column as well. each chapter is a separate story an

  • Help with hdr-hc3

    I just upgraded to fdc HD. and now i can't caputure non HD footage from my camera Sony HDR-HC3.. and it also fce hd also wont see that my camera is connected. ive tryied changing the easy setup but that do no help.. So if anyone could help that would

  • Cisco 871w, radius server local, and leap or eap-fast will not authenticate

    Hello, i trying to setup eap-fast or leap on my 871w.  i belive i have it confiured correctly but i can not get any device to authenticate to router.  Below is the confiureation that i being used.  any help would be welcome! ! Last configuration chan

  • NCHAR & NVARCHAR2

    I have recetly heard that Oracle is not longer going to support NCHAR and NVARCHAR data types. Can any one tell me if you know any thing about this. I can not find any documents for this claim. Thanks [email protected] null

  • ORA-03114 very often a day

    Hi We have a 11g (11.2.0.2.0) on a Win2K8 R2 and since a few weeks our clients have very often some 03114 errors and the ERP is aborting. First I realized the Open_Cursors were set too low on the server so I increased it to 2000 but it looks like it