Created
December 16, 2020 08:56
-
-
Save Taehun/3111ee9335f832530288164116c602e0 to your computer and use it in GitHub Desktop.
Argo Workflow 프레임 추출
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: argoproj.io/v1alpha1 | |
kind: Workflow | |
metadata: | |
generateName: media-works- | |
spec: | |
entrypoint: media-works-ffmpeg | |
volumes: | |
- name: workdir | |
persistentVolumeClaim: | |
claimName: azure-managed-disk | |
templates: | |
- name: media-works-ffmpeg | |
container: | |
image: briankim/ffmpeg:v1 | |
command: [ffmpeg] | |
args: ["-i", "/mnt/vol/big_file.mp4","-r", "1/1", "/mnt/vol/$frame%03d.jpg"] | |
volumeMounts: | |
- name: workdir | |
mountPath: /mnt/vol |
Author
Taehun
commented
Dec 16, 2020
- 병렬 처리를 위한 Dag 설정
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment