From 04dc5689eb639f7b39b744d78977f8a5fd583925 Mon Sep 17 00:00:00 2001 From: Brandon Rozek Date: Tue, 26 May 2020 00:26:15 -0400 Subject: [PATCH] Better formatting --- content/blog/obswebcam.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/content/blog/obswebcam.md b/content/blog/obswebcam.md index 234dd08..c5d698d 100644 --- a/content/blog/obswebcam.md +++ b/content/blog/obswebcam.md @@ -16,7 +16,11 @@ OBS has two different options, streaming and recording. Since I want the ability We will use `ffmpeg` as our RTMP server ```bash -ffmpeg -hwaccel vdpau -fflags nobuffer -listen 1 -i rtmp://localhost:12345/live/app/ -f v4l2 /dev/video20 +ffmpeg -hwaccel vdpau \ + -fflags nobuffer \ + -listen 1 \ + -i rtmp://localhost:12345/live/app/ \ + -f v4l2 /dev/video20 ``` | Flag | Description |