CC-1630 : Automatic recording of shows
multi threading now used in recorded for back to back shows. recorded file id is put into show instances table.
This commit is contained in:
parent
73238f92af
commit
864cda6c34
3 changed files with 70 additions and 34 deletions
|
@ -173,7 +173,12 @@ class PluploadController extends Zend_Controller_Action
|
|||
$soundcloud->uploadTrack($file->getRealFilePath(), $file->getName());
|
||||
}
|
||||
|
||||
die('{"jsonrpc" : "2.0", "id" : '.$file->getId().' }');
|
||||
$show_instance = $this->_getParam('show_instance');
|
||||
|
||||
$show = new ShowInstance($show_instance);
|
||||
$show->setRecordedFile($file->getId());
|
||||
|
||||
die('{"jsonrpc" : "2.0", "id" : '.$file->getId().'}');
|
||||
}
|
||||
|
||||
public function pluploadAction()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue