Basic Uploader Properties
Use the following properties to specify the upload of the recorded screen capture. Note that some properties are required and others are optional. Specify any of these by adding them to the launch properties.
- basicupload.failed.message
- basicupload.panel.button.title
- basicupload.panel.input.description.label
- basicupload.panel.input.description.required
- basicupload.panel.input.description.show
- basicupload.panel.input.title.label
- basicupload.panel.input.title.required.message
- basicupload.panel.input.title.required
- basicupload.panel.input.title.show
- basicupload.panel.message
- basicupload.panel.title
- basicupload.post.maxwidth
- basicupload.request.url (REQUIRED)
- basicupload.preview.title
- basicupload.site.name (REQUIRED)
- basicupload.success.message
- basicupload.success.showlink
- basicupload.success.url
- Basic Property Overrides
This optional parameter provides the message displayed if the upload fails.
This optional parameter provides the text for the button that starts the upload.
This optional parameter provides the text for the input description field.
This parameter is related to basicupload.panel.input.description.required and basicupload.panel.input.description.show.
This optional parameter specifies if the text for the input description field is required or optional. For example, the following line specifies that the text is optional:
This parameter is related to basicupload.panel.input.description.required and basicupload.panel.input.description.show.
This optional parameter specifies if the input description field is displayed or not. For example, the following line specifies that the field is displayed:
This optional parameter provides the label text for the input title field.
This optional parameter provides the text for the input title required message.
This optional parameter specifies if the text for the input title field is required or optional. For example, the following line specifies that the text is required:
This optional parameter specifies if the input title is displayed or not. For example, the following line specifies that the title is displayed:
This optional parameter specifies a short message to show at the top of the panel.
This optional parameter specifies the title to show above the panel.
This optional parameter restricts the size (to a maximum width) of the encoded video to upload during encoding. The following line reduces the encoded video to 1280 px. Recordings with a width smaller than 1280 px are not altered.
This required property specifies a URL to use when uploading the video.
Note: If you are also using basicupload.success.url (success callback property), use a URL parameter like id=myid to link this call to basicupload.success.url.
This property expects a response containing a string with the URL that the recording uses to POST the mp4 video file. The example version offers a way to collect input—specifically a title and a description—before uploading. If you use these options, the values are POSTed to the basicupload.request.url. If you do not use the title and description options, this parameter provides a GET request to the URL.
This optional parameter specifies the title to show during the preview.
This required property displays to the user while uploading for example the below setting will display "Uploading to Example Site" while a video is uploading.
This optional parameter provides the message that displays when an upload succeeds.
When set to true and a basicupload.success.url is set, this optional parameter provides a link that the user can copy. The link displays under the basicupload.success.message. The link is the result text returned by the basicupload.success.url callback, which you can set up in JavaScript.
This optional parameter provides a URL that is called back if the upload is successful.
The following examples show how to override some display properties. You can also set these by using your own BasicUploadSkin jar with custom settings in the appDisplay.properties.
The following properties are useful for direct Amazon S3 upload.
For an example Amazon S3 upload, see Setting the Basic Upload URL (S3 Amazon Example).