String videoEntryUrl = "http://gdata.youtube.com/feeds/api/videos/"
+ id;
VideoEntry videoEntry = service.getEntry(new URL(videoEntryUrl),
VideoEntry.class);
if (fullContent) {
tub.transformVideoEntry(videoEntry);
} else {
tub.transformHalfVideoEntry(videoEntry);
}
tub.setViewCount(0);
return tub;