Skip to main content

Possible memory issue with MP4 H264/AAC output at 4K/8K resolution

Products: Video Edit SDK .Net

Sometimes you can see the "0x8007000E" error for a high video resolution, higher than 1920x1080. To resolve this problem you must set the "/largeaddressaware" flag on the output exe file after compilation.

You can do it using the following command call:

call "c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\vcvars32.bat"
call "c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\editbin.exe" /NXCOMPAT:NO /largeaddressaware "program.exe"

Visual Studio 2010 or later required.

To test your app run output exe file outside of debugger.

You have to use x64 build on x64 OS.


Visit our GitHub page to get more code samples.