public function updateFileItemAction()
 {
     $request = $this->getRequest();
     $params = $request->getPost();
     Logging::info($params);
     $historyService = new Application_Service_HistoryService();
     $json = $historyService->editPlayedFile($params);
     $this->_helper->json->sendJson($json);
 }