Comparing FFmpeg Encoding on Windows 10 and Windows Subsystem for Linux 2

Encode Video (Windows 10, timed)
Measure-Command {ffmpeg -i .\train_whistle.MP4 -vf scale=1920x1080 -acodec copy -vcodec libx264 -pix_fmt yuv420p -b:v 7000k train_whistle_1080p_win10.mp4}
Encode Video (Windows Subsystem for Linux 2, Ubuntu, timed)
time ffmpeg -i train_whistle.MP4 -vf scale=1920x1080 -acodec copy -vcodec libx264 -pix_fmt yuv420p -b:v 7000k train_whistle_1080p_wsl.mp4
Encode Video (Windows 10, hardware encoding, timed)
Measure-Command {ffmpeg -i .\train_whistle.MP4 -vf scale=1920x1080 -acodec copy -vcodec h264_qsv -pix_fmt yuv420p -b:v 7000k train_whistle_1080p_win10_hw.mp4}

Leave a comment

Your email address will not be published. Required fields are marked *