use of com.brightcove.player.media.Catalog in project android-player-samples by BrightcoveOS.
the class MainActivity method onCreate.
@Override
protected void onCreate(Bundle savedInstanceState) {
// When extending the BrightcovePlayer, we must assign the BrightcoveVideoView before
// entering the superclass. This allows for some stock video player lifecycle
// management. Establish the video object and use it's event emitter to get important
// notifications and to control logging.
setContentView(R.layout.ima_activity_main);
brightcoveVideoView = (BrightcoveVideoView) findViewById(R.id.brightcove_video_view);
mediaController = new BrightcoveMediaController(brightcoveVideoView);
brightcoveVideoView.setMediaController(mediaController);
super.onCreate(savedInstanceState);
eventEmitter = brightcoveVideoView.getEventEmitter();
// Use a procedural abstraction to setup the Google IMA SDK via the plugin and establish
// a playlist listener object for our sample video: the Potter Puppet show.
setupGoogleIMA();
// Remove the HLS_URL field from the catalog request to allow
// midrolls to work. Midrolls don't work with HLS due to
// seeking bugs in the Android OS.
Map<String, String> options = new HashMap<String, String>();
List<String> values = new ArrayList<String>(Arrays.asList(VideoFields.DEFAULT_FIELDS));
values.remove(VideoFields.HLS_URL);
options.put("video_fields", StringUtil.join(values, ","));
Catalog catalog = new Catalog("ErQk9zUeDVLIp8Dc7aiHKq8hDMgkv5BFU7WGshTc-hpziB3BuYh28A..");
catalog.findPlaylistByReferenceID("stitch", options, new PlaylistListener() {
public void onPlaylist(Playlist playlist) {
brightcoveVideoView.addAll(playlist.getVideos());
}
public void onError(String error) {
Log.e(TAG, error);
}
});
}
use of com.brightcove.player.media.Catalog in project android-player-samples by BrightcoveOS.
the class MainActivity method onCreate.
@Override
protected void onCreate(Bundle savedInstanceState) {
// When extending the BrightcovePlayer, we must assign the BrightcoveVideoView
// before entering the superclass. This allows for some stock video player lifecycle
// management.
setContentView(R.layout.omniture_activity_main);
brightcoveVideoView = (BrightcoveVideoView) findViewById(R.id.brightcove_video_view);
super.onCreate(savedInstanceState);
eventEmitter = brightcoveVideoView.getEventEmitter();
setupOmniture();
// Add a test video to the BrightcoveVideoView.
Catalog catalog = new Catalog("ErQk9zUeDVLIp8Dc7aiHKq8hDMgkv5BFU7WGshTc-hpziB3BuYh28A..");
catalog.findPlaylistByReferenceID("stitch", new PlaylistListener() {
public void onPlaylist(Playlist playlist) {
brightcoveVideoView.addAll(playlist.getVideos());
}
public void onError(String error) {
Log.e(TAG, error);
}
});
}
use of com.brightcove.player.media.Catalog in project android-player-samples by BrightcoveOS.
the class MainActivity method onCreate.
@Override
protected void onCreate(Bundle savedInstanceState) {
// When extending the BrightcovePlayer, we must assign the BrightcoveVideoView
// before entering the superclass. This allows for some stock video player lifecycle
// management.
setContentView(R.layout.freewheel_activity_main);
brightcoveVideoView = (BrightcoveVideoView) findViewById(R.id.brightcove_video_view);
super.onCreate(savedInstanceState);
adFrame = (FrameLayout) findViewById(R.id.ad_frame);
eventEmitter = brightcoveVideoView.getEventEmitter();
setupFreeWheel();
// Add a test video to the BrightcoveVideoView.
Catalog catalog = new Catalog("ErQk9zUeDVLIp8Dc7aiHKq8hDMgkv5BFU7WGshTc-hpziB3BuYh28A..");
catalog.findPlaylistByReferenceID("stitch", new PlaylistListener() {
public void onPlaylist(Playlist playlist) {
brightcoveVideoView.addAll(playlist.getVideos());
}
public void onError(String error) {
Log.e(TAG, error);
}
});
}
use of com.brightcove.player.media.Catalog in project android-player-samples by BrightcoveOS.
the class MainActivity method onCreate.
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.ima_activity_main);
eventEmitter = brightcoveVideoView.getEventEmitter();
// Use a procedural abstraction to setup the Google IMA SDK via the plugin.
setupGoogleIMA();
Map<String, String> options = new HashMap<String, String>();
List<String> values = new ArrayList<String>(Arrays.asList(VideoFields.DEFAULT_FIELDS));
values.remove(VideoFields.HLS_URL);
options.put("video_fields", StringUtil.join(values, ","));
Catalog catalog = new Catalog("ErQk9zUeDVLIp8Dc7aiHKq8hDMgkv5BFU7WGshTc-hpziB3BuYh28A..");
catalog.findVideoByReferenceID("shark", new VideoListener() {
public void onVideo(Video video) {
brightcoveVideoView.add(video);
// Auto play: the GoogleIMAComponent will postpone
// playback until the Ad Rules are loaded.
brightcoveVideoView.start();
}
public void onError(String error) {
Log.e(TAG, error);
}
});
}
use of com.brightcove.player.media.Catalog in project android-player-samples by BrightcoveOS.
the class MainActivity method onCreate.
@Override
protected void onCreate(Bundle savedInstanceState) {
// When extending the BrightcovePlayer, we must assign the BrightcoveVideoView
// before entering the superclass. This allows for some stock video player lifecycle
// management.
setContentView(R.layout.freewheel_activity_main);
brightcoveVideoView = (BrightcoveVideoView) findViewById(R.id.brightcove_video_view);
super.onCreate(savedInstanceState);
adFrame = (FrameLayout) findViewById(R.id.ad_frame);
eventEmitter = brightcoveVideoView.getEventEmitter();
setupFreeWheel();
setupWidevine();
Catalog catalog = new Catalog("FqicLlYykdimMML7pj65Gi8IHl8EVReWMJh6rLDcTjTMqdb5ay_xFA..");
catalog.findVideoByID("2142114984001", new VideoListener() {
@Override
public void onVideo(Video video) {
brightcoveVideoView.add(video);
brightcoveVideoView.start();
}
@Override
public void onError(String error) {
Log.e(TAG, error);
}
});
}
Aggregations