View previous topic :: View next topic |
Author |
Message |
Marcofras n00b
Joined: 29 May 2023 Posts: 42
|
Posted: Fri Jan 03, 2025 2:56 pm Post subject: huffyhuv compression |
|
|
i have a video coded huffyhuv and its 14GB for 8 minutes its too much.
Code: |
m@localhost ~/Videos $ file tg.mkv
tg.mkv: Matroska data
|
i try to compress with devedeng with reduce bitrate but loose quality.
Is there a way to reduce the dimension with no loose quality? |
|
Back to top |
|
|
user Apprentice
Joined: 08 Feb 2004 Posts: 213
|
Posted: Fri Jan 03, 2025 9:57 pm Post subject: |
|
|
Hi Marcofras,
Code: | m@localhost ~/Videos $ file tg.mkv
tg.mkv: Matroska data | reports media container format only.
Try ffprobe (from ffmpeg) for full media codec(s) printout.
>Is there a way to reduce the dimension with no loose quality?
You can use ffmpeg 'crop' filter to change dimension of a video.
Cropping will result in re-encoding but input codec is lossless (huffyhuv), so re-encoding to lossless output codec (huffyhuv) should be obviously lossless. |
|
Back to top |
|
|
|