Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-7708] IOS: Media - no video visible when there is a deprecated property in the code

GitHub Issuen/a
TypeBug
PriorityLow
StatusClosed
ResolutionInvalid
Resolution Date2017-07-10T22:14:36.000+0000
Affected Version/sRelease 1.8.2
Fix Version/sn/a
ComponentsiOS
Labelsqe-ios021312
ReporterSitara Shylaja
AssigneeEric Merriman
Created2012-02-17T11:31:58.000+0000
Updated2017-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

FileDateSize
movie.mp42012-02-17T13:23:14.000+00002549211

Comments

  1. Lee Morris 2017-07-10

    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.

JSON Source