From 99ce129d12a476fb6b825a0cade4543d7bc96382 Mon Sep 17 00:00:00 2001 From: Andrew Beveridge Date: Sun, 14 Jul 2024 02:53:55 -0400 Subject: [PATCH] Disabled quicksync as it doesn't work with ASS --- lyrics_transcriber/transcriber.py | 3 --- pyproject.toml | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/lyrics_transcriber/transcriber.py b/lyrics_transcriber/transcriber.py index 008ed2c..c0d8a26 100644 --- a/lyrics_transcriber/transcriber.py +++ b/lyrics_transcriber/transcriber.py @@ -762,9 +762,6 @@ def create_video(self): if "h264_videotoolbox" in ffmpeg_codes: video_codec = "h264_videotoolbox" self.logger.info(f"video codec set to hardware accelerated h264_videotoolbox") - elif "h264_qsv" in ffmpeg_codes: - video_codec = "h264_qsv" - self.logger.info(f"video codec set to hardware accelerated h264_qsv") ffmpeg_cmd += [ # Use accompaniment track as audio diff --git a/pyproject.toml b/pyproject.toml index fddf7f9..443e7cb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "lyrics-transcriber" -version = "0.16.2" +version = "0.16.3" description = "Automatically create synchronised lyrics files in ASS and MidiCo LRC formats with word-level timestamps, using Whisper and lyrics from Genius and Spotify" authors = ["Andrew Beveridge "] license = "MIT"