From caaa3482d7998d0541fb1cb7b95d18e04e2dd6b1 Mon Sep 17 00:00:00 2001
From: byte <byteturtle@byteturtle.eu>
Date: Fri, 7 Mar 2025 16:51:00 +0000
Subject: [PATCH] Xed used spaces

---
 stream.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/stream.py b/stream.py
index 37cc7f9..95c41b7 100644
--- a/stream.py
+++ b/stream.py
@@ -81,7 +81,7 @@ def convert(filepath):
             ffmpeg_cmd.extend(["-c:v", "libx264", "-b:v", "1M"])
         
         # Add audio options based on codec and available encoders
-	# We dont need to transcode Audio if its already in opus or vorbis format.
+        # We dont need to transcode Audio if its already in opus or vorbis format.
         if audio_codec_info in ["opus", "vorbis"]:
             ffmpeg_cmd.extend(["-c:a", "copy"])
         elif "libvorbis" in available_encoders: