flutter_ffmpeg - 如何访问输出路径?

flutter_ffmpeg - how to access the path of the output?

我需要在 Flutter 应用中合并(连接)两个音频文件。

我正在尝试使用 Flutter_ffmpeg 包。

https://pub.dev/packages/flutter_ffmpeg

ffmpeg 是音频和视频的强大工具。

flutter_cache_manager 用于存储来自 https

的文件的包
https://pub.dev/packages/flutter_cache_manager

并提供路径来处理路径

https://pub.dev/packages/path_provider

缓存部分我已经做了一些成功的测试,

但是,我需要你的帮助来了解如何使用 ffmpeg 包。
根据自述文件,我需要做类似

的事情
import 'package:flutter_ffmpeg/flutter_ffmpeg.dart';

final FlutterFFmpeg _flutterFFmpeg = new FlutterFFmpeg(); 
var fileCached1 = await DefaultCacheManager().getSingleFile(url1);
var fileCached2 = await DefaultCacheManager().getSingleFile(url2);
var arguments = ["-i", "concat:fileCached1.wav|fileCached2.wav", "-c copy", "output.way"];
_flutterFFmpeg.executeWithArguments(arguments ).then((rc) => print("FFmpeg process exited with rc $rc"));

我怎样才能进入 output.wav 玩?如何使用 path_provider?

我真的需要你的帮助。 :) 关于flutter_ffmpeg的信息很少。这个问题可能对其他人有用。

提前致谢, 里卡多

path_provider 包让您可以访问应用程序的 appDir 和临时目录,假设您要访问应用程序文档目录:

Directory appDocumentDir = await getApplicationDocumentsDirectory();
String rawDocumentPath = appDocumentDir.path;

并且如果您的输出文件名为 "output.wav"

String outputPath = Strings.concatAll([rawDocumentPath, "/output.wav"]);

现在 outputPath 包含将由 FFMPEG 生成的输出文件的路径,您可以稍后在需要时使用它 play/copy/upload 或任何你想要的。

但在 FFMPEG 部分,连接两个输入文件的命令行是:

ffmpeg -i input1.wav -i input2.wav -filter_complex '[0:0][1:0]concat=n=2:v=0:a=1[out]' -map '[out]' output.wav

如果你想有 3 个输入文件,使用 n=3 并更改命令中的其他部分。

Flutter_ffmpeg 的用法是这样的:

import 'package:flutter_ffmpeg/flutter_ffmpeg.dart';

final FlutterFFmpeg _flutterFFmpeg = new FlutterFFmpeg();

_flutterFFmpeg.execute("-i input1.wav -i input2.wav -filter_complex '[0:0][1:0]concat=n=2:v=0:a=1[out]' -map '[out]' output.wav").then((rc) => print("FFmpeg process exited with rc $rc"));

理想情况下,我们想在这里使用 outputPath,所以做这样的事情:

String commandToExecute = Strings.concatAll(["-i input1.wav -i input2.wav -filter_complex '[0:0][1:0]concat=n=2:v=0:a=1[out]' -map '[out]' ", outputPath]);

执行该过程的最终语句将是:

_flutterFFmpeg.execute(commandToExecute).then((rc) => print("FFmpeg process exited with rc $rc"));

执行后可以查看执行输出。零代表执行成功,非零值代表失败:

final FlutterFFmpegConfig _flutterFFmpegConfig = new FlutterFFmpegConfig();

_flutterFFmpegConfig.getLastReturnCode().then((rc) => print("Last rc: $rc"));

_flutterFFmpegConfig.getLastCommandOutput().then((output) => print("Last command output: $output"));

所以如果失败或出现错误,您可以检查命令输出以修复错误

您可以在此处找到有关 flutter_ffmpeg 的更多信息:

https://pub.dev/packages/flutter_ffmpeg

也可以使用 ffmpeg 并找到有关过滤器的更多信息,您可以检查一下:

https://ffmpeg.org/ffmpeg-filters.html

先获取目录

final appDirectory = await getExternalStorageDirectory();

然后在执行命令中将输出文件附加到目录。

_flutterFFmpeg.execute("-i $videoURL -i $audioURL -c copy ${appDirectory?.path}/output.mp4");