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
Question marked as Top-ranking reply

Posted on Aug 1, 2024 10:47 AM

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
7 replies
Question marked as Top-ranking reply

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

This thread has been closed by the system or the community team. You may vote for any posts you find helpful, or search the Community for additional answers.

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.