Преобразование видео в MP3 не удалось, код возврата: 1
Код: Выделить всё
try {
final session = await FFmpegKit.execute('-i $videoFilePath -vn -ar 44100 -ac 2 -b:a 192k -f mp3 $audioFilePath');
final returnCode = await session.getReturnCode();
if (ReturnCode.isSuccess(returnCode)) {
print('Video conversion to MP3 successful!');
} else {
print('Video conversion to MP3 failed with return code: $returnCode');
}
} catch (e) {
print('Error occurred during video conversion: $e');
}
$audioFilePath - /Users/shaktigoyal /Library/Developer/CoreSimulator/Devices/9D514AC1-E245-4360-B876-745B9527B844/data/Containers/Data/Application/091D48E6-3AE4-4867-B3B2-2034854D27CE/Documents/audio-14.mp3
Подробнее здесь: https://stackoverflow.com/questions/784 ... ing-ffmpeg