From c28e5e6a6724417a82f032d9d48f8cb690c253ff Mon Sep 17 00:00:00 2001 From: A Holt Date: Sat, 15 Jul 2023 11:16:30 -0400 Subject: [PATCH 1/2] calibre-web/tasks/install.yml: Install ffmpeg not just imagemagick --- roles/calibre-web/tasks/install.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/calibre-web/tasks/install.yml b/roles/calibre-web/tasks/install.yml index b8a735587..62d55f32f 100644 --- a/roles/calibre-web/tasks/install.yml +++ b/roles/calibre-web/tasks/install.yml @@ -6,6 +6,7 @@ - name: "Install packages: imagemagick, python3-netifaces" package: name: + - ffmpeg # 2023-07-15: @deldesir requests this, so usability can be improved! - imagemagick - python3-netifaces state: present From e7b314334a283a4ae1cb23b4a8017d4c4f3cec59 Mon Sep 17 00:00:00 2001 From: A Holt Date: Sat, 15 Jul 2023 11:20:17 -0400 Subject: [PATCH 2/2] Clarify install of ffmpeg during Calibre-Web install --- roles/calibre-web/tasks/install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/calibre-web/tasks/install.yml b/roles/calibre-web/tasks/install.yml index 62d55f32f..36f1ae5e6 100644 --- a/roles/calibre-web/tasks/install.yml +++ b/roles/calibre-web/tasks/install.yml @@ -3,7 +3,7 @@ register: df1 -- name: "Install packages: imagemagick, python3-netifaces" +- name: "Install packages: ffmpeg, imagemagick, python3-netifaces" package: name: - ffmpeg # 2023-07-15: @deldesir requests this, so usability can be improved!