<div dir="auto"><div dir="auto">This is the command I use to convert to x265 video</div><div dir="auto">Recently  it converted a 964mb video to 17.2mb, x265 looks the best in my opinion.</div><div dir="auto"><br></div><div dir="auto">To convert to x264 the command is different and the same file shrunk to 23.9mb</div><div dir="auto"><br></div><div dir="auto">It really depends on the type of video you're converting on how it looks after.</div><div dir="auto"><br></div><div dir="auto">The video was 8 minutes and on my AMD 8 core, it took 7 minutes to convert to x265 and</div><div dir="auto">5 minutes to convert to x264</div><div dir="auto"><br></div>ffmpeg -i fireworks.mp4 -c:v libx265  -force_key_frames "expr:gte(t,n_forced*5)" -x265-params crf=28 -x265-params log-level=none  -c:a ac3 -b:a 192k  -preset ultrafast -strict experimental -loglevel fatal -stats  fireworks-x265-ultrafast-ac3.mp4<div dir="auto"><br></div><div dir="auto">Hope this helps</div><div dir="auto"><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Jul 10, 2017 10:52 AM,  <<a href="mailto:joe@actionline.com">joe@actionline.com</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Thanks Rusty!<br>
<br>
Rusty Ramser wrote: Examples...<br>
> Simply convert the existing video from MOV to MP4.<br>
> ffmpeg.exe -i IMG_0551.MOV -c:a copy copy.mp4<br>
><br>
> Convert from MOV to MP4 and also scale it to 1280x720<br>
> (don't know what the original resolution was, but you<br>
> get the idea; replace with 480 if you want even smaller).<br>
> ffmpeg.exe -i IMG_0551.MOV -c:a copy -vf scale=-1:720 copy.mp4<br>
><br>
> If original resolution is slightly non-standard and not<br>
> evenly divisible by 2 and you're getting errors with the<br>
> above command, this one gets around odd resolutions.<br>
> ffmpeg.exe -i IMG_0551.MOV -c:a copy -vf "scale=1280:trunc(ow/a/2)*2"<br>
> copy.mp4<br>
<br>
<br>
<br>
------------------------------<wbr>---------------------<br>
PLUG-discuss mailing list - <a href="mailto:PLUG-discuss@lists.phxlinux.org">PLUG-discuss@lists.phxlinux.<wbr>org</a><br>
To subscribe, unsubscribe, or to change your mail settings:<br>
<a href="http://lists.phxlinux.org/mailman/listinfo/plug-discuss" rel="noreferrer" target="_blank">http://lists.phxlinux.org/<wbr>mailman/listinfo/plug-discuss</a></blockquote></div></div>