You need to set cronjob for batch mode video processing and video import feature to work.

Recommended settings is

Code:
*/5 * * * * /usr/bin/php -q /path/to/cron.php  > /dev/null 2>&1
You need to change following as per your server

/usr/bin/php

This is path to PHP. If php is on different location, you need to change the path as required.

/path/to/cron.php

This is path to cron.php on your web site.

For Cpanel Servers


Code:
*/5 * * * *  /usr/bin/php -q /home/USERNAME/public_html/cron.php  > /dev/null 2>&1
FOR PLESK


Code:
*/5 * * * * cd /var/www/vhosts/yourdomain.extn/httpdocs;  /usr/bin/php -q cron.php   > /dev/null 2>&1