Что мне нужно ввести в терминал для Mac, чтобы иметь возможность конвертировать мои файлы .mov
в .m4a
?
Конвертировать .mov в .m4v с помощью mac terminal
Ответ 1
С установленным ffmpeg:
ffmpeg -i input.mov -acodec copy -vcodec copy output.m4v
Это приведет к точной копии как аудио-, так и видеопотоков в новый файл.
Ответ 2
Посмотрите на ffmpeg:
Ответ 3
Думаю, я немного опоздал в игре, но, исследуя ту же тему сегодня, я обнаружил, что в настоящее время MacOS поставляется с avconvert
:
AVCONVERT(1) BSD General Commands Manual AVCONVERT(1)
NAME
avconvert -- movie conversion tool
SYNOPSIS
avconvert [-hvq] --p <preset_name> --s <source_media> --o <output_movie>
DESCRIPTION
avconvert can be used to compress video media to different types for sharing on the
web or loading onto devices.
-h prints usage information and available presets
-v sets the console output to verbose
-q sets the console output to quiet
-prog shows progress during the export (default with -v)
-p | --preset name
converts the source media to an output file using the specified preset. Use
--listPresets to get the full list. Common presets are:
PresetAppleM4VCellular
PresetAppleM4ViPod
PresetAppleM4VWiFi
PresetAppleM4VAppleTV
PresetAppleM4V480pSD
PresetAppleM4V720pHD
PresetAppleM4V1080pHD
PresetAppleM4A