Skip to content

Commit

Permalink
こっち
Browse files Browse the repository at this point in the history
  • Loading branch information
melpon committed Mar 27, 2024
1 parent e8cb504 commit 511627b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/src/media/sendonly.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def sendonly():
video_width = int(os.getenv("SORA_VIDEO_WIDTH", "640"))
video_height = int(os.getenv("SORA_VIDEO_HEIGHT", "360"))
video_fps = int(os.getenv("SORA_VIDEO_FPS", "30"))
video_fourcc = os.getenv("SORA_VIDEO_FOURCC", "MJPEG")
video_fourcc = os.getenv("SORA_VIDEO_FOURCC", "MJPG")

camera_id = int(os.getenv("SORA_CAMERA_ID", "0"))

Expand Down
2 changes: 1 addition & 1 deletion examples/src/ml/hideface_sender.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def hideface_sender():
video_width = int(os.getenv("SORA_VIDEO_WIDTH", "640"))
video_height = int(os.getenv("SORA_VIDEO_HEIGHT", "360"))
video_fps = int(os.getenv("SORA_VIDEO_FPS", "30"))
video_fourcc = os.getenv("SORA_VIDEO_FOURCC", "MJPEG")
video_fourcc = os.getenv("SORA_VIDEO_FOURCC", "MJPG")

camera_id = int(os.getenv("SORA_CAMERA_ID", "0"))

Expand Down

0 comments on commit 511627b

Please sign in to comment.