Niek / superview

A small program that takes a 4:3 aspect ratio video file, and transforms it to a 16:9 video using the GoPro SuperView method
GNU General Public License v3.0
213 stars 21 forks source link

Problem with "-x265-params log-level=error" on older ffmpeg versions #1

Closed Hawkers closed 5 years ago

Hawkers commented 5 years ago

I was running ffmpeg version 4.0.2 which I had installed on my MacOS machine, but the -x265-params argument was causing the command not to execute. For backward compatibility maybe this argument isn't really necessary?

I updated to 4.1.3 and it works as expected, but this had me stumped for a little while.

Niek commented 5 years ago

This parameter was added back in 2013 to ffmpeg, I think it's more likely that you had a build without x265 support.

I'll add a check to determine if ffmpeg is installed and if the x264/x265 encoders are available.

Niek commented 5 years ago

Added in d423810

Hawkers commented 5 years ago

Great! Thank you!