blackjack / webcam

Golang webcam library for Linux
MIT License
416 stars 92 forks source link

Could this master version release? #64

Closed LiangChenYue closed 1 year ago

LiangChenYue commented 1 year ago

Some method didn't implement on the latest released version but master version. Could it be released ?

edaniels commented 1 year ago

Which method?

LiangChenYue commented 1 year ago

1. // GetName returns the human-readable name of the device func (w *Webcam) GetName() (string, error) { return getName(w.fd) }

2. // Sets automatic white balance correction func (w *Webcam) SetAutoWhiteBalance(val bool) error { v := int32(0) if val { v = 1 } return setControl(w.fd, V4L2_CID_AUTO_WHITE_BALANCE, v) }

edaniels commented 1 year ago

@LiangChenYue done with https://github.com/blackjack/webcam/releases/tag/v0.4!

LiangChenYue commented 1 year ago

Thank you so much. <( )>

edaniels commented 1 year ago

Absolutely :)