TriforceOfKirby
New Member
I have my recording output set to Custom Output (FFmpeg); with container format set to Matroska, video encoder set to libvpx, and audio encoder set to flac. When I click the Start Recording button, it says "An unspecified error occurred while recording."
I would have liked to use libvpx-vp9 (VP9) rather than libvpx (VP8), but I didn't see it in the list of options even though I know ffmpeg supports it (Is it disabled or is OBS using an older version of ffmpeg?). In the mean time I am using ffvhuff instead and using ffmpeg to convert to VP9:
So any way to fix this error when trying to encode with libvpx? Also is there anyway to manually use libvpx-vp9 as the video encoder?
I would have liked to use libvpx-vp9 (VP9) rather than libvpx (VP8), but I didn't see it in the list of options even though I know ffmpeg supports it (Is it disabled or is OBS using an older version of ffmpeg?). In the mean time I am using ffvhuff instead and using ffmpeg to convert to VP9:
Code:
ffmpeg -i "input.mkv" -map_metadata -1 -c:v libvpx-vp9 -lossless 1 -threads 12 -c:a flac -compression_level 12 "output.mkv"
So any way to fix this error when trying to encode with libvpx? Also is there anyway to manually use libvpx-vp9 as the video encoder?