You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for making such a great library, curiuos, it doesn't seem to like 59.94 DropFrame as far as I can tell, is there a way to make that calculation work?
I get: InvalidArgumentException: Frame rate not supported
Thank you so very much!
S
The text was updated successfully, but these errors were encountered:
I think you are right, it was an issue that the timecode was 00:00:00:00 instead of 00:00:00;00 but I had seen an error earlier when I tried to do dropframe calc that said only 29.97, its at the end of Validation.php
Thanks for the reply and a kickass library! Have a great weekend!
public static function isFrameRateSupported(float $frameRate, bool $dropFrame) : bool { if ($frameRate !== 30000/1001 && $dropFrame) { throw new \InvalidArgumentException('Only 29.97 frame rate has drop frame support.'); }
return in_array($frameRate, self::SUPPORTED_FRAMERATES); }
Thanks for making such a great library, curiuos, it doesn't seem to like 59.94 DropFrame as far as I can tell, is there a way to make that calculation work?
I get: InvalidArgumentException: Frame rate not supported
Thank you so very much!
S
The text was updated successfully, but these errors were encountered: