diff options
author | MaZderMind <git@mazdermind.de> | 2015-12-06 18:52:48 +0100 |
---|---|---|
committer | MaZderMind <git@mazdermind.de> | 2015-12-06 18:52:48 +0100 |
commit | ea071cf057a00ebe0e20d0787dab59c863fbba6c (patch) | |
tree | e58cd4f69e6c9aa390247766194e60c0777b4439 /example-scripts/av-source-background-loop.sh | |
parent | 8396196a69a4c43a65081d8139f8c057d7f12818 (diff) |
[voctocore][example-scripts] change default colorspace vom I420 (4:2:0 subsampling) to UYVY (4:2:2), fixes #33
Diffstat (limited to 'example-scripts/av-source-background-loop.sh')
-rwxr-xr-x | example-scripts/av-source-background-loop.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/example-scripts/av-source-background-loop.sh b/example-scripts/av-source-background-loop.sh index 8b16487..6a269f4 100755 --- a/example-scripts/av-source-background-loop.sh +++ b/example-scripts/av-source-background-loop.sh @@ -2,5 +2,6 @@ while true; do cat ~/bg.ts || exit 1; done |\ ffmpeg -re -i - \ -map 0:v \ -c:v rawvideo \ + -pix_fmt uyvy422 \ -f matroska \ tcp://localhost:16000 |