I am trying to follow the quick start guide at https://getstream.io/video/docs/flutter/, on a Linux machine, but I am stumbling on the following error:
2025-07-07 11:59:01.393086 🚨 (E/SV:CallSession-0): [start] failed: MissingPluginException(No implementation found for method trackClone on channel FlutterWebRTC.Method)
2025-07-07 11:59:01.394482 🚨 (E/SV:Call-1): [startSession] failed: Result.Failure{error: VideoErrorWithCause{message: MissingPluginException(No implementation found for method trackClone on channel FlutterWebRTC.Method), exception: MissingPluginException(No implementation found for method trackClone on channel FlutterWebRTC.Method), stackTrace: #0 MethodChannel._invokeMethod (package:flutter/src/services/platform_channel.dart:368:7)
<asynchronous suspension>
#1 MediaStreamTrackNative.clone (package:stream_webrtc_flutter/src/native/media_stream_track_impl.dart:135:22)
<asynchronous suspension>
#2 PublisherRtcManager._addTransceiver (package:stream_video/src/webrtc/rtc_manager.dart:797:29)
<asynchronous suspension>
#3 PublisherRtcManager.publishVideoTrack (package:stream_video/src/webrtc/rtc_manager.dart:702:35)
<asynchronous suspension>
#4 Call.setCameraEnabled (package:stream_video/src/call/call.dart:2426:9)
<asynchronous suspension>
#5 Call._applyConnectOptions (package:stream_video/src/call/call.dart:1613:5)
<asynchronous suspension>
#6 Call._startSession.<anonymous closure> (package:stream_video/src/call/call.dart:1077:9)
<asynchronous suspension>
#7 CallSession.start (package:stream_video/src/call/session/call_session.dart:395:7)
<asynchronous suspension>
#8 Call._startSession (package:stream_video/src/call/call.dart:1073:20)
<asynchronous suspension>
#9 Call._join.<anonymous closure> (package:stream_video/src/call/call.dart:787:31)
<asynchronous suspension>
#10 BasicLock.synchronized (package:synchronized/src/basic_lock.dart:38:16)
<asynchronous suspension>
#11 CancelableCompleter.complete.<anonymous closure> (package:async/src/cancelable_operation.dart:433:16)
<asynchronous suspension>
}}
From the code I can see that trackClone was supposed to be implemented in stream_webrtc_flutter-1.0.9/common/cpp/src/flutter_webrtc.cc, but in fact it is not implemented.
Does stream-video-flutter have support for Linux? flutter-webrtc (which stream_webrtc_flutter appears to be a fork of) does have Linux support. There is also an issue tracking Linux support in this repo, marked "closed as complete", but with no clarification if it actually have Linux support or not.
I am trying to follow the quick start guide at https://getstream.io/video/docs/flutter/, on a Linux machine, but I am stumbling on the following error:
From the code I can see that
trackClonewas supposed to be implemented instream_webrtc_flutter-1.0.9/common/cpp/src/flutter_webrtc.cc, but in fact it is not implemented.Does
stream-video-flutterhave support for Linux?flutter-webrtc(whichstream_webrtc_flutterappears to be a fork of) does have Linux support. There is also an issue tracking Linux support in this repo, marked "closed as complete", but with no clarification if it actually have Linux support or not.