usbcapture.go 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. package usbcapture
  2. import (
  3. "context"
  4. "errors"
  5. "fmt"
  6. "log"
  7. "mime/multipart"
  8. "net/http"
  9. "net/textproto"
  10. "os"
  11. "strings"
  12. "syscall"
  13. "github.com/vladimirvivien/go4vl/device"
  14. "github.com/vladimirvivien/go4vl/v4l2"
  15. )
  16. // The capture resolution to open video device
  17. type CaptureResolution struct {
  18. Width int
  19. Height int
  20. FPS int
  21. }
  22. type Config struct {
  23. DeviceName string
  24. }
  25. type Instance struct {
  26. Config *Config
  27. SupportedResolutions []FormatInfo //The supported resolutions of the video device
  28. Capturing bool
  29. camera *device.Device
  30. cameraStartContext context.CancelFunc
  31. frames_buff <-chan []byte
  32. pixfmt v4l2.FourCCType
  33. width int
  34. height int
  35. streamInfo string
  36. }
  37. // NewInstance creates a new video capture instance
  38. func NewInstance(config *Config) (*Instance, error) {
  39. if config == nil {
  40. return nil, fmt.Errorf("config cannot be nil")
  41. }
  42. //Check if the video device exists
  43. if _, err := os.Stat(config.DeviceName); os.IsNotExist(err) {
  44. return nil, fmt.Errorf("video device %s does not exist", config.DeviceName)
  45. } else if err != nil {
  46. return nil, fmt.Errorf("failed to check video device: %w", err)
  47. }
  48. //Check if the device file actualy points to a video device
  49. isValidDevice, err := checkVideoCaptureDevice(config.DeviceName)
  50. if err != nil {
  51. return nil, fmt.Errorf("failed to check video device: %w", err)
  52. }
  53. if !isValidDevice {
  54. return nil, fmt.Errorf("device %s is not a video capture device", config.DeviceName)
  55. }
  56. //Get the supported resolutions of the video device
  57. formatInfo, err := GetV4L2FormatInfo(config.DeviceName)
  58. if err != nil {
  59. return nil, fmt.Errorf("failed to get video device format info: %w", err)
  60. }
  61. if len(formatInfo) == 0 {
  62. return nil, fmt.Errorf("no supported formats found for device %s", config.DeviceName)
  63. }
  64. return &Instance{
  65. Config: config,
  66. Capturing: false,
  67. SupportedResolutions: formatInfo,
  68. }, nil
  69. }
  70. // start http service
  71. func (i *Instance) ServeVideoStream(w http.ResponseWriter, req *http.Request) {
  72. mimeWriter := multipart.NewWriter(w)
  73. w.Header().Set("Content-Type", fmt.Sprintf("multipart/x-mixed-replace; boundary=%s", mimeWriter.Boundary()))
  74. partHeader := make(textproto.MIMEHeader)
  75. partHeader.Add("Content-Type", "image/jpeg")
  76. var frame []byte
  77. for frame = range i.frames_buff {
  78. if len(frame) == 0 {
  79. log.Print("skipping empty frame")
  80. continue
  81. }
  82. partWriter, err := mimeWriter.CreatePart(partHeader)
  83. if err != nil {
  84. log.Printf("failed to create multi-part writer: %s", err)
  85. return
  86. }
  87. if _, err := partWriter.Write(frame); err != nil {
  88. if errors.Is(err, syscall.EPIPE) {
  89. //broken pipe, the client browser has exited
  90. return
  91. }
  92. log.Printf("failed to write image: %s", err)
  93. }
  94. }
  95. }
  96. // start video capture
  97. func (i *Instance) StartVideoCapture(openWithResolution *CaptureResolution) error {
  98. if i.Capturing {
  99. return fmt.Errorf("video capture already started")
  100. }
  101. devName := i.Config.DeviceName
  102. frameRate := 25
  103. buffSize := 8
  104. format := "mjpeg"
  105. if openWithResolution == nil {
  106. return fmt.Errorf("resolution not provided")
  107. }
  108. //Check if the video device is a capture device
  109. isCaptureDev, err := checkVideoCaptureDevice(devName)
  110. if err != nil {
  111. return fmt.Errorf("failed to check video device: %w", err)
  112. }
  113. if !isCaptureDev {
  114. return fmt.Errorf("device %s is not a video capture device", devName)
  115. }
  116. //Check if the selected FPS is valid in the provided Resolutions
  117. resolutionIsSupported, err := deviceSupportResolution(i.Config.DeviceName, openWithResolution)
  118. if err != nil {
  119. return err
  120. }
  121. if !resolutionIsSupported {
  122. return errors.New("this device do not support the required resolution settings")
  123. }
  124. //Open the video device
  125. camera, err := device.Open(devName,
  126. device.WithIOType(v4l2.IOTypeMMAP),
  127. device.WithPixFormat(v4l2.PixFormat{
  128. PixelFormat: getFormatType(format),
  129. Width: uint32(openWithResolution.Width),
  130. Height: uint32(openWithResolution.Height),
  131. Field: v4l2.FieldAny,
  132. }),
  133. device.WithFPS(uint32(frameRate)),
  134. device.WithBufferSize(uint32(buffSize)),
  135. )
  136. if err != nil {
  137. return fmt.Errorf("failed to open video device: %w", err)
  138. }
  139. i.camera = camera
  140. caps := camera.Capability()
  141. log.Printf("device [%s] opened\n", devName)
  142. log.Printf("device info: %s", caps.String())
  143. //2025/03/16 15:45:25 device info: driver: uvcvideo; card: USB Video: USB Video; bus info: usb-0000:00:14.0-2
  144. // set device format
  145. currFmt, err := camera.GetPixFormat()
  146. if err != nil {
  147. log.Fatalf("unable to get format: %s", err)
  148. }
  149. log.Printf("Current format: %s", currFmt)
  150. //2025/03/16 15:45:25 Current format: Motion-JPEG [1920x1080]; field=any; bytes per line=0; size image=0; colorspace=Default; YCbCr=Default; Quant=Default; XferFunc=Default
  151. i.pixfmt = currFmt.PixelFormat
  152. i.width = int(currFmt.Width)
  153. i.height = int(currFmt.Height)
  154. i.streamInfo = fmt.Sprintf("%s - %s [%dx%d] %d fps",
  155. caps.Card,
  156. v4l2.PixelFormats[currFmt.PixelFormat],
  157. currFmt.Width, currFmt.Height, frameRate,
  158. )
  159. // start capture
  160. ctx, cancel := context.WithCancel(context.TODO())
  161. if err := camera.Start(ctx); err != nil {
  162. log.Fatalf("stream capture: %s", err)
  163. }
  164. i.cameraStartContext = cancel
  165. // video stream
  166. i.frames_buff = camera.GetOutput()
  167. log.Printf("device capture started (buffer size set %d)", camera.BufferCount())
  168. i.Capturing = true
  169. return nil
  170. }
  171. // GetStreamInfo returns the stream information string
  172. func (i *Instance) GetStreamInfo() string {
  173. return i.streamInfo
  174. }
  175. // IsCapturing checks if the camera is currently capturing video
  176. func (i *Instance) IsCapturing() bool {
  177. return i.Capturing
  178. }
  179. // StopCapture stops the video capture and closes the camera device
  180. func (i *Instance) StopCapture() error {
  181. if i.camera != nil {
  182. i.cameraStartContext()
  183. i.camera.Close()
  184. i.camera = nil
  185. }
  186. i.Capturing = false
  187. return nil
  188. }
  189. // Close closes the camera device and releases resources
  190. func (i *Instance) Close() error {
  191. if i.camera != nil {
  192. i.StopCapture()
  193. }
  194. return nil
  195. }
  196. func getFormatType(fmtStr string) v4l2.FourCCType {
  197. switch strings.ToLower(fmtStr) {
  198. case "jpeg":
  199. return v4l2.PixelFmtJPEG
  200. case "mpeg":
  201. return v4l2.PixelFmtMPEG
  202. case "mjpeg":
  203. return v4l2.PixelFmtMJPEG
  204. case "h264", "h.264":
  205. return v4l2.PixelFmtH264
  206. case "yuyv":
  207. return v4l2.PixelFmtYUYV
  208. case "rgb":
  209. return v4l2.PixelFmtRGB24
  210. }
  211. return v4l2.PixelFmtMPEG
  212. }