summaryrefslogtreecommitdiffstats
path: root/roles/caption/tasks/main.yml
blob: 7bf45d0f5f6d1a5a06dff563dd5871d23a9a53d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
- name: Install packages
  package:
    name:
      - python3-pip
      - ffmpeg
- name: Install whisper
  ansible.builtin.pip:
    name: git+https://github.com/openai/whisper.git
- name: Copy the shell script
  tags: caption-sh
  template:
    src: caption.sh
    dest: current
    mode: 0755