numpyimage 2.6.3__tar.gz → 2.6.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {numpyimage-2.6.3/numpyimage.egg-info → numpyimage-2.6.4}/PKG-INFO +1 -1
- {numpyimage-2.6.3 → numpyimage-2.6.4}/npimage/vidio.py +1 -1
- {numpyimage-2.6.3 → numpyimage-2.6.4/numpyimage.egg-info}/PKG-INFO +1 -1
- {numpyimage-2.6.3 → numpyimage-2.6.4}/pyproject.toml +1 -1
- {numpyimage-2.6.3 → numpyimage-2.6.4}/LICENSE +0 -0
- {numpyimage-2.6.3 → numpyimage-2.6.4}/README.md +0 -0
- {numpyimage-2.6.3 → numpyimage-2.6.4}/npimage/__init__.py +0 -0
- {numpyimage-2.6.3 → numpyimage-2.6.4}/npimage/align.py +0 -0
- {numpyimage-2.6.3 → numpyimage-2.6.4}/npimage/graphics.py +0 -0
- {numpyimage-2.6.3 → numpyimage-2.6.4}/npimage/imageio.py +0 -0
- {numpyimage-2.6.3 → numpyimage-2.6.4}/npimage/nrrd_utils.py +0 -0
- {numpyimage-2.6.3 → numpyimage-2.6.4}/npimage/operations.py +0 -0
- {numpyimage-2.6.3 → numpyimage-2.6.4}/npimage/utils.py +0 -0
- {numpyimage-2.6.3 → numpyimage-2.6.4}/numpyimage.egg-info/SOURCES.txt +0 -0
- {numpyimage-2.6.3 → numpyimage-2.6.4}/numpyimage.egg-info/dependency_links.txt +0 -0
- {numpyimage-2.6.3 → numpyimage-2.6.4}/numpyimage.egg-info/requires.txt +0 -0
- {numpyimage-2.6.3 → numpyimage-2.6.4}/numpyimage.egg-info/top_level.txt +0 -0
- {numpyimage-2.6.3 → numpyimage-2.6.4}/setup.cfg +0 -0
- {numpyimage-2.6.3 → numpyimage-2.6.4}/tests/test_heic.py +0 -0
- {numpyimage-2.6.3 → numpyimage-2.6.4}/tests/test_pbm.py +0 -0
- {numpyimage-2.6.3 → numpyimage-2.6.4}/tests/test_video.py +0 -0
|
@@ -404,7 +404,7 @@ class VideoWriter:
|
|
|
404
404
|
'Set overwrite=True to overwrite.')
|
|
405
405
|
self.filename = filename
|
|
406
406
|
self.framerate = str(framerate) # str instead of float to avoid precision issues
|
|
407
|
-
while Fraction(self.framerate).denominator >= 2**
|
|
407
|
+
while Fraction(self.framerate).denominator >= 2**31 or Fraction(self.framerate).numerator >= 2**31:
|
|
408
408
|
# If framerate has too many decimals to be expressed as a
|
|
409
409
|
# ratio of 32-bit ints, which is required by ffmpeg, crop
|
|
410
410
|
# off one decimal point of precision until it is expressable
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|