Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
voc-streaming-sink
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Janne Mareike Koschinski
voc-streaming-sink
Commits
bb31dd0f
Verified
Commit
bb31dd0f
authored
5 months ago
by
Janne Mareike Koschinski
Browse files
Options
Downloads
Patches
Plain Diff
feat: initial commit
parents
Branches
main
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Dockerfile
+5
-0
5 additions, 0 deletions
Dockerfile
streaming-sink.sh
+25
-0
25 additions, 0 deletions
streaming-sink.sh
with
30 additions
and
0 deletions
Dockerfile
0 → 100644
+
5
−
0
View file @
bb31dd0f
FROM
ubuntu
RUN
apt-get update
&&
apt-get
install
-y
ffmpeg
RUN
apt-get
install
-y
i965-va-driver-shaders intel-media-va-driver-non-free
ADD
. /opt/voc/
ENTRYPOINT
[ "/opt/voc/streaming-sink.sh" ]
This diff is collapsed.
Click to expand it.
streaming-sink.sh
0 → 100755
+
25
−
0
View file @
bb31dd0f
#!/bin/bash
if
[[
-z
"
$VOC_STREAMING_AUTH
"
]]
then
echo
"[ERROR] failed to start stream, credentials missing!"
exit
1
fi
if
[[
-z
"
$VOC_ENDPOINT
"
]]
then
echo
"[ERROR] failed to start stream, encoder endpoint missing!"
exit
1
fi
ffmpeg
-y
-nostdin
-hide_banner
-re
\
-i
"tcp://
$VOC_ENDPOINT
:15000?timeout=3000000"
\
-c
:v libx264
\
-r
:v:0 10
-async
1
\
-preset
ultrafast
-tune
zerolatency
\
-c
:a aac
-b
:a 192k
-ar
48000
\
-map
0:v:0
\
-map
0:a:0
\
-threads
0
\
-f
flv
\
"rtmp://a.rtmp.youtube.com/live2/
$VOC_STREAMING_AUTH
"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment