I was trying to upload a video to the amazon mecahnical turk using their java api. i read in some documentation that it accepts flv files. So i downloaded ffmpeg and converted my videos to flv format. However when I am not sure what is the mime type to be specified in the question file. I downloaded the amazon mecahnical turk sdk for java and the sample indicates that the URL of the video is to be provided in the "question file". I have uploaded my video on my site but I am unsure about the mime type to be used. I have tried using video/ x-flv but i get the following error

AWS.MechanicalTurk.XMLParseError: There was an error parsing the XML question or answer data in your request. Please make sure the data is well-formed and validates against the appropriate schema. Details: cvc-complex-type.2.4.d: Invalid content was found starting with element 'Selection'. No child element is expected at this point. (1329548861726 s)

a snippet of the question file is as follows

<SelectionAnswer>
        <StyleSuggestion>radiobutton</StyleSuggestion>
        <Selections>
          <Selection>
            <SelectionIdentifier>sample-intro-video.flv</SelectionIdentifier>
            <Binary>
              <MimeType>
                <Type>video</Type>
                <SubType>x-flv</SubType>
              </MimeType>
              <DataURL>https://sites.google.com/site/raveeshsharma86/stuff-available-for-sharing/text.flv</DataURL>
              <AltText>sample-intro-video.flv</AltText>
            </Binary>
            <Selection>
        </Selections>
      </SelectionAnswer>

please do suggest if I am missing something

link|improve this question

60% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.