-
Notifications
You must be signed in to change notification settings - Fork 8
Flesh out my_secrets instructions for picam with comprehensive setup guide #465
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
sgbaird
merged 5 commits into
main
from
copilot/fix-228a41e5-b9f0-47ca-a5dc-a68e9c3e47c6
Sep 27, 2025
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
7df679d
Initial plan
Copilot 2c69a99
Flesh out my_secrets instructions with comprehensive setup guide
Copilot 29894a7
Enhance README with detailed streaming recommendations
sgbaird 34ef87b
Update recommendation for YouTube stream visibility
sgbaird 13b2983
Update src/ac_training_lab/picam/README.md
sgbaird File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,32 @@ | ||
# AWS Lambda Function URL - Required for YouTube streaming | ||
# This URL is obtained by deploying the streamingLambda service to AWS. | ||
# See: https://github.com/AccelerationConsortium/streamingLambda | ||
# The Lambda function handles YouTube API calls to create and manage live streams. | ||
LAMBDA_FUNCTION_URL = "your_Lambda_function_url" | ||
|
||
# Camera Name - Used for identifying this specific camera device | ||
# This appears in the YouTube broadcast title alongside the workflow name and timestamp. | ||
# Examples: "PiCam-01", "LabCam-A", "MainCamera" | ||
CAM_NAME = "your_camera_name" | ||
|
||
# Workflow Name - Used for organizing streams into playlists | ||
# IMPORTANT: This must be UNIQUE across all devices to avoid conflicts. | ||
# The workflow name is used to: | ||
# - Create/find YouTube playlists | ||
# - End streams for this specific workflow | ||
# - Organize videos by experimental setup or location | ||
# Keep it short (YouTube has character limits) and descriptive. | ||
# Examples: "SDLT-Toronto-001", "MyLab-Setup-A", "AC-Synthesis-Bench" | ||
# Related issue: https://github.com/AccelerationConsortium/ac-dev-lab/issues/290 | ||
WORKFLOW_NAME = "your_workflow_name" | ||
|
||
# YouTube Privacy Status - Controls who can view the live stream | ||
# Options: "private" (only you), "public" (anyone), "unlisted" (anyone with link) | ||
# For lab monitoring, "unlisted" is often preferred for controlled sharing. | ||
PRIVACY_STATUS = "private" # "private", "public", or "unlisted" | ||
|
||
# Camera orientation settings | ||
# Set to True to flip the camera image vertically | ||
# Set to True to flip the camera image vertically (rotate 180° around horizontal axis) | ||
CAMERA_VFLIP = True | ||
# Set to True to flip the camera image horizontally | ||
# Set to True to flip the camera image horizontally (mirror image) | ||
CAMERA_HFLIP = True |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.