Skip to content

Commit

Permalink
Add ws and ffmpeg modules to go2rtc_mjpeg
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexxIT committed Jan 10, 2025
1 parent 0664e46 commit 7dc9beb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions examples/go2rtc_mjpeg/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ package main

import (
"github.com/AlexxIT/go2rtc/internal/api"
"github.com/AlexxIT/go2rtc/internal/api/ws"
"github.com/AlexxIT/go2rtc/internal/app"
"github.com/AlexxIT/go2rtc/internal/ffmpeg"
"github.com/AlexxIT/go2rtc/internal/mjpeg"
"github.com/AlexxIT/go2rtc/internal/streams"
"github.com/AlexxIT/go2rtc/internal/v4l2"
Expand All @@ -14,6 +16,9 @@ func main() {
streams.Init()

api.Init()
ws.Init()

ffmpeg.Init()
mjpeg.Init()
v4l2.Init()

Expand Down

0 comments on commit 7dc9beb

Please sign in to comment.