flutter_rtmp_publisher 0.0.1 copy "flutter_rtmp_publisher: ^0.0.1" to clipboard
flutter_rtmp_publisher: ^0.0.1 copied to clipboard

This Plugins helps to brodcast Live via RTMP right from your flutter application

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_rtmp_publisher/flutter_rtmp_publisher.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter RTMP Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({Key key, this.title}) : super(key: key);

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {


  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Flutter RTMP Demo'),
      ),
      body: Container(
        child: RaisedButton(
          child: Text("Start Stream"),
          onPressed: () {
            RTMPPublisher.streamVideo("<PLACE_YOUR_RTMP_STREAM_URL>");
          },
        ),
      ),
    );
  }
}
28
likes
30
points
26
downloads

Publisher

verified publisherkarthikponnam.dev

Weekly Downloads

This Plugins helps to brodcast Live via RTMP right from your flutter application

Repository (GitHub)

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_rtmp_publisher