Hi everybody.
I'm using ffmpeg to create HD files, but with big files (e.g. a 3,2 Gb flv file) I'm getting the next error in the logs:
filesize() [function.filesize]: stat failed for /var/www/html/upnatv/files/videosConvertidosIngSanitaria/28_soportado_wmv8_wma92.flv en /var/www/html/upnatv/sites/all/modules/flashvideo/flashvideo.module en la línea 1276.
The line of flashvideo.module is this one:
if(file_exists($output_path) && filesize($output_path) > 0)
{ // Check to make sure the new file exists.
So FlashVideo tries to encode the same video up to 5 times (as configured in the cron) and I have the node with the right jpg thumbnail but with no flash video link (although the flv file is rightly created).
I have read that php filesize() function can give problems with files > 2 Gb. How could I fix this problem?
Thanks in advance.