public function uploadVideoAction()
 {
     $request = $this->getRequest();
     $sestionClient = PR_Session::getSession(PR_Session::SESSION_USER);
     $companyid = $request->getParam("companyid");
     $api = new PR_Api_Core_ClientClass();
     $company = $api->getCompany($companyid);
     $this->view->company = $company;
     $this->render('upload-video');
 }