Blurry quality #604
-
Hello when rendering using the GUI I have very blurry quality on the video that comes out. Is there anyway to render in original quality (lossless) so that the video quality isnt less than what it came in as? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
facing same issue |
Beta Was this translation helpful? Give feedback.
-
Same here. Much lower quality of the output. |
Beta Was this translation helpful? Give feedback.
-
One loseless video format is huffyuv, although it will produce hilariously large files.
A better method is to use a near loseless encoder like
If you have to use a particular video format, you can increase the bitrate, in this case to 2 megabytes
|
Beta Was this translation helpful? Give feedback.
-
Thank you! Will try.
Orlin
…--
Best regards:
Orlin Chotev
tel. 781 346 9844
On Feb 1, 2025 at 9:26 AM, WyattBlue ***@***.***> wrote:
One loseless video format is huffyuv, although it will produce hilariously large files.
auto-editor input.mp4 -c:v huffyuv
A better method is to use a near loseless encoder like vp9 or hevc
auto-editor input.mp4 -c:v vp9
If you have to use a particular video format, you can increase the bitrate, in this case to 2 megabytes
auto-editor input.mp4 -b:v 2M
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
One loseless video format is huffyuv, although it will produce hilariously large files.
A better method is to use a near loseless encoder like
vp9
orhevc
If you have to use a particular video format, you can increase the bitrate, in this case to 2 megabytes