VVCEasy/README.md

65 lines
2.7 KiB
Markdown
Raw Normal View History

2021-10-21 09:15:17 +02:00
# VVCEasy (Windows/Mac/Linux)
2021-10-20 05:44:50 +02:00
VVCEasy is that you don't have to compile or/and coding to encode VVC (known as Versatile Video Codec). Simple. Easy. Encode. Decode
2021-10-20 05:47:19 +02:00
VVCEasy comes to one-easy of ffmpeg, vvenc, vvdec and YUView.
2021-10-20 11:46:13 +02:00
Installation: Go to releases and download latest version.
2021-10-20 12:49:09 +02:00
2021-10-20 13:44:26 +02:00
VVCEasy is not yet finished. I'm trying to work with codes. I'm not good coding programming, just simple coding.
Sorry to say that. I will give update, once I release news.
2021-10-21 08:23:03 +02:00
Source run: RUNVVCEASY.bat
# Encode/Decode (easy)
Before you run of RUNVVCEASY.bat or VVCEASY.exe, you need to change input from file name to input.mp4 (as example)
2021-10-21 09:14:44 +02:00
Follow the instructions, the commands will give your options. Since 21 October 2021, VVCEasy is pre-release, but it's construction mode, but you can have a look with .BAT code.
2021-10-21 08:23:03 +02:00
2021-10-20 13:44:26 +02:00
- Martin Eesmaa
2021-10-21 09:10:06 +02:00
2021-10-21 09:13:00 +02:00
# Without VVCEasy, experimental option for professional coders, other developers and everyone (hard)
2021-10-21 09:10:06 +02:00
You need 7Zip (requires ffmpeg and ffplay), ffmpeg, ffplay, vvenc/vvdec(app) and YUView.
Here are the links:
FFMPEG/FFPLAY: https://www.gyan.dev/ffmpeg/builds/ffmpeg-git-full.7z (go to bin folder and extract two files)
VVENC/VVDEC:
https://github.com/MartinEesmaa/VVCEasy/blob/main/VVC/vvencapp.exe
https://github.com/MartinEesmaa/VVCEasy/blob/main/VVC/vvdecapp.exe
YUView:
https://github.com/IENT/YUView/releases
First of all:
Transcode any video formats to YUV/Y4M
For YUV transcode (replace f for frame rate):
`ffmpeg -i input.mp4 -r f inputtranscode.yuv`
For Y4M transcode (replace f for frame rate):
`ffmpeg -i input.mp4 -r f inputtranscode.y4m`
Verify ffplay before encode with VVENC (replace video size, important otherwise it will not show correctly video, it's like scramble eggs):
`ffplay -f rawvideo -pixel_format yuv420p -video_size 854x480 -i inputtranscode.yuv` or replace -i inputtranscode.yuv with `-i inputtranscode.y4m` for y4m users.
After verifying correctly
Encode with VVENC (Simple settings)
`vvencapp -i out.yuv/y4m -s 854x480 -r 30 -o vvc.266`
-s means video size, -r means frame per second and -o means output
Encode with VVENC (Best settings, replace video size, framerate and maximize threads of your cores)
`vvencapp -i out.yuv/y4m -s 854x480 -r 30 --preset slow --threads 16 --tier high -o EXTREME.266`
NOTE: It is acceptable only for encoding to .h266, .266 and .vvc file container.
After VVEnc, decode back from .266 to .YUV.
2021-10-21 09:15:40 +02:00
`vvdecapp -b vvc.266 -o vvcback.yuv`
2021-10-21 09:10:06 +02:00
NOTE: After decoding back from .266 to .YUV, it is reason that it makes double size.
To view back decoded .YUV (from .266 to .YUV), you can drag .YUV into YUView and insert video size and put YUV 4:2:0 10-bit.
If you have any questions or any issues, please go to Issues tab and create your issue.
- Martin Eesmaa