Skip to content

Commit

Permalink
go2rtc: initial package
Browse files Browse the repository at this point in the history
Signed-off-by: Vladimir Ermakov <[email protected]>
  • Loading branch information
vooon committed Sep 29, 2024
1 parent 77e9cd3 commit 229a99b
Show file tree
Hide file tree
Showing 3 changed files with 87 additions and 0 deletions.
50 changes: 50 additions & 0 deletions multimedia/go2rtc/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=go2rtc
PKG_VERSION:=1.9.4
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/AlexxIT/go2rtc/tar.gz/v$(PKG_VERSION)?
PKG_HASH:=90c1273c84d8f538d573cf638493ab30981d4445ff8451b485ab26c60353ed48

PKG_LICENSE:=MIT
PKG_LICENSE_FILES:=LICENSE
PKG_MAINTAINER:=Vladimir Ermakov <[email protected]>

PKG_BUILD_DEPENDS:=golang/host
PKG_BUILD_PARALLEL:=1
PKG_BUILD_FLAGS:=no-mips16

GO_PKG:=github.com/AlexxIT/go2rtc
GO_PKG_EXCLUDES:=test

include $(INCLUDE_DIR)/package.mk
include ../../lang/golang/golang-package.mk

define Package/go2rtc
SECTION:=multimedia
CATEGORY:=Multimedia
TITLE:=go2rtc camera streaming
URL:=https://github.com/AlexxIT/go2rtc
DEPENDS:=$(GO_ARCH_DEPENDS) +ffmpeg
endef

define Package/go2rtc/description
Ultimate camera streaming application with support RTSP, WebRTC, HomeKit, FFmpeg, RTMP, etc.
endef

define Package/go2rtc/conffiles
/etc/go2rtc.yaml
endef

define Package/go2rtc/install
$(call GoPackage/Package/Install/Bin,$(1))

$(INSTALL_DIR) $(1)/etc/
$(INSTALL_CONF) $(CURDIR)/files/go2rtc.yaml $(1)/etc/go2rtc.yaml
$(INSTALL_DIR) $(1)/etc/init.d/
$(INSTALL_BIN) $(CURDIR)/files/go2rtc.init $(1)/etc/init.d/go2rtc
endef

$(eval $(call BuildPackage,go2rtc))
12 changes: 12 additions & 0 deletions multimedia/go2rtc/files/go2rtc.init
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/sh /etc/rc.common

START=99

USE_PROCD=1
PROG=/usr/bin/go2rtc

start_service() {
procd_open_instance
procd_set_param command "$PROG" -config /etc/go2rtc.yaml
procd_close_instance
}
25 changes: 25 additions & 0 deletions multimedia/go2rtc/files/go2rtc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# See also: https://github.com/AlexxIT/go2rtc/blob/master/README.md
---

log:
level: info # default level
# api: trace
# exec: debug
# ngrok: info
# rtsp: warn
# streams: error
# webrtc: fatal

api:
listen: "127.0.0.1:1984"

rtsp:
listen: "127.0.0.1:8554"

webrtc:
listen: ":8555" # external TCP/UDP port

ffmpeg:
bin: /usr/bin/ffmpeg # path to ffmpeg binary

streams: {}

0 comments on commit 229a99b

Please sign in to comment.