opus_to_pcm 0.0.9 copy "opus_to_pcm: ^0.0.9" to clipboard
opus_to_pcm: ^0.0.9 copied to clipboard

Plugin for common pcm for audio conversion in a specific opus format

opus_to_pcm #

Plugin for common pcm for audio conversion in a specific opus format

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.

Usage #

Add the opus_to_pcm to dependencies in pubspec.yaml.

dependencies:
    opus_to_pcm: ^0.0.9

Next, import the library into your app.

import 'package:opus_to_pcm/opus_to_pcm.dart';

Next, Declaration object

final _opusToPcmPlugin = OpusToPcm();

Next, call the transcoding method and pass List< int> Byte array parameter

final List<int> _testData = [];
List<int> _result = await _opusToPcmPlugin.opusBytesToPcmBytes(_testData);

Finally, the converted generic pcm audio data stream is obtained

1
likes
0
points
10
downloads

Publisher

unverified uploader

Weekly Downloads

Plugin for common pcm for audio conversion in a specific opus format

License

unknown (license)

Dependencies

flutter, path_provider, plugin_platform_interface

More

Packages that depend on opus_to_pcm

Packages that implement opus_to_pcm