Add the below snippet to Cron jobs on cPanel to empty a diretory every 30 minutes, use the Cron tool on cPanel to customise as required.
Update the directory as needed.
This example will scan at least 1 sub-directory deep and delete anything older than 1 day.
0,30 * * * * find /home/allstaffco/public_html/media/nimble_uploads -mindepth 1 -mtime +1 -delete