Skip to content

Instantly share code, notes, and snippets.

@ChuckMac
Last active June 3, 2021 15:12
Show Gist options
  • Save ChuckMac/53c0032b6338aa337a3bddaf634f969c to your computer and use it in GitHub Desktop.
Save ChuckMac/53c0032b6338aa337a3bddaf634f969c to your computer and use it in GitHub Desktop.

Pyle PLRV1725 Overhead Car Media Player Video Conversion Settings

Straight conversion to XVID

`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.

Downscale to 1080 XVID but maintain aspect ratio

`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"

Downscale to 720 XVID but maintain aspect ratio

`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"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment