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

outdated

flutter_realtime_audio_recorder

example/lib/main.dart

import 'dart:async';
import 'dart:io';

import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:realtime_audio_recorder/realtime_audio_recorder.dart';

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

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  RealtimeAudioRecorder recorder = RealtimeAudioRecorder();

  WebSocket webSocket;

  @override
  void initState() {
    super.initState();

    init();
  }

  void init() async {
    bool hasPermission = await recorder.hasPermission();
    print(hasPermission);
    if (!hasPermission) {
      await recorder.requestPermission();
    }

    try {
      webSocket = await WebSocket.connect('ws://192.168.1.1:8840/socket');
    }catch (e) {
      print('Cannot connect to server socket!!! $e');
      return;
    }
    webSocket.listen((data) {
      print('server data: $data');
    }, onDone: () {
      print('server done');
    }, onError: (e) {
      print('server error: $e');
    });
    recorder.dataStream.listen((data) {
      print('data: ${List.from(data).length}');
      webSocket.add(List<int>.from(data));
    });
  }

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
    String platformVersion;
    // Platform messages may fail, so we use a try/catch PlatformException.
    try {
      platformVersion = await recorder.start();
    } on PlatformException {
      platformVersion = 'Failed to get platform version.';
    }

    // If the widget was removed from the tree while the asynchronous platform
    // message was in flight, we want to discard the reply rather than calling
    // setState to update our non-existent appearance.
    if (!mounted) return;
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: FlatButton(
            child: Text(recorder.isRecording ? "停止" : "开始录音"),
            onPressed: () {
              if (recorder.isRecording) {
                recorder.stop();
              } else {
                recorder.start();
              }
            },
          ),
        ),
      ),
    );
  }
}
2
likes
0
pub points
7%
popularity

Publisher

unverified uploader

flutter_realtime_audio_recorder

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, permission_handler

More

Packages that depend on realtime_audio_recorder