-
Notifications
You must be signed in to change notification settings - Fork 0
/
ffe-x264-savepngs.yml
45 lines (43 loc) · 1.66 KB
/
ffe-x264-savepngs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Copyright (C) 2019 Christian Berger
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
version: '2.3'
services:
frame-feed-evaluator:
container_name: ffe
build:
context: https://github.com/chrberger/frame-feed-evaluator.git#v0.0.5
dockerfile: Dockerfile.amd64
network_mode: "host"
ipc: "host"
volumes:
- /tmp:/tmp
- $PWD:/host
- $PWD/example:/pngs
working_dir: /host
environment:
- DISPLAY=$DISPLAY
command: "--folder=/pngs --report=ffe-x264.csv --cid=111 --name=video0 --crop.x=376 --crop.y=32 --crop.width=640 --crop.height=480 --delay=0 --savepngs"
video-x264-encoder-amd64:
container_name: x264
depends_on:
- frame-feed-evaluator
build:
context: https://github.com/chalmers-revere/opendlv-video-x264-encoder.git#v0.0.7
dockerfile: Dockerfile.amd64
network_mode: "host"
ipc: "host"
volumes:
- /tmp:/tmp
command: "--cid=111 --name=video0 --width=640 --height=480 --preset=superfast"