Is it possible to open a stream on Fire-TV using an Intent like you normally do in android? This code will show no players that can handle the intent:
playerIntent.setAction(android.content.Intent.ACTION_VIEW);
playerIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
playerIntent.setDataAndType("http://localhost/videostream", "video/*");
startActivity(playerIntent);
This wont work either:
// playerIntent.setComponent(new ComponentName("com.amazon.avod", "com.amazon.avod.playbackclient.EdPlaybackActivity"));