alecail
alecail

Reputation: 4052

OS X Webview is not displaying Flash video

I have a simple Webview that opens www.youtube.com

The video portion of the site is black, but it can be clicked and it tells me that it's running Flash Player.

Do I need an additional setup for the webview in order to use the Flash plugin ?

The problem exists only on 10.9. Video is OK on 10.8

Upvotes: 2

Views: 489

Answers (1)

vbali
vbali

Reputation: 805

Enabling layerUsesCoreImageFilters on the webView solves the problem on Mavericks:

[self.webView setLayerUsesCoreImageFilters:YES];

Related documentation in AppKit Release Notes for OS X v10.9: Changes to layer rendering

Upvotes: 2

Related Questions