using native.newVideo to play video from external sd card

I am trying to play audio & video files from SDcard in Android.

 I know that corona sdk cannot access to sd card to play files so i
plan to get the directory of file using corona enteprise,now i want to know can i use native.newVideo to play the file from sd card like below code?

local video = native.newVideo( display.contentCenterX, display.contentCenterY, 320, 480 ); video:load("/storage/emulated/0/myapp/assets/video/myvideo.m4v"); video:play();

is answer is No, so what is the method to play video(not in fullscreen mode) using corona enteprise?

Have you tried making it a URL?  file:///storage/emulated…?

Rob

yes solved by something like this:
 

video:load( "file:///storage/extSdCard/Robot delta.3gp" ) video:play( )

Thanks
Arash

Have you tried making it a URL?  file:///storage/emulated…?

Rob

yes solved by something like this:
 

video:load( "file:///storage/extSdCard/Robot delta.3gp" ) video:play( )

Thanks
Arash