Skip to content

Commit

Permalink
Merge pull request #209 from roboflow/remove_fps_limit
Browse files Browse the repository at this point in the history
Remove FPS limit
  • Loading branch information
ryanjball authored Dec 21, 2023
2 parents 811368e + 390e10c commit d55f738
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ The Python package is documented on the [official Roboflow documentation site](h

## 💻 Installation

You will need to have `Python 3.6` or higher set up to use the Roboflow Python package.
You will need to have `Python 3.8` or higher set up to use the Roboflow Python package.

Run the following command to install the Roboflow Python package:

Expand Down
2 changes: 1 addition & 1 deletion roboflow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from roboflow.models import CLIPModel, GazeModel
from roboflow.util.general import write_line

__version__ = "1.1.12"
__version__ = "1.1.13"


def check_key(api_key, model, notebook, num_retries=0):
Expand Down
4 changes: 2 additions & 2 deletions roboflow/models/inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ def predict_video(

url = urljoin(API_URL, "/video_upload_signed_url?api_key=" + self.__api_key)

if fps > 5:
raise Exception("FPS must be less than or equal to 5.")
# if fps > 5:
# raise Exception("FPS must be less than or equal to 5.")

for model in additional_models:
if model not in SUPPORTED_ADDITIONAL_MODELS:
Expand Down

0 comments on commit d55f738

Please sign in to comment.