I can't import H.265 file into Final Cut Pro
I have the latest version and the latest os
the video has the following property:
Any idea what is going wrong?
MacBook Pro 13″, macOS 11.5
You can make a difference in the Apple Support Community!
When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.
When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.
I have the latest version and the latest os
the video has the following property:
Any idea what is going wrong?
MacBook Pro 13″, macOS 11.5
I have done some research and some testing, and I think I have the solution for you.
Add this option to your ffmpeg command:
-tag:v hvc1
For example:
ffmpeg -i in.mp4 -c:v libx265 -c:a copy -tag:v hvc1 out.mp4
produces a file that plays in Quicktime and in FCP.
Without the -tag:v hvc1 option, Quicktime says that the file contains some media that isn't compatible. If I still hit Continue, it will open without video, and in the Movie Inspector it says "Video format: HEVC (Parameter Sets in Bitstream)"
(the parameters part is the problem)
I have done some research and some testing, and I think I have the solution for you.
Add this option to your ffmpeg command:
-tag:v hvc1
For example:
ffmpeg -i in.mp4 -c:v libx265 -c:a copy -tag:v hvc1 out.mp4
produces a file that plays in Quicktime and in FCP.
Without the -tag:v hvc1 option, Quicktime says that the file contains some media that isn't compatible. If I still hit Continue, it will open without video, and in the Movie Inspector it says "Video format: HEVC (Parameter Sets in Bitstream)"
(the parameters part is the problem)
You should be able to losslessly change the offending Codec ID hev1 to hvc1 which Big Sur 11.6 QuickTime and FCP 10.5.4 insist using:
ffmpeg -i input.mp4 -vcodec copy -acodec copy -tag:v hvc1 output.mp4
Below the original hev1 and the updated hvc1 HEVC .mp4 in FCP import dialog:
Invisor can nicely highlight differences between movie files when you drop a folder on it:
Big Sur last version. any videos file from any camera downscale to 720p and encoded to h.265 using FFmpeg using lib265 with the preset ultra-fast. there are all mov files that can be played in VLC just fine. is there anything that Final cut doesn't support in the h265 standard?
The files are grey out if I want to select a particular file. If I right-click the preview say "missing plugin" and if I select a folder containing the file it "validates the files" then say there is nothing to import
Quicktime can't play the mov but can read the mp4 version (without reencoding) but start by complaining then read it.
Is what you mean is that Final Cut Pro is reading a small subset of h.265 files? I think FFmpeg is quite a standard tool. What are the concrete constraints for valid files? "industry standard" doesn't mean much especially if any other tool can read the video file.
“but start by complaining then read it”
What does that mean? What happens? Can you give the specs of the MP4? Maybe the problem originates in there.
VLC has great capabilities as a player. It can play many things that professional editing applications don’t support.
What version and OS are you using? Is this a camera file? What are you doing to import and what happens when you do it?
FCP supports industry standard H.265. I don’t think lib265 is. VLC plays anything.
Does your file play in QuickTime?
You could use HandBrake to convert to H265.
Using either the videotoolbox or x265, the resulting video plays fine in Quicktime and in FCP.
Did you add any options to make it compatible with Final Cut? Maybe constant bit rate or anything you can think about?
you are the best -tag:v hvc1 was the solution. you can do the following to not even reencode ffmpeg -i input-hev1.mp4 -c:v copy -tag:v hvc1 -c:a copy output-hvc1.mp4
I can't import H.265 file into Final Cut Pro