How do I add "ok glass" in my video while it playing, I have this code :
public void launchVideo(String filename) {
Log.e("Code checking","Welcome DUDE!!!");
//say(filename);
String path = mMovieDirectory+"/"+filename;
File file = new File(path);
if (!file.exists()) {
return;
}
Intent i = new Intent();
i.setAction("com.google.glass.action.VIDEOPLAYER");
i.putExtra("video_url", path);
startActivity(i);
}
I want to use a voice command to pause (not to touch or swipe it) the video or play the videos...