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.

Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

FCP fails to properly import sound of mts video-files

FCP fails to properly import sound of mts video-files following updating into FCP 10.8. Prior to this updating everything worked well. The mts files are stored on my Mac. What can I do?

iMac 27″, macOS 14.5

Posted on Aug 1, 2024 8:05 AM

Reply
7 replies

Aug 1, 2024 10:47 AM in response to knut194

We use EditReady to rewrap older camera media. A benefit of the rewrap, besides being able to leave files in place when importing, is you can have EditReady create unique filenames for the clips so there's never any chance of naming collisions or confusion (like 50 files all named 0001). I usually prepend the shoot date so if they were shot today, something like 20240801-0001.mov, 20240801-0002.mov, etc.


If FCP doesn't date sort the rewrapped files the way you'd like, I wrote a simple bash script that changes their modification dates to their creation dates.


#!/bin/bash
for i in *.mov
        do
                created=`/usr/bin/GetFileInfo -d "$i"`;
                /usr/bin/SetFile -m "$created" "$i";
        done

FCP fails to properly import sound of mts video-files

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.