2
The problem is that Electron uses webm in Chromium. The python Webkit application uses mp4. Because it is a proprietary format, mp4 is not available on Electron. The solution I found to control this difference in contrast was the use of css filters in the element in question.
-webkit-filter: contrast(120%);
Article addressing css filters