flutter_fc_media 0.0.5 copy "flutter_fc_media: ^0.0.5" to clipboard
flutter_fc_media: ^0.0.5 copied to clipboard

FC 视频解析插件 RTP --> RTSP.

flutter_fc_media #

A new Flutter project.

Getting Started #

This project is a starting point for a Flutter plug-in package, a specialized package that includes platform-specific implementation code for Android and/or iOS.

For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

  • iOS & Android
  FlutterFcMedia.onEventListener((value){
      _nativeMsg = value as String;
      print("监听到的数据是: $_nativeMsg");
      setState(() {});
    });

  ElevatedButton(onPressed: (){
    FlutterFcMedia.actionForEventStart(rtpPort: 12345, rtspPort: 8554);
  }, child: Text("开始监听"))