0
私はビデオプレゼンテーション用のコードを書いています。しかし、ajax.phpを使用する際の問題に直面しています。私はkalturaのビデオプレゼンテーションにajax.phpを使用する
、http://www.kaltura.com/projects/VideoPresentationDemo/ 内のこれらのコードを見つけましたが、私は誰も私を助けることができる、ajax.php呼び出す方法がわかりませんか?
function entries_added(entries)
{
$("#doc_uploading").html('Processing '+kuploader_selected_filename);
entry = entries[0];
set_document_entry_id(entry.entryId);
// entry id = entry.entryId
// request conversion using ajax
$.ajax({
url: 'ajax.php?action=convert&entryId='+entry.entryId,
type: 'get',
success: function(download_url){
set_converted_doc_swf_url(download_url);
var timeoutId = setTimeout('updateDocConversionStatus()',10000);
set_docConvertCheckerId(timeoutId);
}
});
}
ajax.phpをダウンロードしてください。