shaka-player-embedded icon indicating copy to clipboard operation
shaka-player-embedded copied to clipboard

Shaka Player in a C++ Framework

Results 102 shaka-player-embedded issues
Sort by recently updated
recently updated
newest added

Reacting on #194 I found that problem is in condiiton: ` frame == prev_frame_ ` in `apple_video_renderer.cc`. It returns `nullptr` in this case and `renderLoop` inside `ShakaPlayerView.mm` doesn't pass: `if...

In reaction on my issue #175, I found fix: During debugging reason of app crashing during another load of manifest when audio from previous manifest hasn't start playing, I found...

I'm trying to take a base64 encoded string, convert it to Data and set the serverCertificate: ``` let TEST_SERVER_CERT = [base64EncodedString] let serverCert = Data.init(base64Encoded: TEST_SERVER_CERT) player.configure("drm.advanced.com\\.widevine\\.alpha.serverCertificate", with: serverCert!) ```...

I implemented shaka-player-embedded to my ios project. But the SDK can not play my MPEG-DASH URL which was generated from AWS Kinesis Video Archived. I tested with 3 MPEG-DASH URLs...

Shaka Player now supports low-latency DASH and HLS content. To do this in DASH, it uses [fetch](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) and [ReadableStream](https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream). This is used to stream data for a network request down...

type: enhancement

If you switch away from the app while there's a player and video instance, ffmpeg outputs the message `VideoToolbox decoder needs reconfig, restarting.. `, and then the next time we...

type: bug

When playing the encrypted mpd file, Shaka Player send the license request twice. the mpd that problem occurs is below. The following is an example of playing a video only...

type: bug

# Overview Certain content protected by Widevine does not play correctly on ShakaPlayerEmbedded + Widevine CDM 15.2.4. # Build environment * macOS Catalina (10.15.6) * Xcode 11.7 (11E801a) * shaka-player-embedded/master...

type: bug
component: Widevine

### Issue description I'm listening UIDevice.orientationDidChangeNotification to recalculate player view frame on orientation changed. On each change, I call: ``` self.playerView.frame = self.view.bounds; ``` where `self.playerView` is ShakaPlayerView instance. If...

type: bug