Pyle PLRV1725 Overhead Car Media Player Video Conversion Settings
`ffmpeg -i "input.file" -sn -c:a libmp3lame -ar 48000 -ab 128k -ac 2 -c:v mpeg4 -vtag xvid -qscale:v 6 -preset slow "output.file"
Change qscale as desired. It is a number from 1-31, with 1 being highest quality/largest filesize and 31 being the lowest quality/smallest filesize.
The monitor only supports up to 1080p so you might want to downscale higher resolution content.
`ffmpeg -i "input.file" -vf scale=1:1080 -sn -c:a libmp3lame -ar 48000 -ab 128k -ac 2 -c:v mpeg4 -vtag xvid -qscale:v 6 -preset slow "output.file"
`ffmpeg -i "input.file" -vf scale=1:720 -sn -c:a libmp3lame -ar 48000 -ab 128k -ac 2 -c:v mpeg4 -vtag xvid -qscale:v 6 -preset slow "output.file"