Thread Starter
momkin
(@momkin)
HI Kyle
is it ok if you want me to test them
the website still new , so nothing to be lost really
Ok, I think this will work better.
In order to circumvent some file cleanup routines, instead of keeping -fullres we’ll change it to -highest, which I’ve chosen arbitrarily and you can change to anything you want.
At line 7854 instead of my earlier idea
$new_filename = str_replace('-fullres.mp4', '-highest.mp4', $encoded_filename);
$new_url = str_replace('.mp4', '-highest.mp4', $video_encode_queue[$video_key]['movieurl']);
To change the order of encoding, let’s try just moving fullres to the bottom of the list by unsetting and re-setting it.
Before line 521 instead of my earlier idea with $new_video_format_keys_order try this
$fullres_format = $video_formats['fullres'];
unset($video_formats['fullres']);
$video_formats['fullres'] = $fullres_format;
Thread Starter
momkin
(@momkin)
IT worked !!
thank you man you are the best !!!