Hello folks,
Trying to make the casting work using Bitmovin Flutter SDK.
The Android part works, but not the iOS. I tried also the example project from bitmovin-player-flutter-main, same issue (black screen with “CAF Receiver v3 - Stable” showing).
The native iOS casting works (bitmovin-player-ios-samples/BasicCasting). AirPlay also works.
Would appreciate any hints or ideas, thanks!
Cheers,
Łukasz
All right, an interesting one. Apparently the trick proposed in the Bitmovin example works (just tried it on one of our streams), although it doesn’t work for the Bitmovin sample stream from that example… which was a bit misleading.
So FYI this did the job (always DASH while casting):
final source = Source(
sourceConfig: sourceConfig,
remoteControl: const SourceRemoteControlConfig(
castSourceConfig: SourceConfig(
url: dashManifest,
type: SourceType.dash,
),
),
);