Taner Sener 6658a89e3b update example app version 4 years ago
..
android eb002e7ec5 freeze v0.2.9 4 years ago
assets 21d5bef574 apply plugin template 5 years ago
ios 77b72a5f06 freeze v0.2.10, fixes #94 4 years ago
lib 77b72a5f06 freeze v0.2.10, fixes #94 4 years ago
.gitignore eb002e7ec5 freeze v0.2.9 4 years ago
.metadata 21d5bef574 apply plugin template 5 years ago
README.md eb002e7ec5 freeze v0.2.9 4 years ago
clean.sh 2755083efd update clean script 5 years ago
pubspec.lock 6658a89e3b update example app version 4 years ago
pubspec.yaml 6658a89e3b update example app version 4 years ago

README.md

flutter_ffmpeg_example

Demonstrates how to use the flutter_ffmpeg plugin.

Getting Started

  1. Execute FFmpeg commands.

    • Use execute() method with a single command line

      import 'package:flutter_ffmpeg/flutter_ffmpeg.dart';
      
      final FlutterFFmpeg _flutterFFmpeg = new FlutterFFmpeg();
      
      _flutterFFmpeg.execute("-i file1.mp4 -c:v mpeg4 file2.mp4").then((rc) => print("FFmpeg process exited with rc $rc"));
      
    • Use executeWithArguments() method with an array of arguments

      import 'package:flutter_ffmpeg/flutter_ffmpeg.dart';
      
      final FlutterFFmpeg _flutterFFmpeg = new FlutterFFmpeg();
      
      var arguments = ["-i", "file1.mp4", "-c:v", "mpeg4", "file2.mp4"];
      _flutterFFmpeg.executeWithArguments(arguments).then((rc) => print("FFmpeg process exited with rc $rc"));
      
  2. Execute FFprobe commands.

    • Use execute() method with a single command line

      import 'package:flutter_ffmpeg/flutter_ffmpeg.dart';
      
      final FlutterFFprobe _flutterFFprobe = new FlutterFFprobe();
      
      _flutterFFprobe.execute("-i file1.mp4").then((rc) => print("FFprobe process exited with rc $rc"));
      
    • Use executeWithArguments() method with an array of arguments

      import 'package:flutter_ffmpeg/flutter_ffmpeg.dart';
      
      final FlutterFFprobe _flutterFFprobe = new FlutterFFprobe();
      
      var arguments = ["-i", "file1.mp4"];
      _flutterFFprobe.executeWithArguments(arguments).then((rc) => print("FFprobe process exited with rc $rc"));
      
  3. Check execution output. Zero represents successful execution, non-zero values represent failure.

       
    final FlutterFFmpegConfig _flutterFFmpegConfig = new FlutterFFmpegConfig();
       
    _flutterFFmpegConfig.getLastReturnCode().then((rc) => print("Last rc: $rc"));
    
    _flutterFFmpegConfig.getLastCommandOutput().then((output) => print("Last command output: $output"));
    
  4. Stop an ongoing operation. Note that this function does not wait for termination to complete and returns immediately.

    _flutterFFmpeg.cancel();
    
  5. Get media information for a file.

    • Print all fields

      final FlutterFFprobe _flutterFFprobe = new FlutterFFprobe();
      
      _flutterFFprobe.getMediaInformation("<file path or uri>").then((info) => print(info));
      
    • Print selected fields

      final FlutterFFprobe _flutterFFprobe = new FlutterFFprobe();
      
      _flutterFFprobe.getMediaInformation("<file path or uri>").then((info) {
      print("Media Information");
      
      print("Path: ${info['path']}");
      print("Format: ${info['format']}");
      print("Duration: ${info['duration']}");
      print("Start time: ${info['startTime']}");
      print("Bitrate: ${info['bitrate']}");
      
      if (info['streams'] != null) {
          final streamsInfoArray = info['streams'];
      
          if (streamsInfoArray.length > 0) {
              for (var streamsInfo in streamsInfoArray) {
                  print("Stream id: ${streamsInfo['index']}");
                  print("Stream type: ${streamsInfo['type']}");
                  print("Stream codec: ${streamsInfo['codec']}");
                  print("Stream full codec: ${streamsInfo['fullCodec']}");
                  print("Stream format: ${streamsInfo['format']}");
                  print("Stream full format: ${streamsInfo['fullFormat']}");
                  print("Stream width: ${streamsInfo['width']}");
                  print("Stream height: ${streamsInfo['height']}");
                  print("Stream bitrate: ${streamsInfo['bitrate']}");
                  print("Stream sample rate: ${streamsInfo['sampleRate']}");
                  print("Stream sample format: ${streamsInfo['sampleFormat']}");
                  print("Stream channel layout: ${streamsInfo['channelLayout']}");
                  print("Stream sar: ${streamsInfo['sampleAspectRatio']}");
                  print("Stream dar: ${streamsInfo['displayAspectRatio']}");
                  print("Stream average frame rate: ${streamsInfo['averageFrameRate']}");
                  print("Stream real frame rate: ${streamsInfo['realFrameRate']}");
                  print("Stream time base: ${streamsInfo['timeBase']}");
                  print("Stream codec time base: ${streamsInfo['codecTimeBase']}");
      
                  final metadataMap = streamsInfo['metadata'];
                  if (metadataMap != null) {
                      print('Stream metadata encoder: ${metadataMap['encoder']}');
                      print('Stream metadata rotate: ${metadataMap['rotate']}');
                      print('Stream metadata creation time: ${metadataMap['creation_time']}');
                      print('Stream metadata handler name: ${metadataMap['handler_name']}');
                  }
          
                  final sideDataMap = streamsInfo['sidedata'];
                  if (sideDataMap != null) {
                      print('Stream side data displaymatrix: ${sideDataMap['displaymatrix']}');
                  }
              }
          }
      }
      
      
  6. Enable log callback and redirect all FFmpeg/FFprobe logs to a console/file/widget.

    void logCallback(int level, String message) {
        print(message);
    }
    ...
    _flutterFFmpegConfig.enableLogCallback(this.logCallback);
    
  7. Enable statistics callback and follow the progress of an ongoing FFmpeg operation.

    void statisticsCallback(int time, int size, double bitrate, double speed, int videoFrameNumber, double videoQuality, double videoFps) {
        print("Statistics: time: $time, size: $size, bitrate: $bitrate, speed: $speed, videoFrameNumber: $videoFrameNumber, videoQuality: $videoQuality, videoFps: $videoFps");
    }
    ...
    _flutterFFmpegConfig.enableStatisticsCallback(this.statisticsCallback);
    
  8. Poll statistics without implementing statistics callback.

    _flutterFFmpegConfig.getLastReceivedStatistics().then((stats) => print(stats));
    
  9. Reset statistics before starting a new operation.

    _flutterFFmpegConfig.resetStatistics();
    
  10. Set log level.

    _flutterFFmpegConfig.setLogLevel(LogLevel.AV_LOG_WARNING);
    
  11. Register your own fonts by specifying a custom fonts directory, so they are available to use in FFmpeg filters. Please note that this function can not work on relative paths, you need to provide full file system path.

    _flutterFFmpegConfig.setFontDirectory("<folder with fonts>");
    
  12. Use your own fontconfig configuration.

    _flutterFFmpegConfig.setFontconfigConfigurationPath("<fontconfig configuration directory>");
    
  13. Disable log functionality of the library. Logs will not be printed to console and log callback will be disabled.

    _flutterFFmpegConfig.disableLogs();
    
  14. Disable statistics functionality of the library. Statistics callback will be disabled but the last received statistics data will be still available.

    _flutterFFmpegConfig.disableStatistics();
    
  15. List enabled external libraries.

    _flutterFFmpegConfig.getExternalLibraries().then((packageList) {
         packageList.forEach((value) => print("External library: $value"));
    });
    
  16. Create new FFmpeg pipe.

    _flutterFFmpegConfig.registerNewFFmpegPipe().then((path) {
         then((stats) => print("New ffmpeg pipe at $path"));
    });