View Single Post
Old 15th September 2013, 03:37   #15  |  Link
Marchand
Registered User
 
Marchand's Avatar
 
Join Date: Jan 2013
Location: Brazil
Posts: 14
Using DivX HEVC Encoder

The DivX HEVC encoder [BETA] is a command line tool that is now capable of encoding HEVC content.

Download the binaries here. http://labs.divx.com/node/127927

Usage

DivX H.265/HEVC Encoder

Usage: DivX265 -i <infile> -o <outfile> -br <bitrate> -s <w>x<h> (for raw infile)
or: DivX265 -i <infile> -o <outfile> -br <bitrate> (for .avs|.avi infile)
or: DivX265 -h (for help)

Example Usage

from a raw file (yuv/raw, assumes IYUV/I420 colorspace):

C:\DivX265.exe -i content_in.yuv -o content_out.hevc -br 3000 -s 1280x720

Piping from stdin through another command line tool:

C:\ffmpeg.exe -i content_in.avi -s 1280x720 -f rawvideo -pix_fmt yuv420p - | DivX265.exe -s 1280x720 -br 4000 -i - -o content_out_50frames.hevc

from an AVS file (make sure AVISynth is installed):

DivX265.exe -i content_in.avs - o content_out.hevc -br 3000/li>

from an AVI file:

DivX265.exe -i content_in.avi - o content_out.hevc -br 3000/li>

Options



Notes

For more information on bitrate, keyframe intervals, etc., please refer to the DivX HEVC Video Profiles (DRAFT, May 2013).
http://labs.divx.com/node/127903

The default colorspace for encode is assumed to be IYUV or I420

Tested and some did not work? See the image below:



DOWNLOAD VIDEO TEST: https://shared.com/c7ct6nhm2u

Last edited by Marchand; 15th September 2013 at 05:16.
Marchand is offline   Reply With Quote