[TIMOB-7708] IOS: Media - no video visible when there is a deprecated property in the code
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Low |
Status | Closed |
Resolution | Invalid |
Resolution Date | 2017-07-10T22:14:36.000+0000 |
Affected Version/s | Release 1.8.2 |
Fix Version/s | n/a |
Components | iOS |
Labels | qe-ios021312 |
Reporter | Sitara Shylaja |
Assignee | Eric Merriman |
Created | 2012-02-17T11:31:58.000+0000 |
Updated | 2017-07-10T22:14:40.000+0000 |
Description
steps to reproduction
1: install and run the following code
var window = Ti.UI.createWindow({
backgroundColor:'#000'
});
var activeMovie1 = Titanium.Media.createVideoPlayer({
sourceType : Ti.Media.VIDEO_SOURCE_TYPE_FILE,
url : 'movie.mp4',
backgroundColor : '#000',
scalingMode : Titanium.Media.VIDEO_SCALING_ASPECT_FIT,
movieControlStyle : Titanium.Media.VIDEO_CONTROL_NONE
});
var activeMovie2 = Titanium.Media.createVideoPlayer({
sourceType : Ti.Media.VIDEO_SOURCE_TYPE_FILE,
url : 'movie.mp4',
backgroundColor : '#000',
scalingMode : Titanium.Media.VIDEO_SCALING_ASPECT_FIT,
mediaControlStyle : Titanium.Media.VIDEO_CONTROL_NONE
});
window.add(activeMovie2);
window.open();
expected result: should be able to see the video play
actual result: video was not visible
note : can see warning and video in 1.8.1
Attachments
File | Date | Size |
---|---|---|
movie.mp4 | 2012-02-17T13:23:14.000+0000 | 2549211 |
Closing ticket due to time passed and lack of progress for a number of years. Please open a new ticket if there are any problems.