From 7fe55d6af5ec749e96fa0d804c1fdb65db725922 Mon Sep 17 00:00:00 2001 From: Martin Eesmaa Date: Thu, 15 Sep 2022 10:10:36 +1000 Subject: [PATCH] Forgot to add input-bitdepth 10 of uvg266 10-bit --- Android/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Android/README.md b/Android/README.md index f1a8c36..9540d1f 100644 --- a/Android/README.md +++ b/Android/README.md @@ -35,13 +35,13 @@ AndroidUVG266-8bit.7z - 8-bit input/encoder only. If you want pipe from FFmpeg to uvg266, you can do command: ``` -ffmpeg -i example.mp4 -f yuv4mpegpipe -pix_fmt yuv420p10 -strict -1 - | uvg266 -i - --input-file-format y4m -o converted.266 +ffmpeg -i example.mp4 -f yuv4mpegpipe -pix_fmt yuv420p10 -strict -1 - | uvg266 -i - --input-file-format y4m --input-bitdepth 10 -o converted.266 ``` -For 8-bit uvg266 application, remove `-strict -1` and change from `yuv420p10` to `yuv420p`. +For 8-bit uvg266 application, remove `-strict -1`, change from `yuv420p10` to `yuv420p` and remove `--input-bitdepth-10`. When you want make device sleep during uvg266 encoding, tap Acquire wakelock on Termux notification. VVDEC might not decode with some uvg266 options (example uvg266 presets unplayable with vvdec: ultrafast, superfast, veryfast, veryslow, placebo). -- Martin Eesmaa \ No newline at end of file +- Martin Eesmaa