Skip to content

Commit

Permalink
force off the auto-scan for devices
Browse files Browse the repository at this point in the history
  • Loading branch information
Amorano committed Feb 14, 2025
1 parent 092726f commit 81f2dd7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,9 @@ You can colorize nodes via their `title background`, `node body` or `title text`

## UPDATES

**2024/02/10** @1.7.15:
* forced "OFF" the auto-scan for web cameras. Kept defaulting to on regardless of setting.

**2024/02/10** @1.7.13:
* cleared serialization bug
* better "docker" environment check
Expand Down
13 changes: 5 additions & 8 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,11 @@
@reference: https://github.com/Amorano/Jovimetrix
@tags: adjust, animate, compose, compositing, composition, device, flow, video,
mask, shape, webcam, animation, logic
@description: Integrates Webcam, MIDI, Spout and GLSL shader support. Animation
via tick. Parameter manipulation with wave generator. Math operations with Unary
and Binary support. Value conversion for all major types (int, string, list,
dict, Image, Mask). Shape mask generation, image stacking and channel ops, batch
splitting, merging and randomizing, load images and video from anywhere, dynamic
bus routing with a single node, export support for GIPHY, save output anywhere!
flatten, crop, transform; check colorblindness, make stereogram or stereoscopic
images, or liner interpolate values and more.
@description: Webcam, MIDI, Spout, GIPHY and OpenGL (GLSL) support.
Animation via tick. Wave-based parameter modulation, Math operations with
Unary and Binary support, universal Value conversion for all major
types (int, string, list, dict, Image, Mask), shape masking, image channel ops,
batch processing, dynamic bus routing. Queue & Load from URLs.
@node list:
ConstantNode, GLSLNode, ShapeNode, StereogramNode, StereoscopicNode, TextNode,
WaveGraphNode,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "jovimetrix"
description = "Integrates Webcam, MIDI, Spout and GLSL shader support. Animation via tick. Parameter manipulation with wave generator. Math operations with Unary and Binary support. Value conversion for all major types (int, string, list, dict, Image, Mask). Shape mask generation, image stacking and channel ops, batch splitting, merging and randomizing, load images and video from anywhere, dynamic bus routing with a single node, export support for GIPHY, save output anywhere! flatten, crop, transform; check colorblindness, make stereogram or stereoscopic images, or liner interpolate values and more."
version = "1.7.13"
version = "1.7.15"
license = { file = "LICENSE" }
readme = "README.md"
authors = [{ name = "Alexander G. Morano", email = "[email protected]" }]
Expand Down
3 changes: 2 additions & 1 deletion sup/stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ class StreamMissingException(Exception): pass
# ==============================================================================

cfg = ConfigParser()
JOV_SCAN_DEVICES = os.getenv("JOV_SCAN_DEVICES", "True").lower() in ['1', 'true', 'on']
JOV_SCAN_DEVICES = os.getenv("JOV_SCAN_DEVICES", "False").lower() in ['1', 'true', 'on']
logger.info(f"JOV_SCAN_DEVICES [{JOV_SCAN_DEVICES}]")
JOV_STREAM_HOST = os.getenv("JOV_STREAM_HOST", '')
JOV_STREAM_PORT = 7227
try:
Expand Down

0 comments on commit 81f2dd7

Please sign in to comment.