I need a minimal video upload mechanism in my plugin.

I use the built in media upload iframe:

tb_show("", "/wp-admin/media-upload.php?type=video&TB_iframe=true");

With fewer options:

add_filter('media_upload_tabs','dilute_media_upload_tabs');
function dilute_media_upload_tabs($tabs){
    return array(
        'type' => __('From Computer')
    );
}

I'd like to save the user from having to click on "Insert to post" button after every file upload, and instead, fire that event programmatically immediately after the file have been uploaded (or crunched or whatever...)

Any idea how to accomplish that?

link|improve this question

50% accept rate
Also very interested in this, have been looking into the admin code but haven't been able to find a solution. I'm looking into a jQuery hack to get things working but not having much luck. – Levi Putna Feb 7 at 6:46
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.