I am developing a Google TV application, and I have downloaded a mp4 format video from the server and stored in app data. I am trying to play that video inside the Google TV from video view, but it showing the alert like "Can not play the Video".
The same application working properly in Tablet and mobiles but not working in Google TV emulator and TV device.
Video I am downloading from this link and storing in application cache memory as secondvideo.mp4.
File clip=new File(getCacheDir(),"secondvideo.mp4");
if(clip.exists()){
video.setVideoPath(clip.getAbsolutePath());
video.setMediaController(null);
video.requestFocus();
video.postInvalidateDelayed(100);
video.start();
flag=true;
}
}else{
}