Skip to content
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

Enabling changing camera settings using BLE protocols #562

Closed
TarushShankar opened this issue Jul 3, 2024 · 0 comments
Closed

Enabling changing camera settings using BLE protocols #562

TarushShankar opened this issue Jul 3, 2024 · 0 comments
Labels
triage Needs to be reviewed and assigned

Comments

@TarushShankar
Copy link

Hello everyone!
I am using Hero10 Black and I am trying to automate timelapse video taking. I was also intending to change or pre-code some specific parameters in the python script itself like having a specific frame rate for my video (24/25 frames per second to begin with), enable hypersmooth, enable time warp, change the timelapse/ timewarp speed.
For most of my code, I am getting an error of passing Invalid Parameters "Received non-success status: ErrorCode.INVALID_PARAM" even though I am following the API reference.

        assert (await gopro.ble_setting.fps.set(Params.FPS.FPS_60))
       
        # Asserting TimeLapse Mode
        console.print("Before setting the Resolution")
        assert (await gopro.ble_setting.resolution.set(Params.Resolution.RES_4K_4_3))
        console.print("After setting the Resolution")
        console.print("Before setting the Timewarp Mode")
        assert (await gopro.ble_setting.timelapse_mode.set(Params.TimelapseMode.MAX_TIMEWARP))
        console.print("After setting the Timewarp Mode")
        console.print("Before setting the Hypersmooth Mode")
        assert (await gopro.ble_setting.hypersmooth.set(Params.HypersmoothMode.ON))
        console.print("After setting the Hypersmooth Mode")

This is a snippet of how I am interacting with gopro using WirelessGoPro interface. Could someone share their insights on where I could be going wrong?? Thanks!!!!!!

@github-actions github-actions bot added the triage Needs to be reviewed and assigned label Jul 3, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
triage Needs to be reviewed and assigned
Projects
None yet
Development

No branches or pull requests

1 participant