Hi,
I’m trying to use native API for video rendering in my app. When I deploy the app in iPhone, the video is not scaling to the defined height.
local video = native.newVideo( display.contentCenterX, 190, display.contentWidth, 480 )
video:load(“v1.mp4”, system.ResourceDirectory)
What is the best way to provide a progress bar - as we don’t get any event from native api, I’m planning to create my own algorithm using timer to provide an progress bar. Is this a correct approach?
If video is completed, how can I replay - do I have to call load function again?
Cheers,
Siva