From fbfcd7cadb2eb9df788dc74f37bc4c67454cabe7 Mon Sep 17 00:00:00 2001 From: Mr Chen Date: Sat, 9 Feb 2019 19:39:23 +0800 Subject: [PATCH] Update qbittorrent_worker.py --- plugins/qbittorrent/workers/qbittorrent_worker.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/qbittorrent/workers/qbittorrent_worker.py b/plugins/qbittorrent/workers/qbittorrent_worker.py index b19e540a7..4ec9b89d2 100755 --- a/plugins/qbittorrent/workers/qbittorrent_worker.py +++ b/plugins/qbittorrent/workers/qbittorrent_worker.py @@ -129,7 +129,8 @@ class downloadBT(Thread): return FILE_TO + '/m3u8/' + dirname def fg_transfer_mp4_cmd(self, sfile, dfile): - cmd = 'ffmpeg -y -i "' + sfile + '" -threads 1 -c:v libx264 -strict -2 ' + dfile + cmd = 'ffmpeg -y -i "' + sfile + \ + '" -threads 1 -crf 32 -c:v libx264 -strict -2 ' + dfile return cmd def fg_transfer_ts_cmd(self, file, to_file):