Aurigma Video Uploader 1.0
VideoUploader.UploadThumbnail1ResizeQuality Property
Resize quality of the first thumbnail.
Syntax
Initialize
JavaScript
<script type="text/javascript" src="iuembed.js"> </script> <script type="text/javascript"> var vu = new VideoUploaderWriter("VideoUploaderID", 610, 500); //...other params... vu.addParam("UploadThumbnail1ResizeQuality", "Medium"); //...other params... vu.writeHtml(); </script>
Get/Set Value in Runtime
JavaScript
getVideoUploader("VideoUploaderID").setUploadThumbnail1ResizeQuality(value);
value = getVideoUploader("VideoUploaderID").getUploadThumbnail1ResizeQuality();Property Value
A member of this enumeration that specifies the resize quality of the first thumbnail:
| String value | Alternative string value | Integer value | Description |
|---|---|---|---|
| ResizeQualityMedium | Medium | 0 | Default quality. |
| ResizeQualityHigh | High | 1 | High quality. When using this mode, thumbnails are created in two steps. On the first step the thumbnail is created twice as large as required. On the second step the thumbnail is downsized using the Bell filter. |
Default value is "Medium".