embed chinese video url in iZap video

Youku.com and Tudou.com are most popular video sites in China, I found some code for WordPress embeds.

This is Youku:

function wp_embed_handler_youku( $matches, $attr, $url, $rawattr ) {
    
// If the user supplied a fixed width AND height, use it
    
if ( !empty($rawattr['width']) && !empty($rawattr['height']) ) {
        
$width  = (int) $rawattr['width'];
        
$height = (int) $rawattr['height'];
    
} else {
        
list( $width, $height ) = wp_expand_dimensions( 480, 400, $attr['width'], $attr['height'] );
    
}
 
    
return apply_filters( 'embed_youku', '<embed src="http://player.youku.com/player.php/sid/' . esc_attr($matches[1]) . '/v.swf" quality="high" width="' . esc_attr($width) . '" height="' . esc_attr($height) . '" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash"></embed>', $matches, $attr, $url, $rawattr );
 
}
wp_embed_register_handler( 'youku', '#http://v.youku.com/v_show/id_(.*?).html#i', 'wp_embed_handler_youku' );

And this is Tudou:

function wp_embed_handler_tudou( $matches, $attr, $url, $rawattr ) {
    
// If the user supplied a fixed width AND height, use it
    
if ( !empty($rawattr['width']) && !empty($rawattr['height']) ) {
        
$width  = (int) $rawattr['width'];
        
$height = (int) $rawattr['height'];
    
} else {
        
list( $width, $height ) = wp_expand_dimensions( 420, 363, $attr['width'], $attr['height'] );
    
}
 
    
return apply_filters( 'embed_tudou', '<object width="' . esc_attr($width) . '" height="' . esc_attr($height) . '"><param name="movie" value="http://www.tudou.com/v/' . esc_attr($matches[1]) . '"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="wmode" value="opaque"></param><embed src="http://www.tudou.com/v/' . esc_attr($matches[1]) . '" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" wmode="opaque" width="' . esc_attr($width) . '" height="' . esc_attr($height) . '"></embed></object>', $matches, $attr, $url, $rawattr );
 
}
 
wp_embed_register_handler( 'tudou', '#http://www.tudou.com/programs/view/(.*?)/#i', 'wp_embed_handler_tudou' );

Is it possible to use in iZAP videos ??

Thanks.