This commit is contained in:
Alex 2025-10-12 13:42:27 +02:00
parent cd77e170e6
commit 711d73c9fb
4 changed files with 60 additions and 27 deletions

View File

@ -1,5 +1,5 @@
ARG RESTY_IMAGE_BASE="alpine" ARG RESTY_IMAGE_BASE="alpine"
ARG RESTY_IMAGE_TAG="3.15" ARG RESTY_IMAGE_TAG="3.18"
ARG FFMPEG_VERSION=4.4 ARG FFMPEG_VERSION=4.4
############################## ##############################
@ -234,7 +234,7 @@ RUN rm -rf /var/cache/* /tmp/*
# Create FAT version of openresty-rtmp # Create FAT version of openresty-rtmp
FROM build-openresty as build-openresty-fat FROM build-openresty as build-openresty-fat
ARG RESTY_LUAROCKS_VERSION="3.7.0" ARG RESTY_LUAROCKS_VERSION="3.8.0"
RUN apk add --no-cache --virtual .build-deps \ RUN apk add --no-cache --virtual .build-deps \
perl-dev \ perl-dev \
@ -276,9 +276,9 @@ ENV LUA_CPATH="/usr/local/openresty/site/lualib/?.so;/usr/local/openresty/lualib
ENV PATH="/usr/local/openresty/bin:/usr/local/openresty/luajit/bin:$PATH" ENV PATH="/usr/local/openresty/bin:/usr/local/openresty/luajit/bin:$PATH"
ENV LAPIS_VERSION=1.9.0 ENV LAPIS_VERSION=1.16.0
RUN apk add openssl-dev RUN apk add openssl-dev curl
RUN opm get spacewander/luafilesystem RUN opm get spacewander/luafilesystem
RUN luarocks install luasec RUN luarocks install luasec
RUN luarocks install busted RUN luarocks install busted
@ -315,7 +315,8 @@ RUN apk add --update \
opus \ opus \
rtmpdump \ rtmpdump \
x264-dev \ x264-dev \
x265-dev x265-dev \
lame-dev
COPY --from=build-openresty-fat /usr/local/openresty /usr/local/openresty COPY --from=build-openresty-fat /usr/local/openresty /usr/local/openresty

View File

@ -5,24 +5,32 @@ local function Authhandler(self)
local name = self.params.name local name = self.params.name
local password = self.params.password local password = self.params.password
local yt_streamkey = self.params.youtube or nil local yt_streamkey = self.params.youtube or nil
local yt_url = self.params.yt_url or nil
print("connected with: " .. name)
local endpoints = { local endpoints = {
puik='something', puik='somethingsecret',
wstd='something', wstd='somethingsecret',
buzz='something' buzz='somethingsecret'
} }
if endpoints[name] == password then if endpoints[name] == password then
local urls = {} local urls = {}
print("connected with: " .. name)
local hls_url = "rtmp://127.0.0.1/streamhls/" .. name local hls_url = "rtmp://127.0.0.1/streamhls/" .. name
table.insert(urls, hls_url) table.insert(urls, hls_url)
if yt_streamkey then local yt_url = "rtmp://127.0.0.1/youtube/" .. name
local yt_url = "rtmp://127.0.0.1/youtube/" .. yt_streamkey --table.insert(urls, yt_url)
table.insert(urls, yt_url)
end -- if yt_streamkey then
-- local yt_url = "rtmp://126.0.0.1/youtube/" .. yt_streamkey .. "&url=" .. yt_url
-- --local yt_url = "rtmp://" .. yt_streamkey
-- table.insert(urls, yt_url)
-- end
local redirect_urls = table.concat(urls, ",") local redirect_urls = table.concat(urls, ",")

View File

@ -12,26 +12,40 @@ rtmp {
listen 1935; listen 1935;
chunk_size 4000; chunk_size 4000;
# recommended directives: https://github.com/savonet/liquidsoap/issues/1389#issuecomment-1095096246
idle_streams off;
wait_key on;
wait_video on;
application stream { application stream {
live on; live on;
on_publish http://localhost:${{PORT}}/auth; on_publish http://127.0.0.1:${{PORT}}/auth;
} }
application youtube { application youtube {
live on; live on;
allow publish 127.0.0.1;
exec ffmpeg -i rtmp://localhost:1935/youtube/$name -c:a copy -c:v copy -f flv rtmp://a.rtmp.youtube.com/live2/$name; #exec ffmpeg -i rtmp://127.0.0.1:1935/youtube/$name -c:a copy -c:v copy -f flv rtmp://a.rtmp.youtube.com/live2/$name;
#exec ffmpeg -i rtmp://127.0.0.1:1935/youtube/$name -c:a copy -c:v copy -f flv rtmp://${arg_url}.rtmp.youtube.com/live1/$name;
exec ffmpeg -i rtmp://127.0.0.1:1935/youtube/$name -c:a copy -c:v copy -f flv rtmp://x.rtmp.youtube.com/live2/hj5m-x8ff-pqyv-rtu0-26fk;
#exec ffmpeg -i rtmp://127.0.0.1:1935/youtube/$name -c:a copy -c:v copy -f flv rtmp://a.rtmp.youtube.com/live2/m5wk-h9xr-70g1-uzr7-dwgf;
exec ffmpeg -i rtmp://127.0.0.1:1935/youtube/$name -c:a copy -c:v copy -f flv rtmp://a.rtmp.youtube.com/live2/m0a5-r1rq-9qjf-pjk9-9kke;
#exec ffmpeg -i rtmp://127.0.0.1:1935/youtube/$name -c:a copy -c:v copy -f flv rtmp://$name;
} }
application streamhls { application streamhls {
live on; live on;
allow publish 127.0.0.1;
#relays the incoming video to low quality streams on this server, audio-only version and to a different server #relays the incoming video to low quality streams on this server, audio-only version and to a different server
exec ffmpeg -i rtmp://localhost:1935/streamhls/$name exec ffmpeg -i rtmp://127.0.0.1:1935/streamhls/$name
-c:a copy -c:v copy -f flv rtmp://localhost/hls/$name_hi; -c:a copy -c:v copy -f flv rtmp://127.0.0.1/hls/$name_hi;
exec ffmpeg -i rtmp://localhost:1935/streamhls/$name -max_muxing_queue_size 1024 exec ffmpeg -i rtmp://127.0.0.1:1935/streamhls/$name -max_muxing_queue_size 1024
-c:a copy -c:v libx264 -b:v 128K -preset superfast -profile:v baseline -f flv rtmp://localhost/hls/$name_low; -c:a copy -c:v libx264 -b:v 128K -preset superfast -profile:v baseline -f flv rtmp://127.0.0.1/hls/$name_low;
# 2>/mnt/radio/logs/ffmpeg-$name_low.log; # 2>/mnt/radio/logs/ffmpeg-$name_low.log;
} }
@ -54,11 +68,11 @@ rtmp {
http { http {
include mime.types; include mime.types;
init_by_lua_block { # init_by_lua_block {
require("socket") # require("socket")
require("lpeg") # require("lpeg")
math.randomseed(os.time()+ngx.worker.id()) # math.randomseed(os.time()+ngx.worker.id())
} # }
server { server {
@ -108,9 +122,9 @@ http {
location / { location / {
default_type text/html; default_type text/html;
content_by_lua_block { content_by_lua '
require("lapis").serve("app") require("lapis").serve("app")
} ';
} }
location /favicon.ico { location /favicon.ico {

View File

@ -21,9 +21,19 @@ services:
- traefik.http.routers.puikheid_ssl.rule=Host(`puikheid.nl`) - traefik.http.routers.puikheid_ssl.rule=Host(`puikheid.nl`)
- traefik.http.routers.puikheid_ssl.entrypoints=websecure - traefik.http.routers.puikheid_ssl.entrypoints=websecure
- traefik.http.routers.puikheid_ssl.tls.certresolver=myresolver - traefik.http.routers.puikheid_ssl.tls.certresolver=myresolver
# - traefik.http.routers.puikheid_ssl.tls.middlewares=corsheader
# - "traefik.http.middlewares.corsheader.headers.accesscontrolalloworigin=origin-list-or-null"
- traefik.http.services.puikheid.loadbalancer.server.port=8080 - traefik.http.services.puikheid.loadbalancer.server.port=8080
- traefik.tcp.routers.puikheid.rule=HostSNI(`puikheid.nl`)
- traefik.tcp.routers.puikhuid.entrypoints=rtmp
#- traefik.tcp.routers.puikhuid.entrypoints=rtmps
# - traefik.tcp.routers.puikheid.service=puikheid
- traefik.tcp.routers.puikheid.tls=true
- traefik.tcp.routers.puikheid.tls.certresolver=myresolver
# - traefik.tcp.services.puikheid.loadbalancer.server.port=1935
networks: networks:
web: web: