/**
  * Plays the specified URL in the in-browser player
  * @param string $url the URL to the media
  */
 public function actionWatchInBrowser($url)
 {
     // Create a tuple containing the URL and the MIME type of the file
     $item = new stdClass();
     $item->url = $url;
     $item->mimeType = MediaInfoHelper::getMIMEType($url);
     $this->render('//videoLibrary/browserPlayer', array('items' => array($item)));
 }