Any ideas about a good 1080p to 720p converter that is able to convert a video of 90 minutes in less than several hours? (maybe like in 2, 3 or 4 hours ;-)
The compression of a file is H.264/MPEG-4 AVC.
|
|
|||
|
|
closed as off topic by Journeyman Geek, Brad Patton, Simon, Tog, 8088 Apr 24 at 16:04
Questions on Super User are expected to relate to computer software or computer hardware within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
If you want to stay with H.264, you'll probably want to go with x264 as encoder. It's built into many applications, but most prominently FFmpeg with the "libx264" codec, or Handbrake. x264 has a reputation of being fast and efficient. The speed can be tuned by presets that are called, for example, "fast". They range from "ultrafast" to "veryslow". You can check x264's help by calling Here are the flags for "ultrafast". They disable some advanced encoding functions that require processing time. Encoding in "ultrafast" mode will not be as efficient in terms of bits used, and with a fixed bit rate, you'll lose some quality. But generally, it shouldn't matter as much.
HandbrakeYou can for example enter them in Handbrake's option string when looking under "Advanced":
Just copy this string, found here:
Don't forget to rescale by going to the Picture Settings. FFmpegOr, use them in FFmpeg by simply calling the right preset:
|
|||||||||||
|
|
If you are looking for something like real-time speeds or better, you could look into using your GPU for encoding. Here's an article titled "H.264 encoding - CPU vs GPU: Nvidia CUDA, AMD Stream, Intel MediaSDK and x264" that you might be interested in reading. The quality you'll get from a GPU based encoder is nowhere near what x264 can deliver (sometimes destroying frames completely). However, if you're using the fastest settings you can configure for x264, it might be worth comparing those results. |
|||
|
|
|
I use Handbrake for all my conversions. But I can't tell how fast will it be for you. |
|||
|
