I tried to encode a video mov
to mp4
width h264
codec but I get this error :
Unknown encoder 'libx264'
But when I check if h264
if supported by my config I saw it does :
DVD h264 H.264 / AVC / MPG-4 AVC/ MPEG-4 part 10
and my code :
FFMPEG -y -i video.mov -vcodec h264 video.mp4 ;
Can someone help me with this ? Thanks.