Kevin Feinberg

Results 47 comments of Kevin Feinberg

I'll have to experiment. Actually got some mobile work on deck. I ask because the browser vendors are introducing increasingly restrictive policies around auto play and sound. Initial play must...

Not entirely clear what you're doing without a sample. My guess is that you're talking about the video element's output, which by default maintains its natural aspect ratio. If you...

Agreed that this is a glaring omission from the docs. Directive will be very similar to component. Most often you'll probably only need to supply a selector and maybe a...

Vote up. Would be a great help. Sounds like @jlacivita is close. Just needs a little support to get it performing smoothly.

@ gyachuk It's a matter of integrating the captioning library from Adobe into your player. Quite easy as it's just a wiring job. It comes packaged with the Adobe Media...

unminified-webpack-plugin checks for the presence of the UglifyJsPlugin in the configuration with an instanceof test. I worked around this by doing the following: ``` const UglifyJsParallelPlugin = require('webpack-uglify-parallel'); UglifyJsParallelPlugin.prototype =...

Conceptually, extending UglifyJsPlugin makes sense. The difficulty is that its not designed/executed in a friendly way to support this. If they broke up the monolithic apply() into smaller pieces, you...