Something like this should work, although I have not tested it together. It assumes your wholesale groupid = 2 and you want to show the product attribute 'productvideos'
app / design / frontend / default // template / catalog / product / view.phtml
if($_isLoggedIn === true){
$_myGroupId = Mage::getSingleton('customer/session')->getCustomerGroupId();
if($_myGroupId == 2){
print $_helper->productAttribute($_product, $_product->getProductvideos(), 'productvideos');
}
}
:
http://www.magentocommerce.com/boards/viewthread/22597/#t74992