VVCEasy/README.md

67 lines
3.1 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:
2021-10-28 12:04:53 +02:00
https://github.com/IENT/YUView/actions/runs/1365560321
2021-10-21 09:10:06 +02:00
2021-10-21 09:19:24 +02:00
Before we start, you need to make path environments for ffmpeg, ffplay and vvenc/vvdec to make easily.
In Command Prompt:
`set PATH=%PATH%;C:\Users\blah\Downloads\VVCEasy\Executables` (example)
verify `echo %PATH%` in Command Prompt
2021-10-21 09:10:06 +02:00
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.
2021-10-28 12:04:53 +02:00
After VVEnc, you can play in YUView develop version, unfortunately this should not work on release version of June.
Drag any your video file of .h266, .266 or .vvc to play. YUView will play your video about only 10 seconds.
2021-10-21 09:10:06 +02:00
2021-10-28 12:04:53 +02:00
If you are still not happy VVC, that you think this is too hard to encode and decode, or this cannot be played on VLC Media Player of VVC Video Codec, use AOMEDIA ONE that is recommended for most users for easily play VLC Media Player and others.
2021-10-21 09:10:06 +02:00
If you have any questions or any issues, please go to Issues tab and create your issue.
- Martin Eesmaa