I'm trying to record gameplay footage using AMD's Radeon ReLive software and I want to edit it in SVP 14. I've found that using the HEVC codec leads to significantly improved quality compared to AVC, but there's a problem. When I try to import said HEVC files (with the container being .mp4) into the editing software, it just doesn't work. I've been searching all over the place for answers on how to solve this issue, and I think the solution I've found is a good way of doing it? I'm basically asking for confirmation with this post. So what I'm doing is transcoding the original footage to the H264 codec using FFmpeg. The command line code I'm using is as follows:
ffmpeg -i input.mp4 -c:v libx264 -preset veryslow -crf 10 output.mp4
- With the 'veryslow' preset being used for the best possible compression;
- And my bitrate set at 10, which is I guess overkill but I just want to make sure it's as close to perfect as possible, without going all the way down to -crf 0.
And after doing this, the footage loads into Vegas perfectly fine. Now, I have no idea if this is a good way of doing it, and I'm not sure if it looks better than recording directly to H264. To me it makes sense, and definitely seems like it, but it could very well be a placebo effect. I've also seen posts where people advised 'remuxing' the files so that Vegas can accept them, but I don't really understand what needs to be done there.
Thanks in advance.