Yeah, I see that there are no MP4 codecs available for import or export. I'm a bit surprised as this is the studio edition and not the free edition. Is this a known issue?
The best workaround I have come up with seems to be:
- Code: Select all
ffmpeg -i 20201004_160148.mp4 -codec:a pcm_s24le 20201004_160148.wav
Then import the video and audio, delete the original blank audio channels, do edits and whatever else. Then export the video back to H265 (again with no sound), export audio to wav.
- Code: Select all
ffmpeg -i edited.wav edited.aac
ffmpeg -i edited.mp4 -i edited.aac -c copy -map 0:v:0 -map 1:a:0 manualaudio.mp4
This will work, but it means lining up the audio for each extra clip, etc.